NOTE: The PROCEDURE PRINTTO used 0.01 seconds. NOTE: Deleting WORK.BFLYS (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. NOTE: Deleting WORK.TOCFILE (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. 772 + 773 +%macro Stater(State=); 774 + 775 +Data Tempmap; 776 + set statemap; 777 + where state=&state; 778 + 779 + Proc Gproject Data=Tempmap Out=Tempmap2; 780 + Id State County; 781 + 782 + proc delete Data=tempmap; 783 + 784 + Proc Gremove Data=Tempmap2 Out=Tempmapa; *Remove county boundaries*; 785 + by state; 786 + id state county; 787 + Run; 788 + 789 + Data BflyTemp; 790 + set bflys2; 791 + where state=&state; 792 + 793 + Run; 794 + 795 + Goptions 796 + Reset=Global 797 + Device=Mgif&State 798 + CBack=White 799 + Border; 800 + 801 + 802 + Run; 803 + 804 +%Mend Stater; 805 + 806 +%Macro Giffer(Label=,State1=,File_Id=,State=,Mapds=,Idvars=); 807 + 808 + %Let Fn=&outdir&State1.\maps\&File_id..gif; 809 + 810 + Filename Gsasfile "&Fn"; 811 + 812 + run; 813 + 814 + 815 + Pattern1 V=Solid C=Blue; 816 + Pattern2 V=Solid C=Cyan; 817 + 818 + Legend Across=2 Shape=Bar(5,2) Label=None 819 + Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 820 + 'Reliable Records' 'Unconfirmed Records'); 821 + 822 + Proc Gmap Map=&mapds Data=Bflytemp All; 823 + Where Label="&Label"; 824 + *** Where Label="&Label" and State=&State; 825 + Choro Response / Discrete &legtxt Coutline=Gray Cempty=Gray 826 + Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; 827 + Id &idvars; 828 + 829 + run; 830 + quit; 831 + 832 + Proc Catalog Cat=Work.GSeg Kill; 833 + run; 834 + quit; 835 + 836 + %Mend Giffer; 837 + 838 +%Macro Mapper; 839 + 840 +Data maps; 841 + Length Statecd $ 2; 842 + set mapdata.mex_usa &chan; 843 + if state < 100 then StateCd=FipState(State); 844 + if state=101 then StateCd='MX'; /* Mexico */ 845 + If StateCd In &InList; 846 + Drop StateCd; 847 + 848 +Data mex_cal; 849 + set maps; 850 + where state in (101 6); 851 + 852 +Data tmpcount; 853 + set maps.counties; 854 + order=_n_; 855 + if state=6 then delete; 856 + if state=26 then do; **Michigan islands**; 857 + if county=89 and segment > 1 then county=203; ** Fox Islands **; 858 + if county=29 and segment > 1 then county=200; ** Beaver Islands **; 859 + if county=83 and segment = 1 then county=202; ** Isle Royale **; 860 + if county=11 and segment > 1 then county=201; ** Charity Islands **; 861 + end; 862 + 863 +proc sort data=tmpcount out=tmpcount(drop=order); 864 + by state county order; 865 + 866 +%if %upcase(&Yellowst)=YES %Then %do; 867 + 868 +Libname ynpmap "&ynpmap"; 869 + 870 +** Following code replaces map coordinates for Park (29) and Teton (39) counties in WY and adds 871 +** coordinates for Yellowstone NP (county=88); 872 + 873 + Data tmpcount; 874 + set tmpcount; 875 + if state=56 and county in (29,39) Then delete; 876 + run; 877 + 878 + Data tmpcount; 879 + set tmpcount ynpmap.ynpmap; 880 + by state county; 881 + 882 + 883 +%end; 884 + 885 +Data statemap; 886 + set mex_cal tmpcount &chan; 887 + 888 +proc delete Data=tmpcount; 889 +proc delete Data=mex_cal; 890 + 891 +Libname Gdevice0 "&Imggif"; 892 + 893 +Title; 894 + 895 +Proc Sort Data=Bflys2 896 + out=bflys2 /*** (keep=state label state1 file_id county response)***/; 897 + By State Label County; 898 + 899 +Run; 900 + 901 +Data _Null_; 902 + Set Bflys2; 903 + By State Label; 904 + If first.state then do; 905 + Call Symput('Temp2',State1); 906 + Call Symput('Temp4',State); 907 + %Let ExState='%Stater(State=&Temp4)'; 908 + If Upcase(left(state1)) NE 'AK' Then Call Execute(&ExState); 909 + end; 910 + if first.label then do; 911 + Call Symput('Temp',Label); 912 + Call Symput('Temp3',File_id); 913 + if county=-999 then do; * make maps w/o county boundaries *; 914 + Call Symput('Temp5','TempmapA'); 915 + Call Symput('Temp6','State'); 916 + end; 917 + else do; * make maps with county boundaries *; 918 + Call Symput('Temp5','Tempmap2'); 919 + Call Symput('Temp6','State County'); 920 + end; 921 + %Let ExLine='%Giffer(Label=&Temp,State1=&Temp2,File_id=&Temp3,State=&Temp4,mapds=&temp5,idvars=&temp6)'; 922 + If Upcase(left(state1)) NE 'AK' Then Call Execute(&ExLine); 923 + end; 924 + run; 925 + 926 +Goptions 927 + Reset=All 928 + Device=Mapgif; 929 + run; 930 + 931 +Libname Gdevice0 Clear; 932 + 933 +proc delete Data=Maps; 934 +proc delete Data=Tempmap2; 935 +proc delete Data=BflyTemp; 936 + 937 +Run; 938 +Quit; 939 + 940 +%Mend Mapper; 941 + 942 +%Macro SpecAcct(Fname=,ActFile=); 943 + 944 +FileName Indata "&ActDir.&ActFile" lrecl=2048; 945 +FileName Outdata "&Fname" lrecl=2048; 946 + 947 +Data _Null_; 948 + File Outdata Notitles Noprint Mod; 949 + Infile Indata FirstObs=2; 950 + Input; 951 + Put _Infile_; 952 +Run; 953 + 954 +%Mend SpecAcct; 955 + 956 +%Macro Header1(Fname=,Hd1File=); 957 + 958 +FileName Indata "&Head1dir.&Hd1File" lrecl=2048; 959 +FileName Outdata "&Fname" lrecl=2048; 960 + 961 +Data _Null_; 962 + File Outdata Notitles Noprint Mod; 963 + Infile Indata FirstObs=2; 964 + Input; 965 + Put _Infile_; 966 +Run; 967 + 968 +%Mend Header1; 969 + 970 +%Macro StateRef(Fname=,SRFile=); 971 + 972 +FileName Indata "&StateRef.&SRFile" lrecl=2048; 973 +FileName Outdata "&Fname" lrecl=2048; 974 + 975 +Data _Null_; 976 + File Outdata Notitles Noprint Mod; 977 + Put / ''/ 978 + '

'/ 979 + 'State and Regional References:'/ 980 + '

';
981 +  Run;
982 +
983 +Data _Null_;
984 +  File Outdata Notitles Noprint Mod;
985 +  Infile Indata FirstObs=1;
986 +  Input;
987 +  Put _Infile_;
988 +Run;
989 +
990 +Data _Null_;
991 +  File Outdata Notitles Noprint Mod;
992 +  Put '
'; 993 + Run; 994 + 995 +%Mend StateRef; 996 + 997 + 998 +%Macro Htmgifs; 999 + 1000 +Proc Sort Data=Bflys2 NoDupKey Out=HtmGifs; 1001 + By State sci_name Label; 1002 + 1003 +Data _Null_; 1004 + Set HtmGifs; 1005 + length morename $ 120 1006 + %metavars; 1007 + by state sci_name; 1008 + if state ne 101 then StateNam=FipNameL(State); 1009 + if state=101 then StateNam='Northern Mexico'; 1010 + If Common='' Then Common='No Common Name'; 1011 + Fluff=Byte(177); 1012 + Label=Translate(Label,'"',Fluff); ** translate ascii 177s back to dquotes **; 1013 + Fname="&outdir"||Trim(Left(State1))||"\"||Trim(Left(seq))||".htm"; 1014 + Morename="mor"||Trim(Left(seq))||".htm"; 1015 + metades=trim(left(meta1))||' '||trim(left(meta2)) ||' in '||trim(left(statenam)); 1016 + metakey=trim(left(statenam))||', '||trim(left(meta3))||', '||trim(left(meta4)); 1017 + if morpic1 ne '' then moreflag=1; 1018 + else moreflag=0; 1019 + file out filevar=fname notitles noprint; 1020 + if not first.sci_name then return; 1021 + put 1022 + ""/ 1023 + ''/ 1024 + "&Critter2 of " statenam '-- ' Label ''/ 1025 + ''/ 1026 + ''/ 1027 + ''/ 1028 + ''; 1029 + if common='No Common Name' Then Put 1030 + ''; 1031 + else put 1032 + ''; 1033 + Put 1034 + ''/ 1035 +''/ 1036 +''/ 1037 +'
'/ 1038 +'
'/ 1039 +"

&titl

"/ 1040 +"

&Critter2 of " statenam '

'; 1041 +if first.sci_name and last.sci_name then put 1042 + &htmlab; 1043 +Else put 1044 + &htmlab2; 1045 +Put 1046 +'
'; 1047 +if picfile ne '' then put 1048 + 'JPG -- species photo' /; 1049 +if moreflag=1 then put 1050 + '
'/ 1051 + 'More Images'; 1052 +Put '

'; 1053 +Put '

'; 1054 +If ActFile NE '' Then Do; 1055 + ** read and write species account information **; 1056 + Call Symput ('temp1',fname); 1057 + Call Symput ('temp2',ActFile); 1058 + %Let Exline='%SpecAcct(Fname=&temp1,ActFile=&temp2)'; 1059 + Call Execute(&Exline); 1060 +End; 1061 +If "&StateRef" NE "" Then Do; 1062 + ** read and write state and regional references **; 1063 + Call Symput ('temp5',fname); 1064 + SRFile=Trim(Left(State1))||'.txt'; ** filename containing references **; 1065 + Call Symput ('temp6',SRFile); 1066 + %Let Exline3='%StateRef(Fname=&temp5,SRFile=&temp6)'; 1067 + Call Execute(&Exline3); 1068 +End; 1069 +If Hd1File NE '' Then Do; 1070 + ** read and write Header1 information **; 1071 + Call Symput ('temp3',fname); 1072 + Call Symput ('temp4',Hd1File); 1073 + %Let Exline2='%Header1(Fname=&temp3,Hd1File=&temp4)'; 1074 + Call Execute(&Exline2); 1075 +End; 1076 + 1077 +Run; 1078 + 1079 +Data _Null_; 1080 + Set HtmGifs; 1081 + by state sci_name; 1082 + Fname="&outdir"||Trim(Left(State1))||"\"||Trim(Left(seq))||".htm"; 1083 + file out filevar=fname notitles noprint mod; 1084 + 1085 + if upcase(trim(left(state1)))='AK' then 1086 + put '
Distribution Map Not Available
'; 1087 + Else do; 1088 + put '
'; 1089 + if first.sci_name and not last.sci_name then do; 1090 + Put '
' / 1091 + 'NOTE: There are multiple maps for ' sci_name '
'/ 1092 + '
'; 1093 + end; 1094 + if not first.sci_name then put '
'; 1095 + if actfile ne '' or "&StateRef" ne '' or not (first.sci_name and last.sci_name) 1096 + then put &htmlab; 1097 + Put 1098 + '
'/ 1099 + 'distribution map'/ 1100 + '
'/ 1101 + 'map legend'/ 1102 + '
'; 1103 + End; 1104 + if last.sci_name then do; 1105 + Put 1106 + '
'/ 1107 + 'Disclaimer'/ 1108 + '
'; 1109 + if Upcase("&NewRec") = "YES" then Put 1110 + 'Report a new county record'/'
'; 1111 + Put 1112 + 'Return to species list'/ 1113 + '
'/ 1114 + 'Return' " to &ReturnTo main page"/ 1115 + '
'/; 1116 + %Footer 1117 + end; 1118 +Run; 1119 + 1120 + 1121 +/***** Create MORnnnn.htm files for those species with lots of images *****/ 1122 +Data _Null_; 1123 + length bak2name $ 12; 1124 + Set HtmGifs; 1125 + if morpic1='' then delete; 1126 + %metavars; 1127 + by state sci_name; 1128 + if state ne 101 then StateNam=FipNameL(State); 1129 + if state=101 then StateNam='Northern Mexico'; 1130 + If Common='' Then Common='No Common Name'; 1131 + Fluff=Byte(177); 1132 + Label=Translate(Label,'"',Fluff); ** translate ascii 177s back to dquotes **; 1133 + Fname="&outdir"||Trim(Left(State1))||"\mor"||Trim(Left(seq))||".htm"; 1134 + Bak2name=Trim(Left(seq))||".htm"; 1135 + metades=trim(left(meta8))||' '||trim(left(meta2)) ||' in '||trim(left(statenam)); 1136 + metakey=trim(left(statenam))||', '||trim(left(meta3))||', '||'species photos'; 1137 + file out filevar=fname notitles noprint; 1138 + if not first.sci_name then return; 1139 + put 1140 + ""/ 1141 + ''/ 1142 + "&Critter2 of " statenam '-- ' Label ''/ 1143 + ''/ 1144 + ''/ 1145 + ''/ 1146 + ''; 1147 + if common='No Common Name' Then Put 1148 + ''; 1149 + else put 1150 + ''; 1151 + Put 1152 + ''/ 1153 +''/ 1154 +''/ 1155 +'
'/ 1156 +'
'/ 1157 +"

&titl

"/ 1158 +"

&Critter2 of " statenam '

'; 1159 +if first.sci_name and last.sci_name then put 1160 + &htmlab; 1161 +Else put 1162 + &htmlab2; 1163 +Put 1164 + '
'/ 1165 + ''/ 1166 + ''/ 1167 + ''; 1171 + If morpic3 ne '' then do; 1172 + Put ''/ 1173 + ''; 1177 + End; 1178 + If morpic5 ne '' then do; 1179 + Put ''/ 1180 + ''; 1184 + End; 1185 + If morpic7 ne '' then do; 1186 + Put ''/ 1187 + ''; 1191 + End; 1192 + If morpic9 ne '' then do; 1193 + Put ''/ 1194 + ''; 1198 + End; 1199 + Put '
Photo
'; 1168 + If morpic2 ne '' then 1169 + Put '
Photo
'; 1170 + Put '
Photo
'; 1174 + If morpic4 ne '' then 1175 + Put '
Photo
'; 1176 + Put '
Photo
'; 1181 + If morpic6 ne '' then 1182 + Put '
Photo
'; 1183 + Put '
Photo
'; 1188 + If morpic8 ne '' then 1189 + Put '
Photo
'; 1190 + Put '
Photo
'; 1195 + If morpic10 ne '' then 1196 + Put '
Photo
'; 1197 + Put '
'/ 1200 + '

'/ 1201 + '

'/ 1202 + '
'/ 1203 + 'Return to species distribution page'/ 1204 + '
'/ 1205 + 'Return to species list'/ 1206 + '
'/ 1207 + 'Return' " to &ReturnTo main page"/ 1208 + '
'/; 1209 + %Footer 1210 +Run; 1211 + 1212 +proc delete data=htmgifs; 1213 +run; 1214 + 1215 +%Mend Htmgifs; 1216 + 1217 + 1218 + 1219 + 1220 +%Macro NDhtmgif; 1221 + 1222 +Proc Sort Data=Bflys2 NoDupKey Out=HtmGifs; 1223 + By State Label; 1224 + 1225 +Data _Null_; 1226 + Set HtmGifs; 1227 + if state ne 101 then StateNam=FipNameL(State); 1228 + if state=101 then StateNam='Northern Mexico'; 1229 + If Common='' Then Common='No Common Name'; 1230 + %metavars; 1231 + Fluff=Byte(177); 1232 + Label=Translate(Label,'"',Fluff); ** translate ascii 177s back to dquotes **; 1233 + Fname="&outdir"||Trim(Left(State1))||"\"||Trim(Left(Seq))||".htm"; 1234 + metades=trim(left(meta1))||' '||trim(left(meta2)) ||' in '||trim(left(statenam)); 1235 + metakey=trim(left(statenam))||', '||trim(left(meta3))||', '||trim(left(meta4)); 1236 + file out filevar=fname notitles noprint; 1237 + put 1238 + ""/ 1239 + ''/ 1240 +"Atlas of ND Butterflies -- " Label ''/ 1241 + ''/ 1242 + ''/ 1243 + ''/ 1244 + ''; 1245 + if common='No Common Name' Then Put 1246 + ''; 1247 + else put 1248 + ''; 1249 + Put 1250 + ''/ 1251 +''/ 1252 +''/ 1253 +'
'/ 1254 +'
'/ 1255 +"

Atlas of North Dakota Butterflies

"/ 1256 +&htmlab 1257 +'
'; 1258 +Put '
'/ 1259 +'
' 1260 +''/ 1261 +''; 1299 + 1300 +if picfile ne '' then put 1301 + ''; 1302 + 1303 +put 1304 +''/ 1305 +'
'; 1262 + 1263 +If ActFile NE '' Then Do; 1264 + ** read and write species account information **; 1265 + Call Symput ('temp1',fname); 1266 + Call Symput ('temp2',ActFile); 1267 + %Let Exline='%SpecAcct(Fname=&temp1,ActFile=&temp2)'; 1268 + Call Execute(&Exline); 1269 +End; 1270 +If "&StateRef" NE "" Then Do; 1271 + ** read and write state and regional references **; 1272 + Call Symput ('temp5',fname); 1273 + SRFile=Trim(Left(State1))||'.txt'; ** filename containing references **; 1274 + Call Symput ('temp6',SRFile); 1275 + %Let Exline3='%StateRef(Fname=&temp5,SRFile=&temp6)'; 1276 + Call Execute(&Exline3); 1277 +End; 1278 +If Hd1File NE '' Then Do; 1279 + ** read and write Header1 information **; 1280 + Call Symput ('temp3',fname); 1281 + Call Symput ('temp4',Hd1File); 1282 + %Let Exline2='%Header1(Fname=&temp3,Hd1File=&temp4)'; 1283 + Call Execute(&Exline2); 1284 +End; 1285 + 1286 +Run; 1287 + 1288 +Data _Null_; 1289 + Set HtmGifs; 1290 + Fname="&outdir"||Trim(Left(State1))||"\"||Trim(Left(Seq))||".htm"; 1291 + file out filevar=fname notitles noprint mod; 1292 + put 1293 +'
'/ 1294 +'distribution map'/ 1295 +'
'/ 1296 +'map legend'/ 1297 +'
' 1298 +'
JPG -- species photo' / '
'/ 1306 +'
'/ 1307 +'
'/ 1308 +'Explanation of Textual Accounts
'/ 1309 +'Return to species list'/ 1310 +'
'; 1311 + 1312 +%Footer 1313 + 1314 +run; 1315 + 1316 +proc delete data=htmgifs; 1317 +run; 1318 + 1319 +%Mend NDhtmgif; 1320 + 1321 + 1322 +%Macro Statetoc; 1323 + 1324 +Proc Sort Data=Bflys2 NoDupkey Out=Toc; 1325 + By State1 sci_name; 1326 + 1327 +Proc Sort Data=Toc; 1328 + By State1 Seq2; 1329 + 1330 +data _null_; 1331 + set toc; 1332 + %metavars; 1333 + by state1 family notsorted subfam notsorted; 1334 + Fname="&outdir"||Trim(Left(State1))||"\"||"toc.htm"; 1335 + if state ne 101 then StateNam=FipNameL(State); 1336 + if state=101 then StateNam='Northern Mexico'; 1337 + metades=trim(left(meta5))||' '||trim(left(statenam)) ||trim(left(meta6)); 1338 + metakey="&critter., "||trim(left(statenam))||', distribution map, species accounts, species photos'; 1339 + Lowfam=Lowcase(Compress(Family)); 1340 + Len=Length(Lowfam); 1341 + Lowfam=Substr(Lowfam,1,min(len,10)); 1342 + file out filevar=fname notitles noprint; 1343 + if first.state1 then do; 1344 + put 1345 + ""/ 1346 + ''/ 1347 + "&Critter2 of " statenam ''/ 1348 + ''/ 1349 + ''/ 1350 + ''/ 1351 + ''/ 1352 +''/ 1353 +''/ 1354 +'
'/ 1355 +'
'/ 1356 +"

&titl

"/ 1357 +"

&Critter2 of " statenam '

'/ 1358 +'
'/ 1359 +'
'/ 1360 +''/ 1361 +'Camera Icon Denotes entries with color photo(s)'/ 1362 +'
'/ 1363 +'Book Icon Denotes entries containing textual species accounts'/ 1364 +'
'/ 1365 +'

Families

'/ 1366 +'
'; 1387 + If first.state1 Then put 1388 + 'Return' " to &ReturnTo main page"; 1389 + if first.family then put 1390 + '
'/ 1391 + ''/ 1392 + '

' family +(-1) '

'/ 1393 + '
'; 1394 + if first.subfam then put 1395 + '
' subfam +(-1) ''; 1396 + if upcase(left(trim(state1)))='AK' and picfile = '' and actfile = '' then put 1397 + &imgtxt&linktxt2; 1398 + else put 1399 + &imgtxt&linktxt; 1400 + if last.family then put 1401 + '

Return to list of families'/ 1402 + '

'/; 1403 +Run; 1404 + 1405 +data _null_; 1406 + set toc; 1407 + by state1; 1408 + Fname="&outdir"||Trim(Left(State1))||"\"||"toc.htm"; 1409 + file out filevar=fname notitles noprint mod; 1410 +if first.state1 then put 1411 + '
' 1412 + 'Return' " to &ReturnTo main page"; 1413 + 1414 +if first.state1 then %Footer 1415 + 1416 +Run; 1417 + 1418 +proc delete Data=toc; 1419 +Run; 1420 + 1421 +%Mend Statetoc; 1422 + 1423 + 1424 +%Macro ndtoc; 1425 + 1426 +Proc Sort Data=Bflys2 NoDupkey Out=Toc; 1427 + By State1 Label; 1428 + 1429 +Proc Sort Data=Toc; 1430 + By State1 Seq2; 1431 + 1432 +data _null_; 1433 + set toc; 1434 + by state1 family notsorted subfam notsorted; 1435 + Fname="&outdir"||Trim(Left(State1))||"\"||"toc.htm"; 1436 + if state ne 101 then StateNam=FipNameL(State); 1437 + if state=101 then StateNam='Northern Mexico'; 1438 + Lowfam=Lowcase(Compress(Family)); 1439 + Len=Length(Lowfam); 1440 + Lowfam=Substr(Lowfam,1,min(len,10)); 1441 + file out filevar=fname notitles noprint; 1442 + if first.state1 then do; 1443 + put 1444 + ""/ 1445 + ''/ 1446 +'
'/ 1447 +'

Families

'/ 1448 +''; 1469 + if first.family then put 1470 + '
'/ 1471 + '

' family +(-1) '

'/ 1472 + '
'; 1473 + if first.subfam then put 1474 + '
' subfam +(-1) '
'; 1475 + put 1476 + &imgtxt&linktxt; 1477 + if last.family then put 1478 + '
'/ 1479 + '

Return to list of families

'/; 1480 +Run; 1481 + 1482 +data _null_; 1483 + set toc; 1484 + by state1; 1485 + Fname="&outdir"||Trim(Left(State1))||"\"||"toc.htm"; 1486 + file out filevar=fname notitles noprint mod; 1487 +if first.state1 then put 1488 + ''; 1489 +Run; 1490 + 1491 +proc delete Data=toc; 1492 +Run; 1493 + 1494 +%Mend ndtoc; 1495 + 1496 +%Macro USA; 1497 + 1498 +%if %upcase(&yellowst)=YES %Then %do; 1499 + 1500 + Libname ynpmap "&ynpmap"; 1501 + 1502 + ** Following code replaces map coordinates for Park (29) and Teton (39) counties in WY and adds 1503 + ** coordinates for Yellowstone NP (county=88); 1504 + 1505 + data mex_usa; 1506 + set mapdata.mex_usa; 1507 + if state=56 and county in (29,39) then delete; 1508 + 1509 + data mex_usa; 1510 + set mex_usa ynpmap.ynpmap2; 1511 + run; 1512 +%end; 1513 + 1514 +%else %do; 1515 + data mex_usa; set mapdata.mex_usa; run; 1516 +%end; 1517 + 1518 +Data NotDone(Keep=State StateCd County Response) MapData(Keep=State County X Y segment); 1519 + Length Response 5 county 6; 1520 + Set mex_usa &Chan; 1521 + x=round(x,0.0000001); 1522 + y=round(y,0.0000001); 1523 + Retain Response 9; *** indicates states that have not been coded and should be "grayed." ***; 1524 + If State In (2,15,72) Then Delete; 1525 + If Density < 5 Then Output MapData; 1526 + Length StateCd $2; 1527 + If State <100 then StateCd=FipState(State); 1528 + If State=101 then StateCd='MX'; /* Mexico */ 1529 + If /** StateCd Not In &Inlist and **/ Density < 5 Then Output NotDone; 1530 + 1531 + 1532 +Proc Sort Data=NotDone NoDupkey; 1533 + By State County; 1534 + 1535 +** read in list of families with incomplete coverage and states for which 1536 +** coverage is complete; 1537 + 1538 +filename subdone "&subdone" lrecl=2048; 1539 + 1540 +Data SubDone; 1541 + Infile SubDone Truncover Length=LineLen Col=C; 1542 + Length Family SubFam $80 Statecd $2 State 5; 1543 + Input Family 1-80; 1544 + If substr(family,1,1) in (' ','#') Then Return; 1545 + Else Input SubFam 1-80; 1546 + Do Until (C > LineLen); 1547 + Input StateCd @; 1548 + StateCd=Upcase(StateCd); 1549 + if statecd ne 'MX' Then State=Stfips(statecd); 1550 + if statecd='MX' Then State=101; 1551 + if state ne . then output; 1552 + End; 1553 + Drop StateCd; 1554 + 1555 +Proc Sort Data=SubDone; By State; 1556 + 1557 +Proc Gproject Data=MapData Out=Mapdata; 1558 + Id State County; 1559 + 1560 +*++++++++++++++++++++++++; 1561 +/* create a data set that contains the state boundaries */ 1562 +/* by removing the county boundaries */ 1563 +proc gremove data=mapdata out=state_1; 1564 + by state notsorted; 1565 + id state county; 1566 +run; 1567 +quit; 1568 + 1569 +/* increment the segment variable value for all */ 1570 +/* lake coordinates indicated by missing x and y */ 1571 +data anno; 1572 + set State_1; 1573 + by state notsorted; 1574 + retain flag 0 num 0; 1575 + /* reset the flag value for each state */ 1576 + if first.state then do; flag=0; num=0; end; 1577 + /* set the flag value when x and y are missing */ 1578 + if x=. and y=. then do; 1579 + flag=1; 1580 + num+1; 1581 + delete; 1582 + end; 1583 + /* increment the segment value */ 1584 + if flag=1 then segment + num; 1585 + drop flag; 1586 +run; 1587 + 1588 +/* create an annotate data set for the state outlines */ 1589 +data anno; 1590 + length function color $8; 1591 + retain xsys ysys '2' when 'a' color &zcolor size &zsize xsave ysave; 1592 + drop xsave ysave; 1593 + set anno; 1594 + by state notsorted segment; 1595 + /* move to the first coordinate */ 1596 + if first.segment then do; 1597 + function='move'; 1598 + xsave=x; 1599 + ysave=y; 1600 + output; 1601 + end; 1602 + /* draw to each successive coordinate */ 1603 + else do; 1604 + function='draw'; 1605 + output; 1606 + /* connect the last coordinate to the first */ 1607 + if last.segment then do; 1608 + x=xsave; 1609 + y=ysave; 1610 + output; 1611 + end; 1612 + end; 1613 +run; 1614 +*++++++++++++++++++++++++; 1615 + 1616 +Proc Sort Data=Bflys2; 1617 + By Family SubFam Sci_name Label County; 1618 + 1619 +Libname Gdevice0 '.'; 1620 + 1621 +proc gdevice catalog=GDEVICE0.devices nofs; 1622 + add MAPGIF 1623 +Xpixels=&Xpixels Ypixels=&YPixels Ymax=3.631 IN Xmax=6.474 IN Lrows=43 Lcols=76 1624 +Module=SASGDIMG Model=3031 description='GIF driver created from scratch' 1625 +Handshake=hardware type=export Devtype=DISK prompt=0 Gcopies=1 Fillinc=1 Pensort=N 1626 +Devopts='1100100009000000'X UCC='4749460000000000'X 1627 +Maxcolors=256 Cback=BLACK COLORS=(WHITE RED GREEN BLUE CYAN MAGENTA YELLOW) 1628 +Gaccess=gsasfile Gsfmode=replace Gsflen=4096 Gprotocol=SASGPSTD Fileclose=DRIVERTERM; 1629 + 1630 +Goptions 1631 + Reset=Global 1632 + Device=Mapgif 1633 + Cback=White 1634 + Border; 1635 + 1636 + Pattern1 V=Solid C=Blue; 1637 + Pattern2 V=Solid C=Cyan; 1638 + Pattern3 V=Solid C=LtGray; 1639 + 1640 + Legend Across=3 Shape=Bar(5,2) Label=None 1641 + Value=(Font=Simplex Height=1.5 Color=Black Justify=Left 1642 + 'Reliable Records' 'Unconfirmed Records' 'Data Not Yet Available'); 1643 + 1644 +Title; 1645 + 1646 +Data _Temp_; 1647 + Retain Count 1; 1648 + Length lowfam fn $ 8; 1649 + Set Bflys2; 1650 + By Family SubFam sci_name Label; 1651 + Lowfam=Lowcase(Compress(Family,' ()')); 1652 + Len=Length(Lowfam); 1653 + Lowfam=Substr(Lowfam,1,min(len,8)); 1654 + If First.SubFam then do; 1655 + call symput('temp10',family); 1656 + call symput('temp11',subfam); 1657 + call execute('%subdone(Family=&Temp10,SubFam=&temp11)'); 1658 + end; 1659 + If First.Label Then do; 1660 + fn=count; 1661 + Count+1; 1662 + Call symput ('Temp3',fn); 1663 + Call symput ('Temp',Label); 1664 + If county=-999 then do; ** maps w/o county boundaries **; 1665 + Call Symput('Temp4','State_1'); 1666 + Call Symput('Temp5','State'); 1667 + Call Symput('Temp6',''); 1668 + Call Symput('Temp7','Black'); 1669 + End; 1670 + Else do; ** maps with county boundaries **; 1671 + Call Symput('Temp4','MapData'); 1672 + Call Symput('Temp5','State County'); 1673 + Call Symput('Temp6','anno=anno'); 1674 + Call Symput('Temp7','LtGray'); 1675 + End; 1676 + %Let Exline='%Giffer2(Label=&Temp,Filename=&Temp3,mapds=&temp4,idvars=&temp5,anno=&temp6,outlcolr=&temp7)'; 1677 + Call Execute(&Exline); 1678 + End; 1679 +run; 1680 + 1681 +proc sort data=_temp_ out=htm nodupkey; 1682 + By Family SubFam Sci_name Label; 1683 + run; 1684 + 1685 +Data _Null_; 1686 + Length morename $ 120; 1687 + Set htm; 1688 + %metavars; 1689 + If Common='' Then Common='No Common Name'; 1690 + By Family SubFam Sci_name Label; 1691 + If First.sci_name Then do; 1692 + Fluff=Byte(177); 1693 + Label=Translate(Label,'"',Fluff); **Translate ascii 177s back to dquotes **; 1694 + fname="&OutDir.usa\"||trim(left(seq))||'.htm'; 1695 + Morename="mor"||Trim(Left(seq))||".htm"; 1696 + metades=trim(left(meta1))||' '||trim(left(meta2))||" in the &metaarea"; 1697 + metakey="&metakeyw., "||trim(left(meta3))||', '||trim(left(meta4)); 1698 + if morpic1 ne '' then moreflag=1; 1699 + else moreflag=0; 1700 + file out filevar=fname notitles noprint; 1701 + put 1702 + ""/ 1703 + ''/ 1704 + "&ReturnTo -- " Label ""/ 1705 + ''/ 1706 + ''/ 1707 + ''/ 1708 + ''; 1709 + if common='No Common Name' Then Put 1710 + ''; 1711 + else put 1712 + ''; 1713 + Put 1714 + ''/ 1715 + ''/ 1716 + ''/ 1717 + '
'/ 1718 + '
'/ 1719 + "

&titl

"; 1720 + if first.sci_name and last.sci_name then put 1721 + &htmlab; 1722 + else put &htmlab2; 1723 + Put 1724 + '
'; 1725 + if picfile ne '' then put 1726 + 'JPG -- species photo' /; 1727 + if moreflag=1 then put 1728 + '
'/ 1729 + 'More Images'; 1730 + Put '

'/ 1731 + '

'; 1732 + If ActFile NE '' Then Do; 1733 + ** read and write species account information **; 1734 + Call Symput ('temp1',fname); 1735 + Call Symput ('temp2',ActFile); 1736 + %Let Exline='%SpecAcct(Fname=&temp1,ActFile=&temp2)'; 1737 + Call Execute(&Exline); 1738 + End; 1739 + If Hd1File NE '' Then Do; 1740 + ** read and write Header1 information **; 1741 + Call Symput ('temp3',fname); 1742 + Call Symput ('temp4',Hd1File); 1743 + %Let Exline2='%Header1(Fname=&temp3,Hd1File=&temp4)'; 1744 + Call Execute(&Exline2); 1745 + End; 1746 + 1747 + End; 1748 + Run; 1749 + 1750 +Data _Null_; 1751 + Set htm; 1752 + By Family SubFam Sci_name Label; 1753 + Fluff=Byte(177); 1754 + Label=Translate(Label,'"',Fluff); **Translate ascii 177s back to dquotes **; 1755 + fname="&OutDir.usa\"||trim(left(seq))||'.htm'; 1756 + file out filevar=fname notitles noprint mod; 1757 + If ActFile NE '' and Hd1File='' then put '

'; 1758 + put '

'; 1759 + if first.sci_name and not last.sci_name then do; 1760 + if picfile ne '' or actfile ne '' or hd1file ne '' then Put '
'; 1761 + Put 'NOTE: There are multiple maps for ' sci_name '
'/ 1762 + '
'; 1763 + File Print notitles; 1764 + Put 'NOTE: There are multiple maps for ' sci_name = family = fname=; 1765 + File out filevar=fname notitles noprint mod; 1766 + end; 1767 + if not first.sci_name then put '
'; 1768 + if actfile ne '' or not (first.sci_name and last.sci_name) then 1769 + put &htmlab; 1770 + Put 1771 + '
'/ 1772 + 'distribution map'/ 1773 + '
'/ 1774 + 'map legend'/ 1775 + '
'; 1776 + If last.sci_name then do; 1777 + Put 1778 + '
'/ 1779 + 'Disclaimer'/ 1780 + '
'; 1781 + if Upcase("&NewRec") = "YES" then Put 1782 + 'Report a new county record'/'
'; 1783 + Put 1784 + 1785 + 'Return to species list'/ 1786 + '
'/ 1787 + 'Return' " to &ReturnTo main page"/ 1788 + '
'/; 1789 + %footer 1790 + End; 1791 + Drop File_id Fluff; 1792 +Run; 1793 + 1794 +/***** Create MORnnnn.htm files for those species with lots of images *****/ 1795 +Data _Null_; 1796 + Length bak2name $ 12; 1797 + Set htm; 1798 + if morpic1='' then delete; 1799 + %metavars; 1800 + If Common='' Then Common='No Common Name'; 1801 + By Family SubFam Sci_name Label; 1802 + If First.sci_name Then do; 1803 + Fluff=Byte(177); 1804 + Label=Translate(Label,'"',Fluff); **Translate ascii 177s back to dquotes **; 1805 + fname="&OutDir.usa\mor"||trim(left(seq))||'.htm'; 1806 + Bak2name=Trim(Left(seq))||".htm"; 1807 + metades=trim(left(meta8))||' '||trim(left(meta2))||" in the &metaarea"; 1808 + metakey="&metakeyw., "||trim(left(meta3))||', '||'species photos'; 1809 + file out filevar=fname notitles noprint; 1810 + put 1811 + ""/ 1812 + ''/ 1813 + "&ReturnTo -- " Label ""/ 1814 + ''/ 1815 + ''/ 1816 + ''/ 1817 + ''; 1818 + if common='No Common Name' Then Put 1819 + ''; 1820 + else put 1821 + ''; 1822 + Put 1823 + ''/ 1824 + ''/ 1825 + ''/ 1826 + '
'/ 1827 + '
'/ 1828 + "

&titl

"; 1829 + if first.sci_name and last.sci_name then put 1830 + &htmlab; 1831 + else put &htmlab2; 1832 + Put 1833 + '
'/ 1834 + ''/ 1835 + ''/ 1836 + ''; 1840 + If morpic3 ne '' then do; 1841 + Put ''/ 1842 + ''; 1846 + End; 1847 + If morpic5 ne '' then do; 1848 + Put ''/ 1849 + ''; 1853 + End; 1854 + If morpic7 ne '' then do; 1855 + Put ''/ 1856 + ''; 1860 + End; 1861 + If morpic9 ne '' then do; 1862 + Put ''/ 1863 + ''; 1867 + End; 1868 + Put '
Photo
'; 1837 + If morpic2 ne '' then 1838 + Put '
Photo
'; 1839 + Put '
Photo
'; 1843 + If morpic4 ne '' then 1844 + Put '
Photo
'; 1845 + Put '
Photo
'; 1850 + If morpic6 ne '' then 1851 + Put '
Photo
'; 1852 + Put '
Photo
'; 1857 + If morpic8 ne '' then 1858 + Put '
Photo
'; 1859 + Put '
Photo
'; 1864 + If morpic10 ne '' then 1865 + Put '
Photo
'; 1866 + Put '
'/ 1869 + '

'/ 1870 + '

'/ 1871 + '
'/ 1872 + 'Return to species distribution page'/ 1873 + '
'/ 1874 + 'Return to species list'/ 1875 + '
'/ 1876 + 'Return' " to &ReturnTo main page"/ 1877 + '
'/; 1878 + %Footer 1879 + End; 1880 + Run; 1881 + 1882 + 1883 +proc delete Data=notdone; 1884 +proc delete Data=notdone2; 1885 +proc delete data=thisfam; 1886 +**proc delete Data=mapdata; 1887 +proc delete Data=usabflys; 1888 +proc delete Data=bflys2; 1889 +proc delete data=anno; 1890 + 1891 +Proc Sort Data=htm nodupkey; 1892 + By Seq2 sci_name; 1893 + 1894 +data htm; 1895 + Length Fname $60; 1896 + set htm end=last; 1897 + %metavars; 1898 + by family notsorted subfam notsorted; 1899 + Fname="&outdir"||"USA\"||"toc.htm"; 1900 + metades=trim(left(meta5))||" the &metaarea."||trim(left(meta6)); 1901 + metakey=lowcase("&critter.")||", families, "||"&metakeyw., distribution map, species accounts, species photos"; 1902 + file out filevar=fname notitles noprint; 1903 + if _N_=1 then do; 1904 + put 1905 + ""/ 1906 + ''/ 1907 + "&ReturnTo. -- Families" ''/ 1908 + ''/ 1909 + ''/ 1910 + ''/ 1911 + ''/ 1912 + ''/ 1913 + ''/ 1914 + '
'/ 1915 + '
'/ 1916 + "

&titl" '

'/ 1917 + '
'/ 1918 + '
'/ 1919 + '

Families

'/ 1920 + ''/ 1926 + '
'/ 1927 + 'Return' " to &ReturnTo main page" 1928 + '
'/; 1929 + if last then %footer 1930 +Run; 1931 + 1932 +data htm; 1933 + Length File_ID $7; 1934 + set htm; 1935 + %metavars; 1936 + by family notsorted subfam notsorted; 1937 + If Common='' Then Common='No Common Name'; 1938 + Fname=left(compress("&outdir"||"USA\"||lowfam||".htm")); 1939 + File_id=Trim(Left(Fn)); 1940 + metades=trim(left(meta7))||' '||trim(left(family))||" occurring in the &metaarea."; 1941 + metakey=trim(left(family))||", &metakeyw., distribution map, species accounts, species photos"; 1942 + file out filevar=fname notitles noprint; 1943 + if first.family then put 1944 + ""/ 1945 + ''/ 1946 + "&ReturnTo. -- " family +(-1) ''/ 1947 + ''/ 1948 + ''/ 1949 + ''/ 1950 + ''/ 1951 + ''/ 1952 + ''/ 1953 + '
'/ 1954 + '
'/ 1955 + "

&titl" '

'/ 1956 + '
'/ 1957 + '
'/ 1958 + 'Camera Icon Denotes entries with color photo(s)'/ 1959 + '
'/ 1960 + 'Book Icon Denotes entries containing textual species accounts'/ 1961 + '
'/ 1962 + '

' family +(-1) '

'/ 1963 + '
'; 1964 + if first.subfam then put 1965 + '
' subfam +(-1) ''; 1966 + put 1967 + &imgtxt&linktxt; 1968 + if last.family then put 1969 + '

Return to list of families'/ 1971 + '

'/; 1972 +Run; 1973 + 1974 +data _null_; 1975 + set htm; 1976 + by family notsorted; 1977 + Fname=left(compress("&outdir"||"USA\"||lowfam||".htm")); 1978 + file out filevar=fname notitles noprint mod; 1979 +if first.family then put 1980 + '
'/ 1981 + 'Return' " to &ReturnTo main page"; 1982 +if first.family then %footer 1983 + 1984 +Run; 1985 + 1986 +proc delete data=htm; 1987 + 1988 +Goptions Reset=All Device=MapGif; 1989 + 1990 +Proc Catalog Catalog=GDevice0.devices entrytype=dev; 1991 + delete mapgif; 1992 + 1993 +Run; 1994 + 1995 +Quit; 1996 + 1997 +Libname Gdevice0 Clear; 1998 + 1999 +%Mend USA; 2000 + 2001 +%Macro SubDone2; 2002 + 2003 + Data NotDone2; 2004 + %If &numobs=0 %Then %Do; 2005 + Set NotDone; 2006 + If StateCd Not in &InList; 2007 + %End; 2008 + %Else %Do; 2009 + Merge NotDone(In=In1) ThisFam(In=In2); 2010 + By State; 2011 + If Not In2; 2012 + %End; 2013 + Drop StateCd; 2014 + Run; 2015 +%Mend SubDone2; 2016 + 2017 +%Macro SubDone(Family=,SubFam=); 2018 + 2019 +Data ThisFam; 2020 + Set Subdone; 2021 + Where Family="&Family" and SubFam="&SubFam"; 2022 + Drop Family SubFam; 2023 + 2024 +** Note: If No. obs in data set ThisFam is zero then we want data set Notdone2 2025 +** to be created from the list in '&inlist'. Else we want NotDone2 to be 2026 +** created from the states listed in data set ThisFam; 2027 + 2028 +Data _null_; 2029 + call symput ('numobs',left(put(count,8.))); 2030 + call execute('%subdone2'); 2031 + stop; 2032 + Set ThisFam nobs=count; 2033 +run; 2034 + 2035 +%Mend SubDone; 2036 + 2037 +%Macro Giffer2(Label=,Filename=,MapDs=,IdVars=,Anno=,Outlcolr=LtGray); 2038 + 2039 +Data UsaBflys(Keep=State County Response) 2040 + Bflys2(Keep=Label State County Response); 2041 + Set Bflys2; 2042 + If Label NE "&Label" Then Output Bflys2; 2043 + Else Output USABFLYS; 2044 + 2045 +Proc Append Base=USABflys Data=NotDone2; 2046 + 2047 +Run; 2048 + 2049 +Filename Gsasfile "&OutDir.USA\Maps\&Filename..gif"; 2050 + 2051 + Proc Gmap Map=&MapDs Data=UsaBflys All; 2052 + Choro Response / Discrete &Legtxt Coutline=&outlcolr Cempty=&outlcolr 2053 + Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 &anno; 2054 + Id &IdVars; 2055 + 2056 + run; 2057 + quit; 2058 + 2059 + Proc Catalog Cat=Work.GSeg Kill; 2060 + run; 2061 + quit; 2062 + 2063 +%Mend Giffer2; 2064 + 2065 + 2066 +%Macro Driver; 2067 + %If &Stop&Halt&Abort=000 %Then %Do; 2068 + %If %Upcase(&DoStates)=YES %Then %Do; 2069 + %If %Upcase(&Style)=NDATLAS %Then %NDhtmgif; 2070 + %Else %HtmGifs; 2071 + %End; 2072 + %If %Upcase(&DoStates)=YES %Then %Do; 2073 + %If %Upcase(&Style)=NDATLAS %Then %ndtoc; 2074 + %Else %StateToc; 2075 + %End; 2076 + %If %Upcase(&DoStates)=YES %Then %Mapper; 2077 + %If %Upcase(&USA)=YES %Then %USA; 2078 + %End; 2079 +%Mend Driver; 2080 + 2081 + 2082 + 2083 +%Driver NOTE: 6927 observations with duplicate key values were deleted. NOTE: The data set WORK.HTMGIFS has 794 observations and 32 variables. NOTE: The PROCEDURE SORT used 0.23 seconds. NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 2083:193 2083:235 NOTE: Variable LENGTH is uninitialized. NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\12.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\35.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\53.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\80.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\95.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\1.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\4.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\21.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\31.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\39.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\41.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\50.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\56.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\64.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\67.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\69.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\78.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\82.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\86.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\94.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\96.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\5.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\13.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\25.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\32.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\40.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\41.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\65.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\67.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\79.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\85.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\86.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\99.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\102.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\4.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\22.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\24.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\45.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\50.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\69.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\82.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\88.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\35.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\38.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\80.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\84.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\95.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\12.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\38.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\53.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\84.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\95.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\9.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\18.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\22.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\61.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\65.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IL\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IL\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\15.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\10.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\15.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\24.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\69.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KY\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KY\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KY\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\71.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MA\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\12.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\35.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\60.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\80.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\95.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\15.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\24.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\45.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\69.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\41.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\61.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\65.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\67.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\86.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\71.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\12.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\53.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\10.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\15.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\69.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\76.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\7.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\11.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\18.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\25.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\61.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\65.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\68.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\85.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\98.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\99.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\100.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\101.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\12.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\53.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\84.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\24.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\45.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\4.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\10.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\14.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\16.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\31.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\35.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\39.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\41.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\56.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\60.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\63.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\66.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\67.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\76.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\78.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\80.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\82.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\86.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\103.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\5.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\22.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\25.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\41.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\45.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\61.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\67.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\82.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\85.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\86.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\101.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\71.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\11.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\18.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\22.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\25.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\61.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\68.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\98.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\99.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\101.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WI\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WI\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WI\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\22.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\45.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\97.htm, RECFM=V,LRECL=256 NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 106. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 109. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 106. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 108. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 110. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 108. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 111. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 112. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 113. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 112. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 108. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 113. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 112. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 111. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 113. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 109. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 113. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 109. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 110. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 109. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 135. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 106. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 106. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 119. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 106. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 120. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 118. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 119. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 120. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 120. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 120. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 135. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 109. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 111. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 109. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 108. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 106. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 109. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 137. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 137. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 135. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 135. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 138. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 138. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 136. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 120. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 119. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 120. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 108. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 106. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 106. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 109. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 101. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 100. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 101. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 138. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 136. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 137. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 136. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 104. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 110. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 103. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 103. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 120. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 104. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 108. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 103. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 106. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 120. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 103. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 106. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 106. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 120. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 106. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 120. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 120. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 104. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 120. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 122. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 119. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 99. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 111. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 112. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 110. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 110. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 109. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 105. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 137. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 137. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 135. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 135. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 121. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 123. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 124. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 127. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 125. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 22 records were written to the file OUT. The minimum record length was 0. The maximum record length was 126. NOTE: The DATA statement used 21.23 seconds. NOTE: CALL EXECUTE generated line. 1 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\6.htm" lrecl=2048; 1 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 2 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\6.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.17 seconds. NOTE: CALL EXECUTE generated line. 3 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_blanda.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\12.htm" lrecl=2048; 3 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 4 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\12.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_blanda.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 426. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 426. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 5 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\19.htm" lrecl=2048; 5 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 6 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 7 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\20.htm" lrecl=2048; 7 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 8 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\20.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 324. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 324. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 9 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\26.htm" lrecl=2048; 9 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 10 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 11 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\27.htm" lrecl=2048; 11 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 12 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 13 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\33.htm" lrecl=2048; 13 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 14 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\33.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 340. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 340. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 15 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\37.htm" lrecl=2048; 15 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 16 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 17 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\43.htm" lrecl=2048; 17 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 18 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 19 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigrio.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\53.htm" lrecl=2048; 19 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 20 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\53.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigrio.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 243. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 243. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 21 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\62.htm" lrecl=2048; 21 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 22 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 23 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\70.htm" lrecl=2048; 23 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 24 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 25 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\73.htm" lrecl=2048; 25 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 26 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 27 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\74.htm" lrecl=2048; 27 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 28 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 29 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\77.htm" lrecl=2048; 29 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 30 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 31 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\83.htm" lrecl=2048; 31 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 32 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 33 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\89.htm" lrecl=2048; 33 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 34 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\89.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 360. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 360. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 35 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\91.htm" lrecl=2048; 35 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 36 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\91.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 244. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 244. NOTE: The DATA statement used 0.21 seconds. NOTE: CALL EXECUTE generated line. 37 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\92.htm" lrecl=2048; 37 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 38 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 39 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_wapler.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AL\95.htm" lrecl=2048; 39 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 40 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AL\95.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_wapler.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 41 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_picolo.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\4.htm" lrecl=2048; 41 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 42 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\4.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_picolo.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 397. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 397. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 43 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\30.htm" lrecl=2048; 43 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 44 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\30.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 293. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 293. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 45 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\34.htm" lrecl=2048; 45 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 46 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\34.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 223. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 223. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 47 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\37.htm" lrecl=2048; 47 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 48 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 49 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\42.htm" lrecl=2048; 49 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 50 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\42.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 291. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 291. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 51 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\43.htm" lrecl=2048; 51 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 52 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 53 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\46.htm" lrecl=2048; 53 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 54 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 55 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\47.htm" lrecl=2048; 55 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 56 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\47.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 57 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\51.htm" lrecl=2048; 57 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 58 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 59 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\52.htm" lrecl=2048; 59 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 60 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\52.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 392. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 392. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 61 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\54.htm" lrecl=2048; 61 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 62 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\54.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 63 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\55.htm" lrecl=2048; 63 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 64 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\55.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 348. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 348. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 65 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\59.htm" lrecl=2048; 65 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 66 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\59.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 237. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 237. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 67 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_pulchr.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\69.htm" lrecl=2048; 67 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 68 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\69.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_pulchr.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 431. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 431. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 69 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\70.htm" lrecl=2048; 69 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 70 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 71 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\72.htm" lrecl=2048; 71 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 72 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 73 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\73.htm" lrecl=2048; 73 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 74 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 75 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sedeci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\78.htm" lrecl=2048; 75 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 76 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\78.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sedeci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 329. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 329. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 77 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sperat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\82.htm" lrecl=2048; 77 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 78 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\82.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sperat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 208. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 208. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 79 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tenuis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\86.htm" lrecl=2048; 79 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 80 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\86.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tenuis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 227. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 227. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 81 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\87.htm" lrecl=2048; 81 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 82 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 83 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\90.htm" lrecl=2048; 83 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 84 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 85 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AZ\97.htm" lrecl=2048; 85 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 86 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AZ\97.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 226. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 226. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 87 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\19.htm" lrecl=2048; 87 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 88 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 89 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\20.htm" lrecl=2048; 89 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 90 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\20.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 324. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 324. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 91 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\27.htm" lrecl=2048; 91 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 92 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 93 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\29.htm" lrecl=2048; 93 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 94 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 95 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\37.htm" lrecl=2048; 95 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 96 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 97 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\43.htm" lrecl=2048; 97 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 98 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 99 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\47.htm" lrecl=2048; 99 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 100 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\47.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 101 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\55.htm" lrecl=2048; 101 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 102 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\55.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 348. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 348. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 103 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\70.htm" lrecl=2048; 103 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 104 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 105 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\72.htm" lrecl=2048; 105 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 106 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 107 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\73.htm" lrecl=2048; 107 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 108 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 109 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\74.htm" lrecl=2048; 109 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 110 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 111 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\77.htm" lrecl=2048; 111 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 112 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 113 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\81.htm" lrecl=2048; 113 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 114 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 115 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\83.htm" lrecl=2048; 115 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 116 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 117 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\90.htm" lrecl=2048; 117 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 118 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 119 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\92.htm" lrecl=2048; 119 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 120 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 121 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\104.htm" lrecl=2048; 121 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 122 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 123 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\AR\105.htm" lrecl=2048; 123 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 124 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\AR\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 125 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CA\34.htm" lrecl=2048; 125 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 126 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CA\34.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 223. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 223. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 127 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CA\37.htm" lrecl=2048; 127 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 128 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CA\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 129 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CA\46.htm" lrecl=2048; 129 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 130 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CA\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 131 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CA\51.htm" lrecl=2048; 131 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 132 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CA\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 133 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CA\54.htm" lrecl=2048; 133 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 134 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CA\54.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 135 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CA\59.htm" lrecl=2048; 135 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 136 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CA\59.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 237. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 237. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 137 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tenuis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CA\86.htm" lrecl=2048; 137 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 138 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CA\86.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tenuis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 227. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 227. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 139 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CA\87.htm" lrecl=2048; 139 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 140 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CA\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 141 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CA\90.htm" lrecl=2048; 141 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 142 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CA\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 143 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CA\91.htm" lrecl=2048; 143 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 144 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CA\91.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 244. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 244. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 145 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CA\97.htm" lrecl=2048; 145 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 146 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CA\97.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 226. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 226. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 147 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CA\104.htm" lrecl=2048; 147 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 148 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CA\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 149 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\2.htm" lrecl=2048; 149 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 150 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\2.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 464. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 464. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 151 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_picolo.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\4.htm" lrecl=2048; 151 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 152 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\4.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_picolo.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 397. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 397. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 153 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\17.htm" lrecl=2048; 153 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 154 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\17.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 347. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 347. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 155 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\19.htm" lrecl=2048; 155 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 156 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 157 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_decemn.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\22.htm" lrecl=2048; 157 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 158 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\22.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_decemn.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 159 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_denver.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\24.htm" lrecl=2048; 159 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 160 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\24.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_denver.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 245. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 245. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 161 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\27.htm" lrecl=2048; 161 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 162 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 163 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\29.htm" lrecl=2048; 163 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 164 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 165 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\30.htm" lrecl=2048; 165 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 166 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\30.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 293. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 293. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 167 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\34.htm" lrecl=2048; 167 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 168 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\34.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 223. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 223. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 169 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\37.htm" lrecl=2048; 169 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 170 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 171 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\42.htm" lrecl=2048; 171 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 172 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\42.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 291. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 291. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 173 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\43.htm" lrecl=2048; 173 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 174 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 175 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\44.htm" lrecl=2048; 175 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 176 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 177 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\45.htm" lrecl=2048; 177 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 178 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\45.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 227. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 227. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 179 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\46.htm" lrecl=2048; 179 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 180 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 181 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\47.htm" lrecl=2048; 181 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 182 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\47.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 183 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\51.htm" lrecl=2048; 183 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 184 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 185 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\52.htm" lrecl=2048; 185 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 186 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\52.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 392. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 392. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 187 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\54.htm" lrecl=2048; 187 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 188 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\54.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 189 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\55.htm" lrecl=2048; 189 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 190 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\55.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 348. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 348. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 191 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\59.htm" lrecl=2048; 191 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 192 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\59.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 237. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 237. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 193 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_pulchr.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\69.htm" lrecl=2048; 193 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 194 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\69.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_pulchr.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 431. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 431. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 195 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\70.htm" lrecl=2048; 195 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 196 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 197 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\72.htm" lrecl=2048; 197 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 198 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 199 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\73.htm" lrecl=2048; 199 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 200 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 201 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\77.htm" lrecl=2048; 201 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 202 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 203 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sperat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\82.htm" lrecl=2048; 203 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 204 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\82.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sperat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 208. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 208. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 205 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\83.htm" lrecl=2048; 205 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 206 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 207 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\87.htm" lrecl=2048; 207 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 208 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 209 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_theati.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\88.htm" lrecl=2048; 209 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 210 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\88.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_theati.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 533. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 533. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 211 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\89.htm" lrecl=2048; 211 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 212 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\89.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 360. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 360. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 213 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CO\90.htm" lrecl=2048; 213 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 214 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CO\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 215 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CT\26.htm" lrecl=2048; 215 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 216 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CT\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 217 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CT\27.htm" lrecl=2048; 217 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 218 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CT\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 219 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CT\37.htm" lrecl=2048; 219 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 220 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CT\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 221 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CT\44.htm" lrecl=2048; 221 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 222 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CT\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 223 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CT\48.htm" lrecl=2048; 223 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 224 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CT\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 225 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CT\70.htm" lrecl=2048; 225 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 226 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CT\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 227 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CT\72.htm" lrecl=2048; 227 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 228 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CT\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 229 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CT\73.htm" lrecl=2048; 229 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 230 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CT\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 231 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CT\74.htm" lrecl=2048; 231 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 232 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CT\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 233 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CT\77.htm" lrecl=2048; 233 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 234 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CT\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 235 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\CT\81.htm" lrecl=2048; 235 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 236 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\CT\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 237 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\26.htm" lrecl=2048; 237 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 238 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 239 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\27.htm" lrecl=2048; 239 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 240 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 241 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\37.htm" lrecl=2048; 241 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 242 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 243 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\43.htm" lrecl=2048; 243 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 244 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 245 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\48.htm" lrecl=2048; 245 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 246 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 247 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\62.htm" lrecl=2048; 247 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 248 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 249 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\70.htm" lrecl=2048; 249 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 250 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 251 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\73.htm" lrecl=2048; 251 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 252 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 253 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\74.htm" lrecl=2048; 253 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 254 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 255 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\77.htm" lrecl=2048; 255 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 256 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 257 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\81.htm" lrecl=2048; 257 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 258 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 259 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\90.htm" lrecl=2048; 259 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 260 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 261 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\DE\105.htm" lrecl=2048; 261 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 262 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\DE\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 263 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\FL\6.htm" lrecl=2048; 263 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 264 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\FL\6.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 265 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\FL\26.htm" lrecl=2048; 265 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 266 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\FL\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 267 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt" lrecl=2048; FileName Outdata "c:\tigbnext\FL\33.htm" lrecl=2048; 267 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 268 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\FL\33.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 340. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 340. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 269 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\FL\37.htm" lrecl=2048; 269 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 270 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\FL\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 271 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\FL\38.htm" lrecl=2048; 271 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 272 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\FL\38.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 300. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 300. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 273 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\FL\48.htm" lrecl=2048; 273 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 274 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\FL\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 275 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\FL\70.htm" lrecl=2048; 275 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 276 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\FL\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 277 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_striga.txt" lrecl=2048; FileName Outdata "c:\tigbnext\FL\84.htm" lrecl=2048; 277 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 278 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\FL\84.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_striga.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 245. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 245. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 279 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt" lrecl=2048; FileName Outdata "c:\tigbnext\FL\91.htm" lrecl=2048; 279 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 280 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\FL\91.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 244. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 244. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 281 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_wapler.txt" lrecl=2048; FileName Outdata "c:\tigbnext\FL\95.htm" lrecl=2048; 281 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 282 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\FL\95.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_wapler.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 283 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\FL\104.htm" lrecl=2048; 283 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 284 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\FL\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 285 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\6.htm" lrecl=2048; 285 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 286 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\6.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 287 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\8.htm" lrecl=2048; 287 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 288 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\8.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 445. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 445. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 289 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_blanda.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\12.htm" lrecl=2048; 289 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 290 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\12.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_blanda.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 426. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 426. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 291 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\26.htm" lrecl=2048; 291 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 292 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 293 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\27.htm" lrecl=2048; 293 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 294 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 295 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\33.htm" lrecl=2048; 295 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 296 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\33.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 340. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 340. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 297 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\37.htm" lrecl=2048; 297 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 298 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 299 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\38.htm" lrecl=2048; 299 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 300 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\38.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 300. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 300. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 301 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\48.htm" lrecl=2048; 301 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 302 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 303 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigrio.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\53.htm" lrecl=2048; 303 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 304 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\53.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigrio.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 243. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 243. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 305 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\62.htm" lrecl=2048; 305 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 306 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 307 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\70.htm" lrecl=2048; 307 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 308 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 309 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\73.htm" lrecl=2048; 309 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 310 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 311 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\74.htm" lrecl=2048; 311 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 312 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 313 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\77.htm" lrecl=2048; 313 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 314 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 315 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\81.htm" lrecl=2048; 315 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 316 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 317 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\83.htm" lrecl=2048; 317 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 318 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 319 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_striga.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\84.htm" lrecl=2048; 319 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 320 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\84.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_striga.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 245. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 245. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 321 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\90.htm" lrecl=2048; 321 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 322 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 323 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\91.htm" lrecl=2048; 323 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 324 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\91.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 244. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 244. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 325 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\92.htm" lrecl=2048; 325 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 326 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 327 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_wapler.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\95.htm" lrecl=2048; 327 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 328 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\95.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_wapler.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 329 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\104.htm" lrecl=2048; 329 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 330 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 331 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\GA\105.htm" lrecl=2048; 331 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 332 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\GA\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 333 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_decemn.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ID\22.htm" lrecl=2048; 333 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 334 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ID\22.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_decemn.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 335 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ID\34.htm" lrecl=2048; 335 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 336 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ID\34.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 223. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 223. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 337 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ID\37.htm" lrecl=2048; 337 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 338 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ID\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 339 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ID\42.htm" lrecl=2048; 339 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 340 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ID\42.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 291. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 291. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 341 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ID\46.htm" lrecl=2048; 341 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 342 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ID\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 343 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ID\51.htm" lrecl=2048; 343 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 344 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ID\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 345 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ID\59.htm" lrecl=2048; 345 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 346 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ID\59.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 237. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 237. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 347 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ID\72.htm" lrecl=2048; 347 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 348 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ID\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 349 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ID\73.htm" lrecl=2048; 349 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 350 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ID\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 351 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ID\87.htm" lrecl=2048; 351 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 352 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ID\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 353 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ID\90.htm" lrecl=2048; 353 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 354 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ID\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 355 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ID\97.htm" lrecl=2048; 355 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 356 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ID\97.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 226. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 226. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 357 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IL\37.htm" lrecl=2048; 357 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 358 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IL\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 359 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IL\105.htm" lrecl=2048; 359 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 360 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IL\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 361 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\8.htm" lrecl=2048; 361 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 362 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\8.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 445. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 445. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 363 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\19.htm" lrecl=2048; 363 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 364 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 365 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\27.htm" lrecl=2048; 365 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 366 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 367 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\29.htm" lrecl=2048; 367 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 368 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 369 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\37.htm" lrecl=2048; 369 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 370 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 371 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\43.htm" lrecl=2048; 371 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 372 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 373 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\47.htm" lrecl=2048; 373 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 374 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\47.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 375 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\49.htm" lrecl=2048; 375 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 376 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\49.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 569. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 569. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 377 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\62.htm" lrecl=2048; 377 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 378 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 379 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\70.htm" lrecl=2048; 379 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 380 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 381 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\72.htm" lrecl=2048; 381 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 382 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 383 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\73.htm" lrecl=2048; 383 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 384 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 385 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\74.htm" lrecl=2048; 385 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 386 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 387 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\77.htm" lrecl=2048; 387 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 388 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 389 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\81.htm" lrecl=2048; 389 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 390 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 391 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\90.htm" lrecl=2048; 391 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 392 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 393 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\92.htm" lrecl=2048; 393 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 394 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 395 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IN\105.htm" lrecl=2048; 395 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 396 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IN\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 397 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_celeri.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\15.htm" lrecl=2048; 397 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 398 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\15.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_celeri.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 303. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 303. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 399 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\19.htm" lrecl=2048; 399 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 400 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 401 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\20.htm" lrecl=2048; 401 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 402 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\20.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 324. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 324. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 403 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\27.htm" lrecl=2048; 403 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 404 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 405 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\29.htm" lrecl=2048; 405 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 406 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 407 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\37.htm" lrecl=2048; 407 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 408 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 409 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\42.htm" lrecl=2048; 409 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 410 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\42.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 291. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 291. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 411 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\43.htm" lrecl=2048; 411 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 412 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 413 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\44.htm" lrecl=2048; 413 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 414 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 415 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\70.htm" lrecl=2048; 415 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 416 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 417 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\72.htm" lrecl=2048; 417 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 418 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 419 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\73.htm" lrecl=2048; 419 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 420 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 421 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\77.htm" lrecl=2048; 421 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 422 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 423 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\81.htm" lrecl=2048; 423 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 424 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 425 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\83.htm" lrecl=2048; 425 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 426 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 427 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\90.htm" lrecl=2048; 427 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 428 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 429 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\92.htm" lrecl=2048; 429 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 430 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 431 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\IA\105.htm" lrecl=2048; 431 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 432 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\IA\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 433 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\2.htm" lrecl=2048; 433 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 434 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\2.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 464. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 464. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 435 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_belfra.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\10.htm" lrecl=2048; 435 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 436 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\10.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_belfra.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 173. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 173. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 437 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_celeri.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\15.htm" lrecl=2048; 437 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 438 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\15.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_celeri.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 303. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 303. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 439 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\17.htm" lrecl=2048; 439 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 440 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\17.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 347. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 347. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 441 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\19.htm" lrecl=2048; 441 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 442 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 443 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_denver.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\24.htm" lrecl=2048; 443 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 444 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\24.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_denver.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 245. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 245. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 445 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\27.htm" lrecl=2048; 445 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 446 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 447 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\29.htm" lrecl=2048; 447 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 448 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 449 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\30.htm" lrecl=2048; 449 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 450 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\30.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 293. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 293. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 451 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\37.htm" lrecl=2048; 451 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 452 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 453 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\42.htm" lrecl=2048; 453 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 454 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\42.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 291. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 291. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 455 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\43.htm" lrecl=2048; 455 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 456 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 457 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\44.htm" lrecl=2048; 457 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 458 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 459 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\47.htm" lrecl=2048; 459 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 460 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\47.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 461 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\52.htm" lrecl=2048; 461 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 462 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\52.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 392. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 392. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 463 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\54.htm" lrecl=2048; 463 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 464 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\54.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 465 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\55.htm" lrecl=2048; 465 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 466 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\55.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 348. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 348. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 467 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_pulchr.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\69.htm" lrecl=2048; 467 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 468 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\69.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_pulchr.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 431. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 431. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 469 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\70.htm" lrecl=2048; 469 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 470 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 471 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\72.htm" lrecl=2048; 471 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 472 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 473 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\73.htm" lrecl=2048; 473 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 474 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 475 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\77.htm" lrecl=2048; 475 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 476 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.18 seconds. NOTE: CALL EXECUTE generated line. 477 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\81.htm" lrecl=2048; 477 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 478 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 479 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\83.htm" lrecl=2048; 479 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 480 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 481 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\89.htm" lrecl=2048; 481 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 482 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\89.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 360. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 360. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 483 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\90.htm" lrecl=2048; 483 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 484 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 485 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\97.htm" lrecl=2048; 485 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 486 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\97.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 226. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 226. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 487 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\104.htm" lrecl=2048; 487 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 488 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 489 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KS\105.htm" lrecl=2048; 489 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 490 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KS\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 491 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KY\37.htm" lrecl=2048; 491 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 492 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KY\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 493 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KY\70.htm" lrecl=2048; 493 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 494 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KY\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 495 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\KY\74.htm" lrecl=2048; 495 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 496 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\KY\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 497 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\8.htm" lrecl=2048; 497 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 498 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\8.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 445. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 445. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 499 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\27.htm" lrecl=2048; 499 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 500 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 501 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\29.htm" lrecl=2048; 501 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 502 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 503 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\37.htm" lrecl=2048; 503 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 504 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 505 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\44.htm" lrecl=2048; 505 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 506 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 507 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\46.htm" lrecl=2048; 507 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 508 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 509 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\48.htm" lrecl=2048; 509 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 510 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 511 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\70.htm" lrecl=2048; 511 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 512 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 513 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\72.htm" lrecl=2048; 513 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 514 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 515 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\73.htm" lrecl=2048; 515 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 516 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 517 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\77.htm" lrecl=2048; 517 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 518 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 519 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\81.htm" lrecl=2048; 519 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 520 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 521 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ME\90.htm" lrecl=2048; 521 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 522 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ME\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 523 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\6.htm" lrecl=2048; 523 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 524 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\6.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 525 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\8.htm" lrecl=2048; 525 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 526 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\8.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 445. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 445. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 527 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\26.htm" lrecl=2048; 527 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 528 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 529 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\27.htm" lrecl=2048; 529 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 530 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 531 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\29.htm" lrecl=2048; 531 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 532 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 533 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\37.htm" lrecl=2048; 533 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 534 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 535 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\43.htm" lrecl=2048; 535 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 536 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 537 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\48.htm" lrecl=2048; 537 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 538 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 539 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\62.htm" lrecl=2048; 539 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 540 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 541 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\70.htm" lrecl=2048; 541 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 542 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 543 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purita.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\71.htm" lrecl=2048; 543 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 544 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\71.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purita.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 408. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 408. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 545 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\72.htm" lrecl=2048; 545 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 546 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 547 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\73.htm" lrecl=2048; 547 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 548 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 549 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\74.htm" lrecl=2048; 549 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 550 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 551 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\77.htm" lrecl=2048; 551 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 552 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 553 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\81.htm" lrecl=2048; 553 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 554 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 555 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\83.htm" lrecl=2048; 555 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 556 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 557 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\90.htm" lrecl=2048; 557 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 558 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 559 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\91.htm" lrecl=2048; 559 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 560 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\91.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 244. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 244. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 561 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\92.htm" lrecl=2048; 561 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 562 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 563 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\104.htm" lrecl=2048; 563 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 564 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 565 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MD\105.htm" lrecl=2048; 565 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 566 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MD\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 567 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MA\37.htm" lrecl=2048; 567 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 568 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MA\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 569 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MA\73.htm" lrecl=2048; 569 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 570 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MA\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 571 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\27.htm" lrecl=2048; 571 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 572 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 573 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\29.htm" lrecl=2048; 573 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 574 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 575 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\37.htm" lrecl=2048; 575 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 576 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 577 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\43.htm" lrecl=2048; 577 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 578 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 579 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\44.htm" lrecl=2048; 579 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 580 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 581 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\46.htm" lrecl=2048; 581 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 582 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 583 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\47.htm" lrecl=2048; 583 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 584 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\47.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 585 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\62.htm" lrecl=2048; 585 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 586 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 587 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\70.htm" lrecl=2048; 587 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 588 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 589 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\72.htm" lrecl=2048; 589 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 590 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 591 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\73.htm" lrecl=2048; 591 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 592 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 593 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\77.htm" lrecl=2048; 593 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 594 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 595 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\81.htm" lrecl=2048; 595 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 596 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 597 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MI\90.htm" lrecl=2048; 597 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 598 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MI\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 599 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\19.htm" lrecl=2048; 599 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 600 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 601 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\27.htm" lrecl=2048; 601 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 602 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 603 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\29.htm" lrecl=2048; 603 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 604 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 605 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\37.htm" lrecl=2048; 605 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 606 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 607 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\43.htm" lrecl=2048; 607 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 608 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 609 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\44.htm" lrecl=2048; 609 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 610 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 611 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\46.htm" lrecl=2048; 611 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 612 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 613 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\51.htm" lrecl=2048; 613 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 614 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 615 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\70.htm" lrecl=2048; 615 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 616 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 617 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\72.htm" lrecl=2048; 617 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 618 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 619 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\77.htm" lrecl=2048; 619 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 620 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 621 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\81.htm" lrecl=2048; 621 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 622 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 623 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\83.htm" lrecl=2048; 623 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 624 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 625 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MN\90.htm" lrecl=2048; 625 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 626 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MN\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 627 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\6.htm" lrecl=2048; 627 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 628 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\6.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 629 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_blanda.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\12.htm" lrecl=2048; 629 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 630 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\12.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_blanda.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 426. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 426. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 631 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\19.htm" lrecl=2048; 631 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 632 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 633 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\20.htm" lrecl=2048; 633 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 634 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\20.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 324. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 324. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 635 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\26.htm" lrecl=2048; 635 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 636 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 637 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\27.htm" lrecl=2048; 637 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 638 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 639 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\29.htm" lrecl=2048; 639 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 640 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 641 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\37.htm" lrecl=2048; 641 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 642 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 643 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\43.htm" lrecl=2048; 643 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 644 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 645 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\49.htm" lrecl=2048; 645 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 646 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\49.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 569. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 569. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 647 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\70.htm" lrecl=2048; 647 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 648 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 649 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\72.htm" lrecl=2048; 649 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 650 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 651 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\73.htm" lrecl=2048; 651 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 652 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 653 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\74.htm" lrecl=2048; 653 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 654 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 655 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\77.htm" lrecl=2048; 655 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 656 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 657 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\81.htm" lrecl=2048; 657 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 658 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 659 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\83.htm" lrecl=2048; 659 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 660 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 661 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\90.htm" lrecl=2048; 661 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 662 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 663 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\91.htm" lrecl=2048; 663 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 664 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\91.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 244. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 244. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 665 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\92.htm" lrecl=2048; 665 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 666 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 667 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_wapler.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\95.htm" lrecl=2048; 667 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 668 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\95.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_wapler.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 669 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MS\104.htm" lrecl=2048; 669 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 670 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MS\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 671 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MO\17.htm" lrecl=2048; 671 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 672 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MO\17.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 347. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 347. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 673 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MO\29.htm" lrecl=2048; 673 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 674 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MO\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 675 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MO\37.htm" lrecl=2048; 675 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 676 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MO\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 677 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MO\72.htm" lrecl=2048; 677 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 678 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MO\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 679 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MO\73.htm" lrecl=2048; 679 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 680 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MO\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 681 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MO\83.htm" lrecl=2048; 681 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 682 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MO\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 683 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MO\90.htm" lrecl=2048; 683 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 684 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MO\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 685 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MT\37.htm" lrecl=2048; 685 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 686 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MT\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 687 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MT\46.htm" lrecl=2048; 687 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 688 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MT\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 689 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MT\51.htm" lrecl=2048; 689 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 690 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MT\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 691 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MT\59.htm" lrecl=2048; 691 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 692 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MT\59.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 237. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 237. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 693 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MT\72.htm" lrecl=2048; 693 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 694 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MT\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 695 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MT\73.htm" lrecl=2048; 695 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 696 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MT\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 697 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MT\87.htm" lrecl=2048; 697 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 698 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MT\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 699 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\MT\90.htm" lrecl=2048; 699 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 700 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\MT\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 701 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\2.htm" lrecl=2048; 701 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 702 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\2.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 464. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 464. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 703 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_celeri.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\15.htm" lrecl=2048; 703 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 704 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\15.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_celeri.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 303. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 303. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 705 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\17.htm" lrecl=2048; 705 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 706 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\17.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 347. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 347. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 707 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\19.htm" lrecl=2048; 707 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 708 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 709 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\20.htm" lrecl=2048; 709 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 710 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\20.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 324. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 324. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 711 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_denver.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\24.htm" lrecl=2048; 711 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 712 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\24.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_denver.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 245. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 245. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 713 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\27.htm" lrecl=2048; 713 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 714 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 715 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\29.htm" lrecl=2048; 715 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 716 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 717 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\30.htm" lrecl=2048; 717 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 718 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\30.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 293. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 293. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 719 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\37.htm" lrecl=2048; 719 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 720 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 721 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\42.htm" lrecl=2048; 721 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 722 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\42.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 291. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 291. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 723 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\43.htm" lrecl=2048; 723 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 724 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 725 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\44.htm" lrecl=2048; 725 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 726 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 727 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\45.htm" lrecl=2048; 727 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 728 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\45.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 227. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 227. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 729 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\46.htm" lrecl=2048; 729 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 730 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 731 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\47.htm" lrecl=2048; 731 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 732 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\47.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 733 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\51.htm" lrecl=2048; 733 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 734 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 735 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\52.htm" lrecl=2048; 735 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 736 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\52.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 392. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 392. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 737 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_pulchr.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\69.htm" lrecl=2048; 737 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 738 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\69.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_pulchr.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 431. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 431. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 739 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\70.htm" lrecl=2048; 739 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 740 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 741 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\72.htm" lrecl=2048; 741 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 742 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 743 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\73.htm" lrecl=2048; 743 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 744 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 745 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\77.htm" lrecl=2048; 745 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 746 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 747 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\81.htm" lrecl=2048; 747 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 748 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 749 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\83.htm" lrecl=2048; 749 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 750 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 751 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\87.htm" lrecl=2048; 751 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 752 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 753 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\89.htm" lrecl=2048; 753 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 754 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\89.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 360. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 360. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 755 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\90.htm" lrecl=2048; 755 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 756 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 757 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\104.htm" lrecl=2048; 757 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 758 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 759 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NE\105.htm" lrecl=2048; 759 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 760 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NE\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 761 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\34.htm" lrecl=2048; 761 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 762 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\34.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 223. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 223. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 763 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\37.htm" lrecl=2048; 763 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 764 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 765 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\46.htm" lrecl=2048; 765 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 766 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 767 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\51.htm" lrecl=2048; 767 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 768 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 769 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\52.htm" lrecl=2048; 769 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 770 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\52.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 392. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 392. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 771 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\59.htm" lrecl=2048; 771 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 772 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\59.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 237. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 237. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 773 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\70.htm" lrecl=2048; 773 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 774 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 775 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\72.htm" lrecl=2048; 775 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 776 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 777 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tenuis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\86.htm" lrecl=2048; 777 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 778 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\86.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tenuis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 227. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 227. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 779 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\87.htm" lrecl=2048; 779 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 780 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 781 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\90.htm" lrecl=2048; 781 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 782 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 783 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\97.htm" lrecl=2048; 783 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 784 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\97.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 226. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 226. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 785 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NV\104.htm" lrecl=2048; 785 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 786 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NV\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 787 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\8.htm" lrecl=2048; 787 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 788 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\8.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 445. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 445. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 789 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\27.htm" lrecl=2048; 789 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 790 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 791 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\29.htm" lrecl=2048; 791 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 792 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 793 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\37.htm" lrecl=2048; 793 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 794 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 795 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\44.htm" lrecl=2048; 795 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 796 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 797 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\46.htm" lrecl=2048; 797 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 798 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 799 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\48.htm" lrecl=2048; 799 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 800 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 801 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\49.htm" lrecl=2048; 801 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 802 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\49.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 569. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 569. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 803 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\62.htm" lrecl=2048; 803 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 804 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 805 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\70.htm" lrecl=2048; 805 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 806 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 807 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purita.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\71.htm" lrecl=2048; 807 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 808 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\71.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purita.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 408. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 408. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 809 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\72.htm" lrecl=2048; 809 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 810 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 811 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\73.htm" lrecl=2048; 811 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 812 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 813 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\77.htm" lrecl=2048; 813 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 814 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 815 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\81.htm" lrecl=2048; 815 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 816 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 817 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NH\90.htm" lrecl=2048; 817 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 818 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NH\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 819 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\6.htm" lrecl=2048; 819 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 820 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\6.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 821 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\26.htm" lrecl=2048; 821 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 822 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 823 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\27.htm" lrecl=2048; 823 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 824 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 825 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\29.htm" lrecl=2048; 825 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 826 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 827 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\37.htm" lrecl=2048; 827 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 828 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 829 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\43.htm" lrecl=2048; 829 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 830 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 831 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\44.htm" lrecl=2048; 831 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 832 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 833 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\48.htm" lrecl=2048; 833 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 834 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 835 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\49.htm" lrecl=2048; 835 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 836 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\49.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 569. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 569. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 837 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\62.htm" lrecl=2048; 837 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 838 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 839 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\70.htm" lrecl=2048; 839 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 840 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 841 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\72.htm" lrecl=2048; 841 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 842 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 843 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\73.htm" lrecl=2048; 843 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 844 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 845 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\74.htm" lrecl=2048; 845 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 846 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 847 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\77.htm" lrecl=2048; 847 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 848 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 849 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\81.htm" lrecl=2048; 849 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 850 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 851 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\90.htm" lrecl=2048; 851 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 852 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 853 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\91.htm" lrecl=2048; 853 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 854 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\91.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 244. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 244. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 855 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\92.htm" lrecl=2048; 855 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 856 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 857 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NJ\105.htm" lrecl=2048; 857 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 858 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NJ\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 859 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\26.htm" lrecl=2048; 859 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 860 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 861 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\27.htm" lrecl=2048; 861 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 862 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 863 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\29.htm" lrecl=2048; 863 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 864 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 865 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\37.htm" lrecl=2048; 865 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 866 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 867 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\43.htm" lrecl=2048; 867 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 868 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 869 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\46.htm" lrecl=2048; 869 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 870 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 871 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\48.htm" lrecl=2048; 871 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 872 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 873 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\62.htm" lrecl=2048; 873 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 874 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 875 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\70.htm" lrecl=2048; 875 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 876 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 877 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\72.htm" lrecl=2048; 877 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 878 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 879 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\73.htm" lrecl=2048; 879 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 880 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 881 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\74.htm" lrecl=2048; 881 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 882 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 883 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\77.htm" lrecl=2048; 883 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 884 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 885 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\81.htm" lrecl=2048; 885 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 886 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 887 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NY\90.htm" lrecl=2048; 887 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 888 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NY\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 889 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\6.htm" lrecl=2048; 889 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 890 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\6.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 891 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\8.htm" lrecl=2048; 891 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 892 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\8.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 445. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 445. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 893 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_blanda.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\12.htm" lrecl=2048; 893 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 894 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\12.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_blanda.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 426. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 426. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 895 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\26.htm" lrecl=2048; 895 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 896 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 897 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\27.htm" lrecl=2048; 897 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 898 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 899 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\33.htm" lrecl=2048; 899 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 900 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\33.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 340. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 340. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 901 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\37.htm" lrecl=2048; 901 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 902 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 903 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\43.htm" lrecl=2048; 903 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 904 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 905 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\48.htm" lrecl=2048; 905 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 906 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 907 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigrio.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\53.htm" lrecl=2048; 907 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 908 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\53.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigrio.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 243. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 243. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 909 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\62.htm" lrecl=2048; 909 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 910 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 911 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\70.htm" lrecl=2048; 911 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 912 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 913 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\72.htm" lrecl=2048; 913 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 914 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 915 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\73.htm" lrecl=2048; 915 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 916 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 917 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\74.htm" lrecl=2048; 917 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 918 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 919 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\77.htm" lrecl=2048; 919 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 920 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 921 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\81.htm" lrecl=2048; 921 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 922 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 923 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\83.htm" lrecl=2048; 923 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 924 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 925 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\90.htm" lrecl=2048; 925 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 926 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 927 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\91.htm" lrecl=2048; 927 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 928 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\91.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 244. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 244. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 929 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\92.htm" lrecl=2048; 929 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 930 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 931 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\104.htm" lrecl=2048; 931 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 932 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 933 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\NC\105.htm" lrecl=2048; 933 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 934 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\NC\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 935 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ND\17.htm" lrecl=2048; 935 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 936 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ND\17.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 347. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 347. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 937 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ND\20.htm" lrecl=2048; 937 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 938 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ND\20.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 324. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 324. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 939 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ND\30.htm" lrecl=2048; 939 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 940 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ND\30.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 293. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 293. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 941 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ND\37.htm" lrecl=2048; 941 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 942 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ND\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 943 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\ND\87.htm" lrecl=2048; 943 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 944 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\ND\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 945 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\8.htm" lrecl=2048; 945 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 946 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\8.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 445. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 445. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 947 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\19.htm" lrecl=2048; 947 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 948 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 949 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\20.htm" lrecl=2048; 949 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 950 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\20.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 324. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 324. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 951 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\27.htm" lrecl=2048; 951 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 952 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 953 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\29.htm" lrecl=2048; 953 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 954 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 955 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\37.htm" lrecl=2048; 955 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 956 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 957 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\43.htm" lrecl=2048; 957 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 958 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 959 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\44.htm" lrecl=2048; 959 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 960 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 961 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\49.htm" lrecl=2048; 961 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 962 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\49.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 569. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 569. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 963 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\62.htm" lrecl=2048; 963 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 964 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 965 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\70.htm" lrecl=2048; 965 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 966 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 967 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\72.htm" lrecl=2048; 967 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 968 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 969 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\73.htm" lrecl=2048; 969 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 970 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 971 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\74.htm" lrecl=2048; 971 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 972 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 973 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\77.htm" lrecl=2048; 973 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 974 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 975 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\81.htm" lrecl=2048; 975 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 976 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 977 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\83.htm" lrecl=2048; 977 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 978 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 979 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\90.htm" lrecl=2048; 979 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 980 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 981 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\92.htm" lrecl=2048; 981 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 982 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 983 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OH\105.htm" lrecl=2048; 983 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 984 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OH\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 985 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\2.htm" lrecl=2048; 985 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 986 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\2.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 464. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 464. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 987 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_belfra.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\10.htm" lrecl=2048; 987 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 988 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\10.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_belfra.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 173. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 173. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 989 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_celeri.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\15.htm" lrecl=2048; 989 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 990 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\15.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_celeri.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 303. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 303. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 991 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\17.htm" lrecl=2048; 991 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 992 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\17.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 347. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 347. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 993 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\19.htm" lrecl=2048; 993 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 994 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 995 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\27.htm" lrecl=2048; 995 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 996 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 997 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\29.htm" lrecl=2048; 997 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 998 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 999 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\30.htm" lrecl=2048; 999 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1000 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\30.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 293. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 293. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1001 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\37.htm" lrecl=2048; 1001 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1002 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1003 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\42.htm" lrecl=2048; 1003 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 1004 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\42.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 291. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 291. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1005 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\43.htm" lrecl=2048; 1005 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1006 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1007 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\52.htm" lrecl=2048; 1007 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1008 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\52.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 392. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 392. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 1009 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\55.htm" lrecl=2048; 1009 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1010 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\55.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 348. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 348. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1011 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_pulchr.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\69.htm" lrecl=2048; 1011 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1012 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\69.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_pulchr.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 431. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 431. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1013 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\70.htm" lrecl=2048; 1013 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1014 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1015 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\72.htm" lrecl=2048; 1015 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1016 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1017 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\74.htm" lrecl=2048; 1017 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1018 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1019 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_schaup.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\76.htm" lrecl=2048; 1019 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1020 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\76.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_schaup.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 265. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 265. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1021 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\77.htm" lrecl=2048; 1021 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1022 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1023 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\81.htm" lrecl=2048; 1023 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1024 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1025 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\83.htm" lrecl=2048; 1025 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1026 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1027 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\89.htm" lrecl=2048; 1027 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1028 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\89.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 360. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 360. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1029 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\90.htm" lrecl=2048; 1029 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1030 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1031 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\97.htm" lrecl=2048; 1031 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1032 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\97.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 226. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 226. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1033 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OK\104.htm" lrecl=2048; 1033 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 1034 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OK\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1035 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_bellis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OR\11.htm" lrecl=2048; 1035 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1036 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OR\11.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_bellis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 482. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 482. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1037 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OR\34.htm" lrecl=2048; 1037 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1038 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OR\34.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 223. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 223. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1039 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OR\37.htm" lrecl=2048; 1039 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1040 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OR\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1041 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OR\46.htm" lrecl=2048; 1041 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1042 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OR\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1043 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OR\51.htm" lrecl=2048; 1043 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1044 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OR\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1045 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OR\59.htm" lrecl=2048; 1045 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1046 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OR\59.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 237. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 237. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1047 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OR\72.htm" lrecl=2048; 1047 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1048 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OR\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1049 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OR\73.htm" lrecl=2048; 1049 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1050 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OR\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1051 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OR\87.htm" lrecl=2048; 1051 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1052 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OR\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1053 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OR\90.htm" lrecl=2048; 1053 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1054 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OR\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1055 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\OR\97.htm" lrecl=2048; 1055 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1056 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\OR\97.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 226. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 226. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1057 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\PA\29.htm" lrecl=2048; 1057 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1058 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\PA\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1059 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\PA\37.htm" lrecl=2048; 1059 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1060 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\PA\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1061 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\PA\43.htm" lrecl=2048; 1061 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1062 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\PA\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1063 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\PA\44.htm" lrecl=2048; 1063 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1064 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\PA\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1065 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\PA\70.htm" lrecl=2048; 1065 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1066 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\PA\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1067 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\PA\73.htm" lrecl=2048; 1067 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1068 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\PA\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1069 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\PA\74.htm" lrecl=2048; 1069 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1070 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\PA\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1071 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\PA\81.htm" lrecl=2048; 1071 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1072 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\PA\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1073 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\PA\90.htm" lrecl=2048; 1073 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1074 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\PA\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1075 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\RI\26.htm" lrecl=2048; 1075 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1076 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\RI\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1077 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\RI\37.htm" lrecl=2048; 1077 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1078 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\RI\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1079 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\RI\44.htm" lrecl=2048; 1079 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1080 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\RI\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1081 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\RI\62.htm" lrecl=2048; 1081 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1082 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\RI\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1083 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\RI\70.htm" lrecl=2048; 1083 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1084 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\RI\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1085 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\6.htm" lrecl=2048; 1085 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 1086 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\6.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1087 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_blanda.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\12.htm" lrecl=2048; 1087 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1088 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\12.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_blanda.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 426. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 426. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1089 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\26.htm" lrecl=2048; 1089 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1090 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1091 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\27.htm" lrecl=2048; 1091 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1092 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1093 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\33.htm" lrecl=2048; 1093 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1094 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\33.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 340. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 340. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1095 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\37.htm" lrecl=2048; 1095 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1096 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1097 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\48.htm" lrecl=2048; 1097 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1098 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1099 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigrio.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\53.htm" lrecl=2048; 1099 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1100 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\53.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigrio.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 243. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 243. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1101 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\62.htm" lrecl=2048; 1101 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1102 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1103 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\70.htm" lrecl=2048; 1103 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1104 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1105 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\72.htm" lrecl=2048; 1105 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1106 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1107 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\73.htm" lrecl=2048; 1107 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1108 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1109 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\74.htm" lrecl=2048; 1109 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1110 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1111 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\77.htm" lrecl=2048; 1111 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1112 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1113 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\81.htm" lrecl=2048; 1113 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1114 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1115 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\83.htm" lrecl=2048; 1115 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1116 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1117 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_striga.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\84.htm" lrecl=2048; 1117 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1118 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\84.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_striga.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 245. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 245. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1119 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\89.htm" lrecl=2048; 1119 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1120 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\89.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 360. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 360. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1121 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\90.htm" lrecl=2048; 1121 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1122 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1123 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\91.htm" lrecl=2048; 1123 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1124 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\91.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 244. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 244. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1125 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\92.htm" lrecl=2048; 1125 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1126 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1127 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\104.htm" lrecl=2048; 1127 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 1128 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1129 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SC\105.htm" lrecl=2048; 1129 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 1130 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SC\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1131 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\2.htm" lrecl=2048; 1131 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 1132 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\2.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 464. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 464. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1133 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\19.htm" lrecl=2048; 1133 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1134 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1135 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\20.htm" lrecl=2048; 1135 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1136 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\20.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 324. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 324. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1137 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_denver.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\24.htm" lrecl=2048; 1137 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1138 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\24.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_denver.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 245. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 245. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1139 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\27.htm" lrecl=2048; 1139 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1140 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1141 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\29.htm" lrecl=2048; 1141 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1142 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1143 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\37.htm" lrecl=2048; 1143 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1144 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1145 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\42.htm" lrecl=2048; 1145 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 1146 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\42.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 291. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 291. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1147 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\44.htm" lrecl=2048; 1147 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1148 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1149 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\45.htm" lrecl=2048; 1149 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1150 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\45.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 227. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 227. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1151 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\46.htm" lrecl=2048; 1151 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1152 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1153 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\51.htm" lrecl=2048; 1153 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1154 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1155 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\72.htm" lrecl=2048; 1155 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1156 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1157 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\73.htm" lrecl=2048; 1157 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1158 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1159 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\77.htm" lrecl=2048; 1159 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1160 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1161 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\81.htm" lrecl=2048; 1161 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1162 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1163 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\83.htm" lrecl=2048; 1163 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1164 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1165 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\87.htm" lrecl=2048; 1165 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1166 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1167 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\SD\90.htm" lrecl=2048; 1167 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1168 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\SD\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1169 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\2.htm" lrecl=2048; 1169 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 1170 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\2.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 464. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 464. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1171 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_picolo.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\4.htm" lrecl=2048; 1171 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 1172 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\4.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_picolo.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 397. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 397. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1173 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_belfra.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\10.htm" lrecl=2048; 1173 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1174 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\10.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_belfra.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 173. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 173. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1175 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\17.htm" lrecl=2048; 1175 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1176 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\17.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 347. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 347. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1177 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\19.htm" lrecl=2048; 1177 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1178 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1179 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\26.htm" lrecl=2048; 1179 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1180 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1181 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\29.htm" lrecl=2048; 1181 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1182 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1183 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\37.htm" lrecl=2048; 1183 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1184 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1185 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\43.htm" lrecl=2048; 1185 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1186 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1187 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\52.htm" lrecl=2048; 1187 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1188 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\52.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 392. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 392. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1189 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\54.htm" lrecl=2048; 1189 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1190 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\54.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1191 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\55.htm" lrecl=2048; 1191 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1192 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\55.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 348. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 348. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1193 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_politu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\66.htm" lrecl=2048; 1193 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1194 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\66.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_politu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 409. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 409. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1195 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\70.htm" lrecl=2048; 1195 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1196 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1197 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\73.htm" lrecl=2048; 1197 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1198 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 1199 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\74.htm" lrecl=2048; 1199 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1200 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1201 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_schaup.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\76.htm" lrecl=2048; 1201 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1202 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\76.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_schaup.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 265. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 265. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1203 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\77.htm" lrecl=2048; 1203 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1204 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1205 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sedeci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\78.htm" lrecl=2048; 1205 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1206 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\78.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sedeci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 329. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 329. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1207 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\81.htm" lrecl=2048; 1207 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1208 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1209 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sperat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\82.htm" lrecl=2048; 1209 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1210 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\82.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sperat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 208. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 208. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1211 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\83.htm" lrecl=2048; 1211 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1212 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1213 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tenuis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\86.htm" lrecl=2048; 1213 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1214 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\86.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tenuis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 227. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 227. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1215 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\89.htm" lrecl=2048; 1215 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1216 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\89.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 360. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 360. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1217 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\90.htm" lrecl=2048; 1217 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1218 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1219 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\91.htm" lrecl=2048; 1219 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1220 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\91.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 244. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 244. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1221 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\97.htm" lrecl=2048; 1221 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1222 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\97.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 226. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 226. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1223 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\104.htm" lrecl=2048; 1223 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 1224 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1225 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\TX\105.htm" lrecl=2048; 1225 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 1226 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\TX\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1227 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_decemn.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\22.htm" lrecl=2048; 1227 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1228 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\22.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_decemn.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1229 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\30.htm" lrecl=2048; 1229 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1230 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\30.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 293. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 293. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1231 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\34.htm" lrecl=2048; 1231 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1232 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\34.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 223. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 223. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1233 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\37.htm" lrecl=2048; 1233 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1234 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1235 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\45.htm" lrecl=2048; 1235 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1236 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\45.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 227. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 227. NOTE: The DATA statement used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1237 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\46.htm" lrecl=2048; 1237 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1238 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1239 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\51.htm" lrecl=2048; 1239 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1240 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1241 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\54.htm" lrecl=2048; 1241 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1242 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\54.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1243 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\59.htm" lrecl=2048; 1243 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1244 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\59.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 237. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 237. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1245 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\70.htm" lrecl=2048; 1245 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1246 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1247 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\72.htm" lrecl=2048; 1247 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1248 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1249 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\73.htm" lrecl=2048; 1249 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1250 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 1251 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sperat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\82.htm" lrecl=2048; 1251 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1252 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\82.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sperat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 208. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 208. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1253 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tenuis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\86.htm" lrecl=2048; 1253 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1254 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\86.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tenuis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 227. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 227. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1255 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\87.htm" lrecl=2048; 1255 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1256 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1257 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\89.htm" lrecl=2048; 1257 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1258 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\89.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 360. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 360. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1259 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\90.htm" lrecl=2048; 1259 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1260 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1261 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\UT\97.htm" lrecl=2048; 1261 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1262 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\UT\97.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 226. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 226. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1263 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\8.htm" lrecl=2048; 1263 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 1264 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\8.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 445. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 445. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1265 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\27.htm" lrecl=2048; 1265 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1266 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1267 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\29.htm" lrecl=2048; 1267 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1268 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 1269 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\37.htm" lrecl=2048; 1269 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1270 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1271 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\44.htm" lrecl=2048; 1271 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1272 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1273 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\46.htm" lrecl=2048; 1273 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1274 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1275 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\49.htm" lrecl=2048; 1275 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1276 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\49.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 569. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 569. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1277 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\62.htm" lrecl=2048; 1277 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1278 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1279 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\70.htm" lrecl=2048; 1279 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1280 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1281 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purita.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\71.htm" lrecl=2048; 1281 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1282 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\71.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purita.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 408. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 408. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 1283 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\72.htm" lrecl=2048; 1283 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1284 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1285 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\73.htm" lrecl=2048; 1285 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1286 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1287 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\74.htm" lrecl=2048; 1287 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1288 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1289 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\77.htm" lrecl=2048; 1289 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1290 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1291 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\81.htm" lrecl=2048; 1291 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1292 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1293 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VT\90.htm" lrecl=2048; 1293 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1294 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VT\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1295 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\6.htm" lrecl=2048; 1295 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 1296 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\6.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1297 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\8.htm" lrecl=2048; 1297 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 1298 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\8.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 445. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 445. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1299 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\26.htm" lrecl=2048; 1299 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1300 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1301 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\27.htm" lrecl=2048; 1301 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1302 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1303 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\29.htm" lrecl=2048; 1303 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1304 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1305 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\33.htm" lrecl=2048; 1305 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1306 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\33.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 340. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 340. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1307 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\37.htm" lrecl=2048; 1307 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1308 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1309 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\43.htm" lrecl=2048; 1309 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1310 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1311 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\44.htm" lrecl=2048; 1311 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1312 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1313 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\48.htm" lrecl=2048; 1313 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1314 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1315 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\62.htm" lrecl=2048; 1315 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1316 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1317 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\70.htm" lrecl=2048; 1317 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1318 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1319 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\72.htm" lrecl=2048; 1319 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1320 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1321 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\73.htm" lrecl=2048; 1321 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1322 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1323 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\74.htm" lrecl=2048; 1323 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1324 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1325 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\77.htm" lrecl=2048; 1325 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1326 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1327 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\81.htm" lrecl=2048; 1327 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1328 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1329 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\83.htm" lrecl=2048; 1329 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1330 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1331 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\90.htm" lrecl=2048; 1331 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1332 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1333 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\91.htm" lrecl=2048; 1333 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1334 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\91.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 244. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 244. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1335 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\92.htm" lrecl=2048; 1335 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1336 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1337 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\104.htm" lrecl=2048; 1337 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 1338 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1339 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\VA\105.htm" lrecl=2048; 1339 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 1340 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\VA\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1341 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_bellis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WA\11.htm" lrecl=2048; 1341 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1342 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WA\11.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_bellis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 482. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 482. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1343 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_decemn.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WA\22.htm" lrecl=2048; 1343 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1344 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WA\22.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_decemn.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1345 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WA\34.htm" lrecl=2048; 1345 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1346 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WA\34.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 223. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 223. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1347 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WA\37.htm" lrecl=2048; 1347 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1348 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WA\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1349 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WA\46.htm" lrecl=2048; 1349 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1350 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WA\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1351 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WA\51.htm" lrecl=2048; 1351 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1352 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WA\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1353 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WA\59.htm" lrecl=2048; 1353 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1354 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WA\59.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 237. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 237. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 1355 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WA\72.htm" lrecl=2048; 1355 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1356 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WA\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1357 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WA\73.htm" lrecl=2048; 1357 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1358 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WA\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1359 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WA\87.htm" lrecl=2048; 1359 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1360 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WA\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1361 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WA\90.htm" lrecl=2048; 1361 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1362 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WA\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1363 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\8.htm" lrecl=2048; 1363 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 1364 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\8.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 445. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 445. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1365 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\19.htm" lrecl=2048; 1365 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1366 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1367 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\20.htm" lrecl=2048; 1367 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1368 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\20.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 324. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 324. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1369 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\27.htm" lrecl=2048; 1369 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1370 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1371 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\29.htm" lrecl=2048; 1371 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1372 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1373 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\49.htm" lrecl=2048; 1373 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1374 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\49.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 569. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 569. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1375 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\62.htm" lrecl=2048; 1375 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1376 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1377 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\70.htm" lrecl=2048; 1377 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1378 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1379 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\72.htm" lrecl=2048; 1379 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1380 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1381 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\73.htm" lrecl=2048; 1381 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1382 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1383 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\74.htm" lrecl=2048; 1383 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1384 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1385 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\77.htm" lrecl=2048; 1385 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1386 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1387 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\81.htm" lrecl=2048; 1387 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1388 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1389 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\83.htm" lrecl=2048; 1389 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1390 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1391 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\90.htm" lrecl=2048; 1391 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1392 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1393 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\92.htm" lrecl=2048; 1393 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1394 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1395 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WV\105.htm" lrecl=2048; 1395 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 1396 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WV\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1397 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WI\37.htm" lrecl=2048; 1397 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1398 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WI\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1399 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WI\83.htm" lrecl=2048; 1399 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1400 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WI\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1401 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WI\105.htm" lrecl=2048; 1401 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 1402 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WI\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1403 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\2.htm" lrecl=2048; 1403 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 1404 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\2.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 464. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 464. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 1405 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_decemn.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\22.htm" lrecl=2048; 1405 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1406 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\22.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_decemn.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 1407 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\29.htm" lrecl=2048; 1407 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1408 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1409 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\30.htm" lrecl=2048; 1409 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1410 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\30.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 293. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 293. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1411 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\34.htm" lrecl=2048; 1411 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1412 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\34.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 223. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 223. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1413 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\37.htm" lrecl=2048; 1413 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1414 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1415 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\42.htm" lrecl=2048; 1415 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Run NOTE: CALL EXECUTE generated line. 1416 +; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\42.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 291. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 291. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1417 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\44.htm" lrecl=2048; 1417 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1418 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 1419 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\45.htm" lrecl=2048; 1419 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1420 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\45.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 227. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 227. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1421 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\51.htm" lrecl=2048; 1421 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1422 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 1423 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\59.htm" lrecl=2048; 1423 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1424 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\59.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 237. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 237. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1425 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\70.htm" lrecl=2048; 1425 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1426 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1427 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\72.htm" lrecl=2048; 1427 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1428 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 1429 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\77.htm" lrecl=2048; 1429 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1430 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1431 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\87.htm" lrecl=2048; 1431 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1432 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1433 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\90.htm" lrecl=2048; 1433 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1434 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 1435 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\WY\97.htm" lrecl=2048; 1435 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 1436 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\WY\97.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 226. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 226. NOTE: The DATA statement used 0.07 seconds. NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 2083:140 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\12.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\35.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\53.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\80.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\95.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\1.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\4.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\21.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\31.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\39.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\41.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\50.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\56.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\64.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\67.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\69.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\78.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\82.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\86.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\94.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\96.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\5.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\13.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\25.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\32.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\40.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\41.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\65.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\67.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\79.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\85.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\86.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\99.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\102.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\4.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\22.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\24.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\45.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\50.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\69.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\82.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\88.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\35.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\38.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\80.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\84.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\95.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\12.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\38.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\53.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\84.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\95.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\9.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\18.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\22.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\61.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\65.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IL\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IL\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\15.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\10.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\15.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\24.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\69.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KY\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KY\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KY\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\71.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MA\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\12.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\35.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\60.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\80.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\95.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\15.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\24.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\45.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\69.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\41.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\61.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\65.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\67.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\86.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\71.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\12.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\53.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\10.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\15.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\69.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\76.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\7.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\11.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\18.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\25.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\61.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\65.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\68.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\85.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\98.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\99.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\100.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\101.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\12.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\53.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\84.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\24.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\45.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\4.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\10.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\14.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\16.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\31.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\35.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\39.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\41.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\56.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\60.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\63.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\66.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\67.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\76.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\78.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\80.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\82.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\86.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\103.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\5.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\22.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\25.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\41.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\45.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\61.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\67.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\82.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\85.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\86.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\101.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\71.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\11.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\18.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\22.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\25.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\61.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\68.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\98.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\99.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\101.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WI\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WI\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WI\105.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\22.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\45.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\97.htm, RECFM=V,LRECL=256 NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: The DATA statement used 17.95 seconds. NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 2083:173 2083:208 NOTE: The DATA statement used 0.06 seconds. NOTE: Deleting WORK.HTMGIFS (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. NOTE: 6927 observations with duplicate key values were deleted. NOTE: The data set WORK.TOC has 794 observations and 32 variables. NOTE: The PROCEDURE SORT used 0.28 seconds. NOTE: The data set WORK.TOC has 794 observations and 32 variables. NOTE: The PROCEDURE SORT used 0.21 seconds. NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IL\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KY\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WI\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\toc.htm, RECFM=V,LRECL=256 NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 198. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 199. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 198. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 201. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 199. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 202. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 199. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 198. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 198. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 195. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 196. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 199. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 198. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 197. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 199. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 204. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 199. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 196. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 199. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 200. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 199. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 202. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 198. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 205. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 203. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 199. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 204. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 201. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 197. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 199. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 195. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 199. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 197. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 203. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 203. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 205. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 203. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 196. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 195. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 199. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 198. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 201. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 200. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 204. NOTE: 23 records were written to the file OUT. The minimum record length was 4. The maximum record length was 198. NOTE: The DATA statement used 1.34 seconds. NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IL\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KY\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WI\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\toc.htm, RECFM=V,LRECL=256 NOTE: 32 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 29 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 44 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 34 records were written to the file OUT. The minimum record length was 0. The maximum record length was 149. NOTE: 44 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 23 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 23 records were written to the file OUT. The minimum record length was 0. The maximum record length was 147. NOTE: 34 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 28 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 26 records were written to the file OUT. The minimum record length was 0. The maximum record length was 149. NOTE: 12 records were written to the file OUT. The minimum record length was 0. The maximum record length was 147. NOTE: 28 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 39 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 13 records were written to the file OUT. The minimum record length was 0. The maximum record length was 147. NOTE: 12 records were written to the file OUT. The minimum record length was 0. The maximum record length was 147. NOTE: 32 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 23 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 24 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 24 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 149. NOTE: 35 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 18 records were written to the file OUT. The minimum record length was 0. The maximum record length was 149. NOTE: 33 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 15 records were written to the file OUT. The minimum record length was 0. The maximum record length was 147. NOTE: 40 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 26 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 30 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 27 records were written to the file OUT. The minimum record length was 0. The maximum record length was 149. NOTE: 25 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 30 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 35 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 32 records were written to the file OUT. The minimum record length was 0. The maximum record length was 149. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 149. NOTE: 15 records were written to the file OUT. The minimum record length was 0. The maximum record length was 147. NOTE: 33 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 29 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 51 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 35 records were written to the file OUT. The minimum record length was 0. The maximum record length was 149. NOTE: 33 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 26 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 28 records were written to the file OUT. The minimum record length was 0. The maximum record length was 149. NOTE: 13 records were written to the file OUT. The minimum record length was 0. The maximum record length was 147. NOTE: 27 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: 27 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: The DATA statement used 1.59 seconds. NOTE: The file OUT is: FILENAME=c:\tigbnext\AL\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AR\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\AZ\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CO\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\CT\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\DE\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\FL\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\GA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ID\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IL\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\IN\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KS\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\KY\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MD\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ME\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MI\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MN\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MO\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MS\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\MT\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NC\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\ND\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NE\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NH\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NJ\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NV\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\NY\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OH\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OK\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\OR\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\PA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\RI\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SC\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\SD\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\TX\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\UT\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\VT\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WA\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WI\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WV\toc.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\WY\toc.htm, RECFM=V,LRECL=256 NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: 4 records were written to the file OUT. The minimum record length was 7. The maximum record length was 95. NOTE: The DATA statement used 1.2 seconds. NOTE: Deleting WORK.TOC (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. NOTE: The data set WORK.MAPS has 27372 observations and 7 variables. NOTE: The DATA statement used 0.48 seconds. NOTE: The data set WORK.MEX_CAL has 1054 observations and 7 variables. NOTE: The DATA statement used 0.12 seconds. NOTE: The data set WORK.TMPCOUNT has 354662 observations and 7 variables. NOTE: The DATA statement used 2.6 seconds. NOTE: The data set WORK.TMPCOUNT has 354662 observations and 6 variables. NOTE: The PROCEDURE SORT used 5.42 seconds. NOTE: The data set WORK.STATEMAP has 356049 observations and 7 variables. NOTE: The DATA statement used 2.0 seconds. NOTE: Deleting WORK.TMPCOUNT (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. NOTE: Libref GDEVICE0 was successfully assigned as follows: Engine: V612 Physical Name: m:\wwwbuild\sasprgs\lepids\sassrc\imggifs NOTE: Deleting WORK.MEX_CAL (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.01 seconds. NOTE: The data set WORK.BFLYS2 has 7721 observations and 32 variables. NOTE: The PROCEDURE SORT used 0.71 seconds. NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 2083:88 NOTE: The DATA statement used 0.68 seconds. NOTE: CALL EXECUTE generated line. 1 +Data Tempmap; set statemap; where state=1; NOTE: The data set WORK.TEMPMAP has 8451 observations and 7 variables. NOTE: The DATA statement used 0.51 seconds. 1 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 31.397648784. NOTE: PARALLEL2 = 33.804347901. NOTE: The data set WORK.TEMPMAP2 has 8451 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.4 seconds. 1 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. 1 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set bf NOTE: The data set WORK.TEMPMAPA has 876 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.21 seconds. NOTE: CALL EXECUTE generated line. 2 +lys2; where state=1; Run; NOTE: The data set WORK.BFLYTEMP has 48 observations and 32 variables. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 2 + Goptions Reset=Global Device=Mgif1 CBack=White Border; Run; 3 +Filename Gsasfile "c:\tigbnext\AL\maps\19.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 4 + 'Unconfirmed Records'); 4 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela abdominalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 5 +Id State County; run; NOTE: Entry MGIF1 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 5 + quit; NOTE: The PROCEDURE GMAP used 1.42 seconds. 5 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 5 + quit; NOTE: The PROCEDURE CATALOG used 0.34 seconds. NOTE: CALL EXECUTE generated line. 6 +Filename Gsasfile "c:\tigbnext\AL\maps\22.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 7 + 'Unconfirmed Records'); 7 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela blanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 8 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 8 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 8 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 8 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 9 +Filename Gsasfile "c:\tigbnext\AL\maps\7.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 10 + 'Unconfirmed Records'); 10 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 11 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 11 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 11 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 11 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 12 +Filename Gsasfile "c:\tigbnext\AL\maps\2.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 13 + 'Unconfirmed Records'); 13 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cursitans"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 14 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 14 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 14 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 14 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 15 +Filename Gsasfile "c:\tigbnext\AL\maps\1.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 16 + 'Unconfirmed Records'); 16 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 17 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 17 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 17 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 17 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 18 +Filename Gsasfile "c:\tigbnext\AL\maps\10.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 19 + 'Unconfirmed Records'); 19 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 20 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 20 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 20 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 20 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 21 +Filename Gsasfile "c:\tigbnext\AL\maps\17.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 22 + 'Unconfirmed Records'); 22 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela gratiosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 23 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 23 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 23 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 23 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 24 +Filename Gsasfile "c:\tigbnext\AL\maps\15.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 25 + 'Unconfirmed Records'); 25 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hamata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 26 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 26 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 26 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 26 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 27 +Filename Gsasfile "c:\tigbnext\AL\maps\8.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 28 + 'Unconfirmed Records'); 28 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 29 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 29 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 29 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 29 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 30 +Filename Gsasfile "c:\tigbnext\AL\maps\5.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 31 + 'Unconfirmed Records'); 31 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id Sta NOTE: CALL EXECUTE generated line. 32 +te County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 32 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 32 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 32 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 33 +Filename Gsasfile "c:\tigbnext\AL\maps\11.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 34 + 'Unconfirmed Records'); 34 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nigrior"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 35 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 35 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 35 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 35 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 36 +Filename Gsasfile "c:\tigbnext\AL\maps\14.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 37 + 'Unconfirmed Records'); 37 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 38 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 38 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 38 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 38 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 39 +Filename Gsasfile "c:\tigbnext\AL\maps\21.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 40 + 'Unconfirmed Records'); 40 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 41 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 41 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 41 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 41 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 42 +Filename Gsasfile "c:\tigbnext\AL\maps\3.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 43 + 'Unconfirmed Records'); 43 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 44 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 44 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 44 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 44 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 45 +Filename Gsasfile "c:\tigbnext\AL\maps\20.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 46 + 'Unconfirmed Records'); 46 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 47 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 47 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 47 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 47 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 48 +Filename Gsasfile "c:\tigbnext\AL\maps\12.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 49 + 'Unconfirmed Records'); 49 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 50 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 50 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 50 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 50 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 51 +Filename Gsasfile "c:\tigbnext\AL\maps\18.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 52 + 'Unconfirmed Records'); 52 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela severa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 53 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 53 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 53 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 53 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 54 +Filename Gsasfile "c:\tigbnext\AL\maps\16.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 55 + 'Unconfirmed Records'); 55 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 56 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 56 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 56 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 56 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 57 +Filename Gsasfile "c:\tigbnext\AL\maps\9.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 58 + 'Unconfirmed Records'); 58 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela togata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id Sta NOTE: CALL EXECUTE generated line. 59 +te County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 59 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 59 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 59 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 60 +Filename Gsasfile "c:\tigbnext\AL\maps\6.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 61 + 'Unconfirmed Records'); 61 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela trifasciata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 62 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 62 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 62 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 62 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 63 +Filename Gsasfile "c:\tigbnext\AL\maps\13.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 64 + 'Unconfirmed Records'); 64 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 65 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 65 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 65 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 65 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 66 +Filename Gsasfile "c:\tigbnext\AL\maps\4.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 67 + 'Unconfirmed Records'); 67 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela wapleri"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 68 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 68 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 68 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 68 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 69 +Data Tempmap; set statemap; where state=4; NOTE: The data set WORK.TEMPMAP has 3806 observations and 7 variables. NOTE: The DATA statement used 0.5 seconds. 69 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 32.749391032. NOTE: PARALLEL2 = 35.584957727. NOTE: The data set WORK.TEMPMAP2 has 3806 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.21 seconds. 69 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 69 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set bf NOTE: The data set WORK.TEMPMAPA has 746 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 70 +lys2; where state=4; Run; NOTE: The data set WORK.BFLYTEMP has 163 observations and 32 variables. NOTE: The DATA statement used 0.18 seconds. NOTE: CALL EXECUTE generated line. 70 + Goptions Reset=Global Device=Mgif4 CBack=White Border; Run; 71 +Filename Gsasfile "c:\tigbnext\AZ\maps\50.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 72 + 'Unconfirmed Records'); 72 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila baroni"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 73 +State County; run; NOTE: Entry MGIF4 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 73 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 73 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 73 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 74 +Filename Gsasfile "c:\tigbnext\AZ\maps\53.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 75 + 'Unconfirmed Records'); 75 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila picolominii"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 76 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 76 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 76 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 76 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 77 +Filename Gsasfile "c:\tigbnext\AZ\maps\52.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 78 + 'Unconfirmed Records'); 78 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela debilis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 79 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 79 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 79 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 79 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 80 +Filename Gsasfile "c:\tigbnext\AZ\maps\42.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 81 + 'Unconfirmed Records'); 81 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela fulgida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 82 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 82 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 82 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 82 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 83 +Filename Gsasfile "c:\tigbnext\AZ\maps\43.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 84 + 'Unconfirmed Records'); 84 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela fulgoris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 85 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 85 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 85 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 85 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 86 +Filename Gsasfile "c:\tigbnext\AZ\maps\67.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 87 + 'Unconfirmed Records'); 87 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela haemorrhagica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 88 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 88 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 88 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 88 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 89 +Filename Gsasfile "c:\tigbnext\AZ\maps\64.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 90 + 'Unconfirmed Records'); 90 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 91 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 91 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 91 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 91 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 92 +Filename Gsasfile "c:\tigbnext\AZ\maps\46.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 93 + 'Unconfirmed Records'); 93 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hornii"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 94 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 94 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 94 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 94 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 95 +Filename Gsasfile "c:\tigbnext\AZ\maps\57.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 96 + 'Unconfirmed Records'); 96 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lemniscata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 97 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 97 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 97 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 97 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 98 +Filename Gsasfile "c:\tigbnext\AZ\maps\68.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 99 + 'Unconfirmed Records'); 99 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lengi"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id Sta NOTE: CALL EXECUTE generated line. 100 +te County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 100 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 100 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 100 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 101 +Filename Gsasfile "c:\tigbnext\AZ\maps\45.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 102 + 'Unconfirmed Records'); 102 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 103 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 103 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 103 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 103 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 104 +Filename Gsasfile "c:\tigbnext\AZ\maps\73.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 105 + 'Unconfirmed Records'); 105 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 106 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 106 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 106 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 106 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 107 +Filename Gsasfile "c:\tigbnext\AZ\maps\55.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 108 + 'Unconfirmed Records'); 108 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela macra"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id Sta NOTE: CALL EXECUTE generated line. 109 +te County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 109 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 109 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 109 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 110 +Filename Gsasfile "c:\tigbnext\AZ\maps\74.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 111 + 'Unconfirmed Records'); 111 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marutha"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 112 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 112 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 112 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 112 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 113 +Filename Gsasfile "c:\tigbnext\AZ\maps\56.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 114 + 'Unconfirmed Records'); 114 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 115 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 115 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 115 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 115 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 116 +Filename Gsasfile "c:\tigbnext\AZ\maps\66.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 117 + 'Unconfirmed Records'); 117 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nevadica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 118 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 118 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 118 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 118 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 119 +Filename Gsasfile "c:\tigbnext\AZ\maps\60.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 120 + 'Unconfirmed Records'); 120 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nigrocoerulea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 121 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 121 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 121 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 121 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 122 +Filename Gsasfile "c:\tigbnext\AZ\maps\65.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 123 + 'Unconfirmed Records'); 123 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela obsoleta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 124 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 124 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 124 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 124 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 125 +Filename Gsasfile "c:\tigbnext\AZ\maps\61.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 126 + 'Unconfirmed Records'); 126 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela ocellata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 127 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 127 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 127 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 127 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 128 +Filename Gsasfile "c:\tigbnext\AZ\maps\70.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 129 + 'Unconfirmed Records'); 129 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela oregona"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 130 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 130 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 130 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 130 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 131 +Filename Gsasfile "c:\tigbnext\AZ\maps\48.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 132 + 'Unconfirmed Records'); 132 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela pimeriana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 133 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 133 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 133 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 133 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 134 +Filename Gsasfile "c:\tigbnext\AZ\maps\51.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 135 + 'Unconfirmed Records'); 135 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela praetextata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 136 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 136 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 136 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 136 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 137 +Filename Gsasfile "c:\tigbnext\AZ\maps\69.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 138 + 'Unconfirmed Records'); 138 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela pulchra"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 139 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 139 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 139 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 139 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 140 +Filename Gsasfile "c:\tigbnext\AZ\maps\75.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 141 + 'Unconfirmed Records'); 141 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 142 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 142 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 142 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 142 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 143 +Filename Gsasfile "c:\tigbnext\AZ\maps\62.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 144 + 'Unconfirmed Records'); 144 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 145 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 145 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 145 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 145 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 146 +Filename Gsasfile "c:\tigbnext\AZ\maps\59.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 147 + 'Unconfirmed Records'); 147 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 148 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 148 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 148 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 148 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 149 +Filename Gsasfile "c:\tigbnext\AZ\maps\49.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 150 + 'Unconfirmed Records'); 150 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sedecimpunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 151 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 151 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 151 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 151 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 152 +Filename Gsasfile "c:\tigbnext\AZ\maps\54.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 153 + 'Unconfirmed Records'); 153 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sperata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 154 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 154 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 154 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 154 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 155 +Filename Gsasfile "c:\tigbnext\AZ\maps\71.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 156 + 'Unconfirmed Records'); 156 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tenuisignata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 157 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 157 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 157 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 157 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 158 +Filename Gsasfile "c:\tigbnext\AZ\maps\63.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 159 + 'Unconfirmed Records'); 159 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 160 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 160 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 160 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 160 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 161 +Filename Gsasfile "c:\tigbnext\AZ\maps\47.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 162 + 'Unconfirmed Records'); 162 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 163 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 163 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 163 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 163 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 164 +Filename Gsasfile "c:\tigbnext\AZ\maps\72.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 165 + 'Unconfirmed Records'); 165 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela viridisticta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 166 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 166 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 166 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 166 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 167 +Filename Gsasfile "c:\tigbnext\AZ\maps\44.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 168 + 'Unconfirmed Records'); 168 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela wickhami"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 169 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 169 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 169 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 169 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 170 +Filename Gsasfile "c:\tigbnext\AZ\maps\58.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 171 + 'Unconfirmed Records'); 171 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela willistoni"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 172 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 172 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 172 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 172 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 173 +Data Tempmap; set statemap; where state=5; NOTE: The data set WORK.TEMPMAP has 9690 observations and 7 variables. NOTE: The DATA statement used 0.56 seconds. 173 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 33.877833906. NOTE: PARALLEL2 = 35.625351465. NOTE: The data set WORK.TEMPMAP2 has 9690 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.2 seconds. 173 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 173 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set bf NOTE: The data set WORK.TEMPMAPA has 1363 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.2 seconds. NOTE: CALL EXECUTE generated line. 174 +lys2; where state=5; Run; NOTE: The data set WORK.BFLYTEMP has 233 observations and 32 variables. NOTE: The DATA statement used 0.18 seconds. NOTE: CALL EXECUTE generated line. 174 + Goptions Reset=Global Device=Mgif5 CBack=White Border; Run; 175 +Filename Gsasfile "c:\tigbnext\AR\maps\29.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 176 + 'Unconfirmed Records'); 176 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 177 +d State County; run; NOTE: Entry MGIF5 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 177 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 177 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 177 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 178 +Filename Gsasfile "c:\tigbnext\AR\maps\24.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 179 + 'Unconfirmed Records'); 179 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cursitans"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 180 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 180 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 180 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 180 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 181 +Filename Gsasfile "c:\tigbnext\AR\maps\32.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 182 + 'Unconfirmed Records'); 182 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 183 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 183 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 183 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 183 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 184 +Filename Gsasfile "c:\tigbnext\AR\maps\28.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 185 + 'Unconfirmed Records'); 185 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 186 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 186 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 186 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 186 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 187 +Filename Gsasfile "c:\tigbnext\AR\maps\30.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 188 + 'Unconfirmed Records'); 188 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 189 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 189 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 189 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 189 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 190 +Filename Gsasfile "c:\tigbnext\AR\maps\27.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 191 + 'Unconfirmed Records'); 191 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 192 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 192 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 192 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 192 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 193 +Filename Gsasfile "c:\tigbnext\AR\maps\37.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 194 + 'Unconfirmed Records'); 194 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela macra"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id Sta NOTE: CALL EXECUTE generated line. 195 +te County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 195 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 195 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 195 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 196 +Filename Gsasfile "c:\tigbnext\AR\maps\31.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 197 + 'Unconfirmed Records'); 197 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela obsoleta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 198 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 198 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 198 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 198 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 199 +Filename Gsasfile "c:\tigbnext\AR\maps\41.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 200 + 'Unconfirmed Records'); 200 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 201 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 201 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 201 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 201 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 202 +Filename Gsasfile "c:\tigbnext\AR\maps\26.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 203 + 'Unconfirmed Records'); 203 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 204 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 204 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 204 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 204 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 205 +Filename Gsasfile "c:\tigbnext\AR\maps\25.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 206 + 'Unconfirmed Records'); 206 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 207 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 207 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 207 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 207 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 208 +Filename Gsasfile "c:\tigbnext\AR\maps\40.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 209 + 'Unconfirmed Records'); 209 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 210 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 210 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 210 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 210 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 211 +Filename Gsasfile "c:\tigbnext\AR\maps\34.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 212 + 'Unconfirmed Records'); 212 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 213 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 213 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 213 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 213 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 214 +Filename Gsasfile "c:\tigbnext\AR\maps\39.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 215 + 'Unconfirmed Records'); 215 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 216 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 216 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 216 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 216 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 217 +Filename Gsasfile "c:\tigbnext\AR\maps\38.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 218 + 'Unconfirmed Records'); 218 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 219 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 219 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 219 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 219 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 220 +Filename Gsasfile "c:\tigbnext\AR\maps\33.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 221 + 'Unconfirmed Records'); 221 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 222 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 222 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 222 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 222 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 223 +Filename Gsasfile "c:\tigbnext\AR\maps\36.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 224 + 'Unconfirmed Records'); 224 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 225 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 225 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 225 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 225 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 226 +Filename Gsasfile "c:\tigbnext\AR\maps\35.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 227 + 'Unconfirmed Records'); 227 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 228 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 228 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 228 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 228 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 229 +Filename Gsasfile "c:\tigbnext\AR\maps\23.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 230 + 'Unconfirmed Records'); 230 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 231 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 231 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 231 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 231 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 232 +Data Tempmap; set statemap; where state=6; NOTE: The data set WORK.TEMPMAP has 1387 observations and 7 variables. NOTE: The DATA statement used 0.46 seconds. 232 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 34.902130055. NOTE: PARALLEL2 = 39.63905749. NOTE: The data set WORK.TEMPMAP2 has 1381 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.17 seconds. 232 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 232 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set bf NOTE: The data set WORK.TEMPMAPA has 109 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.15 seconds. NOTE: CALL EXECUTE generated line. 233 +lys2; where state=6; Run; NOTE: The data set WORK.BFLYTEMP has 74 observations and 32 variables. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 233 + Goptions Reset=Global Device=Mgif6 CBack=White Border; Run; 234 +Filename Gsasfile "c:\tigbnext\CA\maps\81.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 235 + 'Unconfirmed Records'); 235 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila schwarzi"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 236 +d State County; run; NOTE: Entry MGIF6 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 236 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 236 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 236 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 237 +Filename Gsasfile "c:\tigbnext\CA\maps\88.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 238 + 'Unconfirmed Records'); 238 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela californica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 239 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 239 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 239 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 239 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 240 +Filename Gsasfile "c:\tigbnext\CA\maps\87.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 241 + 'Unconfirmed Records'); 241 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela depressula"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 242 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 242 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 242 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 242 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 243 +Filename Gsasfile "c:\tigbnext\CA\maps\92.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 244 + 'Unconfirmed Records'); 244 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela gabbii"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 245 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 245 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 245 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 245 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 246 +Filename Gsasfile "c:\tigbnext\CA\maps\84.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 247 + 'Unconfirmed Records'); 247 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela haemorrhagica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 248 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 248 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 248 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 248 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 249 +Filename Gsasfile "c:\tigbnext\CA\maps\80.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 250 + 'Unconfirmed Records'); 250 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 251 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 251 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 251 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 251 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 252 +Filename Gsasfile "c:\tigbnext\CA\maps\82.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 253 + 'Unconfirmed Records'); 253 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela latesignata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 254 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 254 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 254 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 254 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 255 +Filename Gsasfile "c:\tigbnext\CA\maps\96.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 256 + 'Unconfirmed Records'); 256 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lemniscata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 257 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 257 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 257 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 257 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 258 +Filename Gsasfile "c:\tigbnext\CA\maps\97.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 259 + 'Unconfirmed Records'); 259 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 260 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 260 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 260 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 260 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 261 +Filename Gsasfile "c:\tigbnext\CA\maps\90.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 262 + 'Unconfirmed Records'); 262 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 263 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 263 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 263 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 263 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 264 +Filename Gsasfile "c:\tigbnext\CA\maps\77.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 265 + 'Unconfirmed Records'); 265 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nigrocoerulea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 266 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 266 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 266 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 266 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 267 +Filename Gsasfile "c:\tigbnext\CA\maps\89.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 268 + 'Unconfirmed Records'); 268 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela oregona"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 269 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 269 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 269 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 269 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 270 +Filename Gsasfile "c:\tigbnext\CA\maps\99.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 271 + 'Unconfirmed Records'); 271 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela plutonica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 272 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 272 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 272 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 272 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 273 +Filename Gsasfile "c:\tigbnext\CA\maps\85.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 274 + 'Unconfirmed Records'); 274 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela praetextata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 275 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 275 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 275 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 275 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 276 +Filename Gsasfile "c:\tigbnext\CA\maps\91.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 277 + 'Unconfirmed Records'); 277 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela senilis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 278 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 278 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 278 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 278 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 279 +Filename Gsasfile "c:\tigbnext\CA\maps\95.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 280 + 'Unconfirmed Records'); 280 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tenuicincta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 281 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 281 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 281 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 281 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 282 +Filename Gsasfile "c:\tigbnext\CA\maps\94.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 283 + 'Unconfirmed Records'); 283 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tenuisignata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 284 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 284 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 284 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 284 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 285 +Filename Gsasfile "c:\tigbnext\CA\maps\78.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 286 + 'Unconfirmed Records'); 286 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 287 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 287 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 287 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 287 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 288 +Filename Gsasfile "c:\tigbnext\CA\maps\83.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 289 + 'Unconfirmed Records'); 289 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 290 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 290 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 290 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 290 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 291 +Filename Gsasfile "c:\tigbnext\CA\maps\79.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 292 + 'Unconfirmed Records'); 292 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela trifasciata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 293 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 293 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 293 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 293 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 294 +Filename Gsasfile "c:\tigbnext\CA\maps\76.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 295 + 'Unconfirmed Records'); 295 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela willistoni"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 296 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 296 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 296 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 296 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 297 +Filename Gsasfile "c:\tigbnext\CA\maps\93.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 298 + 'Unconfirmed Records'); 298 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Omus californicus"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 299 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 299 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 299 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 299 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 300 +Filename Gsasfile "c:\tigbnext\CA\maps\98.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 301 + 'Unconfirmed Records'); 301 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Omus submetallicus"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 302 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 302 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 302 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 302 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 303 +Filename Gsasfile "c:\tigbnext\CA\maps\86.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records' NOTE: CALL EXECUTE generated line. 304 + 'Unconfirmed Records'); 304 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 305 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 305 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 305 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 305 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 306 +Data Tempmap; set statemap; where state=8; NOTE: The data set WORK.TEMPMAP has 6962 observations and 7 variables. NOTE: The DATA statement used 0.54 seconds. 306 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 37.995399787. NOTE: PARALLEL2 = 40.000169591. NOTE: The data set WORK.TEMPMAP2 has 6962 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.23 seconds. 306 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 306 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set bf NOTE: The data set WORK.TEMPMAPA has 101 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 307 +lys2; where state=8; Run; NOTE: The data set WORK.BFLYTEMP has 479 observations and 32 variables. NOTE: The DATA statement used 0.23 seconds. NOTE: CALL EXECUTE generated line. 307 + Goptions Reset=Global Device=Mgif8 CBack=White Border; Run; 308 +Filename Gsasfile "c:\tigbnext\CO\maps\130.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 309 +' 'Unconfirmed Records'); 309 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila cylindriformis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 310 + Id State County; run; NOTE: Entry MGIF8 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 310 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 310 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 310 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 311 +Filename Gsasfile "c:\tigbnext\CO\maps\107.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 312 +' 'Unconfirmed Records'); 312 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila picolominii"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 313 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 313 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 313 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 313 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 314 +Filename Gsasfile "c:\tigbnext\CO\maps\129.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 315 +' 'Unconfirmed Records'); 315 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela circumpicta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 316 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 316 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 316 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 316 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 317 +Filename Gsasfile "c:\tigbnext\CO\maps\103.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 318 +' 'Unconfirmed Records'); 318 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 319 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 319 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 319 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 319 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 320 +Filename Gsasfile "c:\tigbnext\CO\maps\110.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 321 +' 'Unconfirmed Records'); 321 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela decemnotata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 322 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 322 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 322 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 322 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 323 +Filename Gsasfile "c:\tigbnext\CO\maps\121.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 324 +' 'Unconfirmed Records'); 324 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela denverensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 325 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 325 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 325 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 325 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 326 +Filename Gsasfile "c:\tigbnext\CO\maps\105.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 327 +' 'Unconfirmed Records'); 327 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 328 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 328 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 328 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 328 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 329 +Filename Gsasfile "c:\tigbnext\CO\maps\119.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 330 +' 'Unconfirmed Records'); 330 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 331 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 331 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 331 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 331 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 332 +Filename Gsasfile "c:\tigbnext\CO\maps\101.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 333 +' 'Unconfirmed Records'); 333 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela fulgida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 334 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 334 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 334 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 334 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 335 +Filename Gsasfile "c:\tigbnext\CO\maps\124.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 336 +' 'Unconfirmed Records'); 336 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela haemorrhagica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 337 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 337 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 337 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 337 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 338 +Filename Gsasfile "c:\tigbnext\CO\maps\120.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 339 +' 'Unconfirmed Records'); 339 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 340 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 340 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 340 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 340 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 341 +Filename Gsasfile "c:\tigbnext\CO\maps\126.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 342 +' 'Unconfirmed Records'); 342 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lengi"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 343 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 343 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 343 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 343 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 344 +Filename Gsasfile "c:\tigbnext\CO\maps\102.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 345 +' 'Unconfirmed Records'); 345 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 346 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 346 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 346 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 346 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 347 +Filename Gsasfile "c:\tigbnext\CO\maps\116.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 348 +' 'Unconfirmed Records'); 348 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 349 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 349 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 349 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 349 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 350 +Filename Gsasfile "c:\tigbnext\CO\maps\113.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 351 +' 'Unconfirmed Records'); 351 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 352 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 352 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 352 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 352 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 353 +Filename Gsasfile "c:\tigbnext\CO\maps\132.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 354 +' 'Unconfirmed Records'); 354 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 355 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 355 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 355 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 355 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 356 +Filename Gsasfile "c:\tigbnext\CO\maps\109.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 357 +' 'Unconfirmed Records'); 357 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela macra"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 358 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 358 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 358 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 358 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 359 +Filename Gsasfile "c:\tigbnext\CO\maps\131.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 360 +' 'Unconfirmed Records'); 360 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marutha"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 361 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 361 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 361 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 361 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 362 +Filename Gsasfile "c:\tigbnext\CO\maps\111.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 363 +' 'Unconfirmed Records'); 363 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 364 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 364 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 364 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 364 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 365 +Filename Gsasfile "c:\tigbnext\CO\maps\123.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 366 +' 'Unconfirmed Records'); 366 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nevadica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 367 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 367 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 367 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 367 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 368 +Filename Gsasfile "c:\tigbnext\CO\maps\115.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 369 +' 'Unconfirmed Records'); 369 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nigrocoerulea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 370 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 370 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 370 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 370 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 371 +Filename Gsasfile "c:\tigbnext\CO\maps\122.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 372 +' 'Unconfirmed Records'); 372 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela obsoleta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 373 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 373 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 373 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 373 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 374 +Filename Gsasfile "c:\tigbnext\CO\maps\128.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 375 +' 'Unconfirmed Records'); 375 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela oregona"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 376 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 376 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 376 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 376 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 377 +Filename Gsasfile "c:\tigbnext\CO\maps\127.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 378 +' 'Unconfirmed Records'); 378 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela pulchra"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 379 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 379 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 379 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 379 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 380 +Filename Gsasfile "c:\tigbnext\CO\maps\133.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 381 +' 'Unconfirmed Records'); 381 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 382 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 382 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 382 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 382 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 383 +Filename Gsasfile "c:\tigbnext\CO\maps\117.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 384 +' 'Unconfirmed Records'); 384 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 385 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 385 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 385 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 385 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 386 +Filename Gsasfile "c:\tigbnext\CO\maps\114.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 387 +' 'Unconfirmed Records'); 387 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 388 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 388 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 388 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 388 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 389 +Filename Gsasfile "c:\tigbnext\CO\maps\125.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 390 +' 'Unconfirmed Records'); 390 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 391 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 391 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 391 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 391 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 392 +Filename Gsasfile "c:\tigbnext\CO\maps\108.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 393 +' 'Unconfirmed Records'); 393 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sperata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 394 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 394 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 394 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 394 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 395 +Filename Gsasfile "c:\tigbnext\CO\maps\112.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 396 +' 'Unconfirmed Records'); 396 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 397 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 397 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 397 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 397 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 398 +Filename Gsasfile "c:\tigbnext\CO\maps\118.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 399 +' 'Unconfirmed Records'); 399 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 400 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 400 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 400 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 400 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 401 +Filename Gsasfile "c:\tigbnext\CO\maps\100.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 402 +' 'Unconfirmed Records'); 402 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela theatina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 403 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 403 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 403 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 403 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 404 +Filename Gsasfile "c:\tigbnext\CO\maps\104.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 405 +' 'Unconfirmed Records'); 405 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela togata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 406 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 406 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 406 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 406 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 407 +Filename Gsasfile "c:\tigbnext\CO\maps\106.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 408 +' 'Unconfirmed Records'); 408 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 409 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 409 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 409 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 409 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 410 +Data Tempmap; set statemap; where state=9; NOTE: The data set WORK.TEMPMAP has 1810 observations and 7 variables. NOTE: The DATA statement used 0.48 seconds. 410 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 41.255237342. NOTE: PARALLEL2 = 41.784645304. NOTE: The data set WORK.TEMPMAP2 has 1810 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.15 seconds. 410 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 410 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set bf NOTE: The data set WORK.TEMPMAPA has 1127 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.15 seconds. NOTE: CALL EXECUTE generated line. 411 +lys2; where state=9; Run; NOTE: The data set WORK.BFLYTEMP has 54 observations and 32 variables. NOTE: The DATA statement used 0.17 seconds. NOTE: CALL EXECUTE generated line. 411 + Goptions Reset=Global Device=Mgif9 CBack=White Border; Run; 412 +Filename Gsasfile "c:\tigbnext\CT\maps\134.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 413 +' 'Unconfirmed Records'); 413 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 414 + State County; run; NOTE: Entry MGIF9 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 414 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 414 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 414 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 415 +Filename Gsasfile "c:\tigbnext\CT\maps\142.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 416 +' 'Unconfirmed Records'); 416 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 417 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 417 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 417 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 417 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 418 +Filename Gsasfile "c:\tigbnext\CT\maps\140.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 419 +' 'Unconfirmed Records'); 419 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 420 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 420 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 420 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 420 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 421 +Filename Gsasfile "c:\tigbnext\CT\maps\137.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 422 +' 'Unconfirmed Records'); 422 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 423 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 423 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 423 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 423 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 424 +Filename Gsasfile "c:\tigbnext\CT\maps\138.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 425 +' 'Unconfirmed Records'); 425 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 426 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 426 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 426 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 426 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 427 +Filename Gsasfile "c:\tigbnext\CT\maps\143.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 428 +' 'Unconfirmed Records'); 428 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 429 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 429 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 429 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 429 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 430 +Filename Gsasfile "c:\tigbnext\CT\maps\139.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 431 +' 'Unconfirmed Records'); 431 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 432 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 432 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 432 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 432 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 433 +Filename Gsasfile "c:\tigbnext\CT\maps\136.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 434 +' 'Unconfirmed Records'); 434 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 435 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 435 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 435 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 435 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 436 +Filename Gsasfile "c:\tigbnext\CT\maps\144.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 437 +' 'Unconfirmed Records'); 437 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 438 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 438 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 438 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 438 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 439 +Filename Gsasfile "c:\tigbnext\CT\maps\135.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 440 +' 'Unconfirmed Records'); 440 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 441 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 441 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 441 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 441 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 442 +Filename Gsasfile "c:\tigbnext\CT\maps\141.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 443 +' 'Unconfirmed Records'); 443 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 444 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 444 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 444 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 444 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 445 +Data Tempmap; set statemap; where state=10; NOTE: The data set WORK.TEMPMAP has 728 observations and 7 variables. NOTE: The DATA statement used 0.51 seconds. 445 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 38.798104109. NOTE: PARALLEL2 = 39.491955706. NOTE: The data set WORK.TEMPMAP2 has 728 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.15 seconds. 445 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 445 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 566 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.15 seconds. NOTE: CALL EXECUTE generated line. 446 +flys2; where state=10; Run; NOTE: The data set WORK.BFLYTEMP has 21 observations and 32 variables. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 446 + Goptions Reset=Global Device=Mgif10 CBack=White Border; Run; 447 +Filename Gsasfile "c:\tigbnext\DE\maps\145.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 448 +' 'Unconfirmed Records'); 448 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 449 + State County; run; NOTE: Entry MGIF10 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 449 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 449 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 449 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 450 +Filename Gsasfile "c:\tigbnext\DE\maps\156.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 451 +' 'Unconfirmed Records'); 451 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 452 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 452 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 452 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 452 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 453 +Filename Gsasfile "c:\tigbnext\DE\maps\152.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 454 +' 'Unconfirmed Records'); 454 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 455 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 455 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 455 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 455 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 456 +Filename Gsasfile "c:\tigbnext\DE\maps\151.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 457 +' 'Unconfirmed Records'); 457 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 458 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 458 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 458 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 458 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 459 +Filename Gsasfile "c:\tigbnext\DE\maps\149.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 460 +' 'Unconfirmed Records'); 460 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 461 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 461 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 461 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 461 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 462 +Filename Gsasfile "c:\tigbnext\DE\maps\150.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 463 +' 'Unconfirmed Records'); 463 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 464 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 464 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 464 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 464 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 465 +Filename Gsasfile "c:\tigbnext\DE\maps\155.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 466 +' 'Unconfirmed Records'); 466 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 467 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 467 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 467 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 467 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 468 +Filename Gsasfile "c:\tigbnext\DE\maps\148.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 469 +' 'Unconfirmed Records'); 469 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 470 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 470 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 470 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 470 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 471 +Filename Gsasfile "c:\tigbnext\DE\maps\154.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 472 +' 'Unconfirmed Records'); 472 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 473 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 473 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 473 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 473 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 474 +Filename Gsasfile "c:\tigbnext\DE\maps\146.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 475 +' 'Unconfirmed Records'); 475 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 476 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 476 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 476 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 476 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 477 +Filename Gsasfile "c:\tigbnext\DE\maps\153.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 478 +' 'Unconfirmed Records'); 478 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 479 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 479 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 479 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 479 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 480 +Filename Gsasfile "c:\tigbnext\DE\maps\157.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 481 +' 'Unconfirmed Records'); 481 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 482 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 482 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 482 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 482 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 483 +Filename Gsasfile "c:\tigbnext\DE\maps\147.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 484 +' 'Unconfirmed Records'); 484 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 485 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 485 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 485 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 485 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 486 +Data Tempmap; set statemap; where state=12; NOTE: The data set WORK.TEMPMAP has 11895 observations and 7 variables. NOTE: The DATA statement used 0.59 seconds. 486 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 26.154945842. NOTE: PARALLEL2 = 29.38528381. NOTE: The data set WORK.TEMPMAP2 has 11895 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.23 seconds. 486 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 486 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 5823 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.23 seconds. NOTE: CALL EXECUTE generated line. 487 +flys2; where state=12; Run; NOTE: The data set WORK.BFLYTEMP has 58 observations and 32 variables. NOTE: The DATA statement used 0.21 seconds. NOTE: CALL EXECUTE generated line. 487 + Goptions Reset=Global Device=Mgif12 CBack=White Border; Run; 488 +Filename Gsasfile "c:\tigbnext\FL\maps\169.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 489 +' 'Unconfirmed Records'); 489 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela abdominalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 490 + Id State County; run; NOTE: Entry MGIF12 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 490 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 490 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 490 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 491 +Filename Gsasfile "c:\tigbnext\FL\maps\158.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 492 +' 'Unconfirmed Records'); 492 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 493 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 493 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 493 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 493 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 494 +Filename Gsasfile "c:\tigbnext\FL\maps\165.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 495 +' 'Unconfirmed Records'); 495 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela gratiosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 496 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 496 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 496 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 496 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 497 +Filename Gsasfile "c:\tigbnext\FL\maps\163.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 498 +' 'Unconfirmed Records'); 498 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hamata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 499 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 499 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 499 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 499 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 500 +Filename Gsasfile "c:\tigbnext\FL\maps\166.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 501 +' 'Unconfirmed Records'); 501 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 502 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 502 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 502 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 502 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 503 +Filename Gsasfile "c:\tigbnext\FL\maps\159.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 504 +' 'Unconfirmed Records'); 504 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirtilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 505 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 505 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 505 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 505 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 506 +Filename Gsasfile "c:\tigbnext\FL\maps\162.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 507 +' 'Unconfirmed Records'); 507 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 508 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 508 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 508 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 508 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 509 +Filename Gsasfile "c:\tigbnext\FL\maps\170.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 510 +' 'Unconfirmed Records'); 510 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 511 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 511 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 511 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 511 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 512 +Filename Gsasfile "c:\tigbnext\FL\maps\167.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 513 +' 'Unconfirmed Records'); 513 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela severa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 514 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 514 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 514 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 514 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 515 +Filename Gsasfile "c:\tigbnext\FL\maps\168.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 516 +' 'Unconfirmed Records'); 516 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela striga"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 517 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 517 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 517 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 517 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 518 +Filename Gsasfile "c:\tigbnext\FL\maps\164.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 519 +' 'Unconfirmed Records'); 519 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela trifasciata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 520 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 520 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 520 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 520 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 521 +Filename Gsasfile "c:\tigbnext\FL\maps\161.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 522 +' 'Unconfirmed Records'); 522 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela wapleri"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 523 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 523 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 523 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 523 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 524 +Filename Gsasfile "c:\tigbnext\FL\maps\160.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 525 +' 'Unconfirmed Records'); 525 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 526 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 526 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 526 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 526 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 527 +Data Tempmap; set statemap; where state=13; NOTE: The data set WORK.TEMPMAP has 17485 observations and 7 variables. NOTE: The DATA statement used 0.64 seconds. 527 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 31.516541887. NOTE: PARALLEL2 = 33.839024771. NOTE: The data set WORK.TEMPMAP2 has 17485 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.26 seconds. 527 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 527 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 2733 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.21 seconds. NOTE: CALL EXECUTE generated line. 528 +flys2; where state=13; Run; NOTE: The data set WORK.BFLYTEMP has 321 observations and 32 variables. NOTE: The DATA statement used 0.23 seconds. NOTE: CALL EXECUTE generated line. 528 + Goptions Reset=Global Device=Mgif13 CBack=White Border; Run; 529 +Filename Gsasfile "c:\tigbnext\GA\maps\191.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 530 +' 'Unconfirmed Records'); 530 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela abdominalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 531 + Id State County; run; NOTE: Entry MGIF13 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 531 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 531 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 531 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 532 +Filename Gsasfile "c:\tigbnext\GA\maps\184.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 533 +' 'Unconfirmed Records'); 533 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela ancocisconensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 534 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 534 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 534 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 534 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 535 +Filename Gsasfile "c:\tigbnext\GA\maps\194.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 536 +' 'Unconfirmed Records'); 536 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela blanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 537 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 537 + quit; NOTE: The PROCEDURE GMAP used 0.57 seconds. 537 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 537 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 538 +Filename Gsasfile "c:\tigbnext\GA\maps\172.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 539 +' 'Unconfirmed Records'); 539 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 540 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 540 + quit; NOTE: The PROCEDURE GMAP used 0.56 seconds. 540 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 540 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 541 +Filename Gsasfile "c:\tigbnext\GA\maps\180.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 542 +' 'Unconfirmed Records'); 542 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 543 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 543 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 543 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 543 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 544 +Filename Gsasfile "c:\tigbnext\GA\maps\189.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 545 +' 'Unconfirmed Records'); 545 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela gratiosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 546 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 546 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 546 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 546 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 547 +Filename Gsasfile "c:\tigbnext\GA\maps\177.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 548 +' 'Unconfirmed Records'); 548 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 549 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 549 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 549 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 549 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 550 +Filename Gsasfile "c:\tigbnext\GA\maps\171.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 551 +' 'Unconfirmed Records'); 551 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirtilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 552 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 552 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 552 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 552 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 553 +Filename Gsasfile "c:\tigbnext\GA\maps\185.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 554 +' 'Unconfirmed Records'); 554 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 555 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 555 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 555 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 555 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 556 +Filename Gsasfile "c:\tigbnext\GA\maps\181.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 557 +' 'Unconfirmed Records'); 557 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nigrior"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 558 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 558 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 558 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 558 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 559 +Filename Gsasfile "c:\tigbnext\GA\maps\186.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 560 +' 'Unconfirmed Records'); 560 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 561 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 561 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 561 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 561 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 562 +Filename Gsasfile "c:\tigbnext\GA\maps\193.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 563 +' 'Unconfirmed Records'); 563 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 564 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 564 + quit; NOTE: The PROCEDURE GMAP used 0.56 seconds. 564 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 564 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 565 +Filename Gsasfile "c:\tigbnext\GA\maps\174.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 566 +' 'Unconfirmed Records'); 566 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 567 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 567 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 567 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 567 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 568 +Filename Gsasfile "c:\tigbnext\GA\maps\192.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 569 +' 'Unconfirmed Records'); 569 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 570 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 570 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 570 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 570 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 571 +Filename Gsasfile "c:\tigbnext\GA\maps\182.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 572 +' 'Unconfirmed Records'); 572 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 573 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 573 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 573 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 573 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 574 +Filename Gsasfile "c:\tigbnext\GA\maps\190.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 575 +' 'Unconfirmed Records'); 575 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 576 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 576 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 576 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 576 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 577 +Filename Gsasfile "c:\tigbnext\GA\maps\188.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 578 +' 'Unconfirmed Records'); 578 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 579 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 579 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 579 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 579 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 580 +Filename Gsasfile "c:\tigbnext\GA\maps\178.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 581 +' 'Unconfirmed Records'); 581 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela striga"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 582 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 582 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 582 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 582 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 583 +Filename Gsasfile "c:\tigbnext\GA\maps\179.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 584 +' 'Unconfirmed Records'); 584 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 585 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 585 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 585 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 585 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 586 +Filename Gsasfile "c:\tigbnext\GA\maps\176.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 587 +' 'Unconfirmed Records'); 587 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela trifasciata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 588 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 588 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 588 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 588 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 589 +Filename Gsasfile "c:\tigbnext\GA\maps\187.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 590 +' 'Unconfirmed Records'); 590 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 591 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 591 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 591 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 591 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 592 +Filename Gsasfile "c:\tigbnext\GA\maps\175.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 593 +' 'Unconfirmed Records'); 593 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela wapleri"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 594 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 594 + quit; NOTE: The PROCEDURE GMAP used 0.56 seconds. 594 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 594 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 595 +Filename Gsasfile "c:\tigbnext\GA\maps\183.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 596 +' 'Unconfirmed Records'); 596 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 597 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 597 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 597 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 597 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 598 +Filename Gsasfile "c:\tigbnext\GA\maps\173.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 599 +' 'Unconfirmed Records'); 599 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 600 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 600 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 600 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 600 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 601 +Data Tempmap; set statemap; where state=16; NOTE: The data set WORK.TEMPMAP has 9692 observations and 7 variables. NOTE: The DATA statement used 0.56 seconds. 601 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 43.745456011. NOTE: PARALLEL2 = 47.248810301. NOTE: The data set WORK.TEMPMAP2 has 9692 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.21 seconds. 601 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 601 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 2049 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.2 seconds. NOTE: CALL EXECUTE generated line. 602 +flys2; where state=16; Run; NOTE: The data set WORK.BFLYTEMP has 122 observations and 32 variables. NOTE: The DATA statement used 0.2 seconds. NOTE: CALL EXECUTE generated line. 602 + Goptions Reset=Global Device=Mgif16 CBack=White Border; Run; 603 +Filename Gsasfile "c:\tigbnext\ID\maps\218.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 604 +' 'Unconfirmed Records'); 604 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela arenicola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 605 +d State County; run; NOTE: Entry MGIF16 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 605 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 605 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 605 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 606 +Filename Gsasfile "c:\tigbnext\ID\maps\220.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 607 +' 'Unconfirmed Records'); 607 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela columbica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 608 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 608 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 608 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 608 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 609 +Filename Gsasfile "c:\tigbnext\ID\maps\224.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 610 +' 'Unconfirmed Records'); 610 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela decemnotata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 611 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 611 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 611 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 611 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 612 +Filename Gsasfile "c:\tigbnext\ID\maps\221.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 613 +' 'Unconfirmed Records'); 613 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela haemorrhagica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 614 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 614 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 614 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 614 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 615 +Filename Gsasfile "c:\tigbnext\ID\maps\217.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 616 +' 'Unconfirmed Records'); 616 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 617 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 617 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 617 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 617 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 618 +Filename Gsasfile "c:\tigbnext\ID\maps\222.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 619 +' 'Unconfirmed Records'); 619 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lengi"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 620 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 620 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 620 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 620 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 621 +Filename Gsasfile "c:\tigbnext\ID\maps\227.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 622 +' 'Unconfirmed Records'); 622 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 623 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 623 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 623 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 623 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 624 +Filename Gsasfile "c:\tigbnext\ID\maps\225.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 625 +' 'Unconfirmed Records'); 625 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 626 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 626 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 626 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 626 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 627 +Filename Gsasfile "c:\tigbnext\ID\maps\223.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 628 +' 'Unconfirmed Records'); 628 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela oregona"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 629 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 629 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 629 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 629 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 630 +Filename Gsasfile "c:\tigbnext\ID\maps\226.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 631 +' 'Unconfirmed Records'); 631 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela parowana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 632 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 632 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 632 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 632 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 633 +Filename Gsasfile "c:\tigbnext\ID\maps\228.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 634 +' 'Unconfirmed Records'); 634 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela plutonica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 635 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 635 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 635 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 635 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 636 +Filename Gsasfile "c:\tigbnext\ID\maps\216.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 637 +' 'Unconfirmed Records'); 637 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 638 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 638 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 638 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 638 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 639 +Filename Gsasfile "c:\tigbnext\ID\maps\214.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 640 +' 'Unconfirmed Records'); 640 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 641 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 641 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 641 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 641 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 642 +Filename Gsasfile "c:\tigbnext\ID\maps\215.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 643 +' 'Unconfirmed Records'); 643 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 644 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 644 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 644 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 644 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 645 +Filename Gsasfile "c:\tigbnext\ID\maps\219.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 646 +' 'Unconfirmed Records'); 646 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 647 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 647 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 647 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 647 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 648 +Filename Gsasfile "c:\tigbnext\ID\maps\213.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 649 +' 'Unconfirmed Records'); 649 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela willistoni"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 650 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 650 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 650 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 650 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 651 +Data Tempmap; set statemap; where state=17; NOTE: The data set WORK.TEMPMAP has 6172 observations and 7 variables. NOTE: The DATA statement used 0.59 seconds. 651 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 38.354073511. NOTE: PARALLEL2 = 41.123182464. NOTE: The data set WORK.TEMPMAP2 has 6172 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.2 seconds. 651 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 651 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1807 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.2 seconds. NOTE: CALL EXECUTE generated line. 652 +flys2; where state=17; Run; NOTE: The data set WORK.BFLYTEMP has 7 observations and 32 variables. NOTE: The DATA statement used 0.17 seconds. NOTE: CALL EXECUTE generated line. 652 + Goptions Reset=Global Device=Mgif17 CBack=White Border; Run; 653 +Filename Gsasfile "c:\tigbnext\IL\maps\230.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 654 +' 'Unconfirmed Records'); 654 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 655 + Id State County; run; NOTE: Entry MGIF17 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 655 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 655 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 655 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 656 +Filename Gsasfile "c:\tigbnext\IL\maps\229.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 657 +' 'Unconfirmed Records'); 657 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 658 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 658 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 658 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 658 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 659 +Data Tempmap; set statemap; where state=18; NOTE: The data set WORK.TEMPMAP has 5037 observations and 7 variables. NOTE: The DATA statement used 0.57 seconds. 659 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 38.768747955. NOTE: PARALLEL2 = 40.762930967. NOTE: The data set WORK.TEMPMAP2 has 5037 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.21 seconds. 659 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 659 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1170 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.2 seconds. NOTE: CALL EXECUTE generated line. 660 +flys2; where state=18; Run; NOTE: The data set WORK.BFLYTEMP has 340 observations and 32 variables. NOTE: The DATA statement used 0.23 seconds. NOTE: CALL EXECUTE generated line. 660 + Goptions Reset=Global Device=Mgif18 CBack=White Border; Run; 661 +Filename Gsasfile "c:\tigbnext\IN\maps\233.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 662 +' 'Unconfirmed Records'); 662 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela ancocisconensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 663 + Id State County; run; NOTE: Entry MGIF18 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 663 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 663 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 663 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 664 +Filename Gsasfile "c:\tigbnext\IN\maps\240.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 665 +' 'Unconfirmed Records'); 665 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 666 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 666 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 666 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 666 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 667 +Filename Gsasfile "c:\tigbnext\IN\maps\248.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 668 +' 'Unconfirmed Records'); 668 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 669 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 669 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 669 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 669 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 670 +Filename Gsasfile "c:\tigbnext\IN\maps\241.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 671 +' 'Unconfirmed Records'); 671 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 672 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 672 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 672 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 672 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 673 +Filename Gsasfile "c:\tigbnext\IN\maps\242.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 674 +' 'Unconfirmed Records'); 674 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 675 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 675 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 675 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 675 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 676 +Filename Gsasfile "c:\tigbnext\IN\maps\239.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 677 +' 'Unconfirmed Records'); 677 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 678 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 678 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 678 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 678 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 679 +Filename Gsasfile "c:\tigbnext\IN\maps\235.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 680 +' 'Unconfirmed Records'); 680 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela macra"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 681 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 681 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 681 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 681 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 682 +Filename Gsasfile "c:\tigbnext\IN\maps\244.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 683 +' 'Unconfirmed Records'); 683 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginipennis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 684 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 684 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 684 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 684 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 685 +Filename Gsasfile "c:\tigbnext\IN\maps\238.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 686 +' 'Unconfirmed Records'); 686 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 687 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 687 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 687 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 687 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 688 +Filename Gsasfile "c:\tigbnext\IN\maps\246.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 689 +' 'Unconfirmed Records'); 689 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 690 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 690 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 690 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 690 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 691 +Filename Gsasfile "c:\tigbnext\IN\maps\237.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 692 +' 'Unconfirmed Records'); 692 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 693 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 693 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 693 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 693 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 694 +Filename Gsasfile "c:\tigbnext\IN\maps\234.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 695 +' 'Unconfirmed Records'); 695 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 696 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 696 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 696 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 696 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 697 +Filename Gsasfile "c:\tigbnext\IN\maps\247.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 698 +' 'Unconfirmed Records'); 698 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 699 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 699 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 699 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 699 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 700 +Filename Gsasfile "c:\tigbnext\IN\maps\231.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 701 +' 'Unconfirmed Records'); 701 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 702 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 702 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 702 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 702 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 703 +Filename Gsasfile "c:\tigbnext\IN\maps\243.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 704 +' 'Unconfirmed Records'); 704 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 705 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 705 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 705 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 705 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 706 +Filename Gsasfile "c:\tigbnext\IN\maps\245.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 707 +' 'Unconfirmed Records'); 707 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 708 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 708 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 708 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 708 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 709 +Filename Gsasfile "c:\tigbnext\IN\maps\236.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 710 +' 'Unconfirmed Records'); 710 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 711 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 711 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 711 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 711 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 712 +Filename Gsasfile "c:\tigbnext\IN\maps\232.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 713 +' 'Unconfirmed Records'); 713 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 714 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 714 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 714 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 714 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 715 +Data Tempmap; set statemap; where state=19; NOTE: The data set WORK.TEMPMAP has 3277 observations and 7 variables. NOTE: The DATA statement used 0.56 seconds. 715 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 41.15698507. NOTE: PARALLEL2 = 42.719431824. NOTE: The data set WORK.TEMPMAP2 has 3277 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.2 seconds. 715 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 715 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1425 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.26 seconds. NOTE: CALL EXECUTE generated line. 716 +flys2; where state=19; Run; NOTE: The data set WORK.BFLYTEMP has 258 observations and 32 variables. NOTE: The DATA statement used 0.23 seconds. NOTE: CALL EXECUTE generated line. 716 + Goptions Reset=Global Device=Mgif19 CBack=White Border; Run; 717 +Filename Gsasfile "c:\tigbnext\IA\maps\212.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 718 +' 'Unconfirmed Records'); 718 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela celeripes"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 719 +d State County; run; NOTE: Entry MGIF19 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 719 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 719 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 719 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 720 +Filename Gsasfile "c:\tigbnext\IA\maps\201.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 721 +' 'Unconfirmed Records'); 721 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 722 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 722 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 722 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 722 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 723 +Filename Gsasfile "c:\tigbnext\IA\maps\196.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 724 +' 'Unconfirmed Records'); 724 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cursitans"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 725 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 725 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 725 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 725 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 726 +Filename Gsasfile "c:\tigbnext\IA\maps\205.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 727 +' 'Unconfirmed Records'); 727 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 728 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 728 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 728 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 728 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 729 +Filename Gsasfile "c:\tigbnext\IA\maps\202.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 730 +' 'Unconfirmed Records'); 730 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 731 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 731 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 731 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 731 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 732 +Filename Gsasfile "c:\tigbnext\IA\maps\203.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 733 +' 'Unconfirmed Records'); 733 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 734 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 734 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 734 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 734 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 735 +Filename Gsasfile "c:\tigbnext\IA\maps\207.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 736 +' 'Unconfirmed Records'); 736 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lengi"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 737 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 737 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 737 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 737 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 738 +Filename Gsasfile "c:\tigbnext\IA\maps\200.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 739 +' 'Unconfirmed Records'); 739 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 740 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 740 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 740 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 740 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 741 +Filename Gsasfile "c:\tigbnext\IA\maps\198.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 742 +' 'Unconfirmed Records'); 742 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 743 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 743 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 743 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 743 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 744 +Filename Gsasfile "c:\tigbnext\IA\maps\211.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 745 +' 'Unconfirmed Records'); 745 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 746 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 746 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 746 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 746 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 747 +Filename Gsasfile "c:\tigbnext\IA\maps\199.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 748 +' 'Unconfirmed Records'); 748 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 749 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 749 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 749 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 749 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 750 +Filename Gsasfile "c:\tigbnext\IA\maps\197.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 751 +' 'Unconfirmed Records'); 751 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 752 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 752 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 752 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 752 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 753 +Filename Gsasfile "c:\tigbnext\IA\maps\206.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 754 +' 'Unconfirmed Records'); 754 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 755 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 755 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 755 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 755 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 756 +Filename Gsasfile "c:\tigbnext\IA\maps\210.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 757 +' 'Unconfirmed Records'); 757 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 758 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 758 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 758 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 758 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 759 +Filename Gsasfile "c:\tigbnext\IA\maps\209.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 760 +' 'Unconfirmed Records'); 760 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 761 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 761 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 761 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 761 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 762 +Filename Gsasfile "c:\tigbnext\IA\maps\204.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 763 +' 'Unconfirmed Records'); 763 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 764 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 764 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 764 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 764 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 765 +Filename Gsasfile "c:\tigbnext\IA\maps\208.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 766 +' 'Unconfirmed Records'); 766 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 767 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 767 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 767 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 767 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 768 +Filename Gsasfile "c:\tigbnext\IA\maps\195.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 769 +' 'Unconfirmed Records'); 769 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 770 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 770 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 770 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 770 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 771 +Data Tempmap; set statemap; where state=20; NOTE: The data set WORK.TEMPMAP has 2788 observations and 7 variables. NOTE: The DATA statement used 0.53 seconds. 771 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 37.745449014. NOTE: PARALLEL2 = 39.250317273. NOTE: The data set WORK.TEMPMAP2 has 2788 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.18 seconds. 771 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 771 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 417 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.17 seconds. NOTE: CALL EXECUTE generated line. 772 +flys2; where state=20; Run; NOTE: The data set WORK.BFLYTEMP has 519 observations and 32 variables. NOTE: The DATA statement used 0.26 seconds. NOTE: CALL EXECUTE generated line. 772 + Goptions Reset=Global Device=Mgif20 CBack=White Border; Run; 773 +Filename Gsasfile "c:\tigbnext\KS\maps\275.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 774 +' 'Unconfirmed Records'); 774 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila cylindriformis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 775 + Id State County; run; NOTE: Entry MGIF20 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 775 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 775 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 775 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 776 +Filename Gsasfile "c:\tigbnext\KS\maps\272.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 777 +' 'Unconfirmed Records'); 777 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela belfragei"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 778 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 778 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 778 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 778 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 779 +Filename Gsasfile "c:\tigbnext\KS\maps\277.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 780 +' 'Unconfirmed Records'); 780 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela celeripes"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 781 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 781 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 781 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 781 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 782 +Filename Gsasfile "c:\tigbnext\KS\maps\273.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 783 +' 'Unconfirmed Records'); 783 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela circumpicta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 784 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 784 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 784 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 784 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 785 +Filename Gsasfile "c:\tigbnext\KS\maps\258.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 786 +' 'Unconfirmed Records'); 786 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 787 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 787 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 787 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 787 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 788 +Filename Gsasfile "c:\tigbnext\KS\maps\260.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 789 +' 'Unconfirmed Records'); 789 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela denverensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 790 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 790 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 790 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 790 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 791 +Filename Gsasfile "c:\tigbnext\KS\maps\265.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 792 +' 'Unconfirmed Records'); 792 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 793 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 793 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 793 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 793 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 794 +Filename Gsasfile "c:\tigbnext\KS\maps\257.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 795 +' 'Unconfirmed Records'); 795 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 796 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 796 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 796 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 796 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 797 +Filename Gsasfile "c:\tigbnext\KS\maps\254.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 798 +' 'Unconfirmed Records'); 798 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela fulgida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 799 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 799 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 799 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 799 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 800 +Filename Gsasfile "c:\tigbnext\KS\maps\259.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 801 +' 'Unconfirmed Records'); 801 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 802 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 802 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 802 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 802 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 803 +Filename Gsasfile "c:\tigbnext\KS\maps\268.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 804 +' 'Unconfirmed Records'); 804 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lengi"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 805 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 805 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 805 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 805 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 806 +Filename Gsasfile "c:\tigbnext\KS\maps\256.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 807 +' 'Unconfirmed Records'); 807 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 808 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 808 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 808 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 808 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 809 +Filename Gsasfile "c:\tigbnext\KS\maps\253.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 810 +' 'Unconfirmed Records'); 810 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 811 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 811 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 811 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 811 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 812 +Filename Gsasfile "c:\tigbnext\KS\maps\270.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 813 +' 'Unconfirmed Records'); 813 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela macra"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 814 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 814 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 814 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 814 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 815 +Filename Gsasfile "c:\tigbnext\KS\maps\263.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 816 +' 'Unconfirmed Records'); 816 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nevadica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 817 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 817 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 817 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 817 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 818 +Filename Gsasfile "c:\tigbnext\KS\maps\251.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 819 +' 'Unconfirmed Records'); 819 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nigrocoerulea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 820 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 820 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 820 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 820 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 821 +Filename Gsasfile "c:\tigbnext\KS\maps\261.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 822 +' 'Unconfirmed Records'); 822 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela obsoleta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 823 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 823 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 823 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 823 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 824 +Filename Gsasfile "c:\tigbnext\KS\maps\269.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 825 +' 'Unconfirmed Records'); 825 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela pulchra"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 826 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 826 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 826 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 826 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 827 +Filename Gsasfile "c:\tigbnext\KS\maps\276.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 828 +' 'Unconfirmed Records'); 828 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 829 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 829 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 829 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 829 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 830 +Filename Gsasfile "c:\tigbnext\KS\maps\255.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 831 +' 'Unconfirmed Records'); 831 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 832 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 832 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 832 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 832 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 833 +Filename Gsasfile "c:\tigbnext\KS\maps\252.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 834 +' 'Unconfirmed Records'); 834 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 835 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 835 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 835 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 835 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 836 +Filename Gsasfile "c:\tigbnext\KS\maps\266.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 837 +' 'Unconfirmed Records'); 837 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 838 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 838 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 838 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 838 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 839 +Filename Gsasfile "c:\tigbnext\KS\maps\274.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 840 +' 'Unconfirmed Records'); 840 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 841 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 841 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 841 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 841 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 842 +Filename Gsasfile "c:\tigbnext\KS\maps\271.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 843 +' 'Unconfirmed Records'); 843 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 844 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 844 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 844 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 844 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 845 +Filename Gsasfile "c:\tigbnext\KS\maps\262.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 846 +' 'Unconfirmed Records'); 846 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela togata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 847 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 847 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 847 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 847 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 848 +Filename Gsasfile "c:\tigbnext\KS\maps\264.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 849 +' 'Unconfirmed Records'); 849 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 850 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 850 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 850 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 850 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 851 +Filename Gsasfile "c:\tigbnext\KS\maps\250.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 852 +' 'Unconfirmed Records'); 852 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela willistoni"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 853 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 853 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 853 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 853 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 854 +Filename Gsasfile "c:\tigbnext\KS\maps\267.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 855 +' 'Unconfirmed Records'); 855 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 856 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 856 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 856 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 856 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 857 +Filename Gsasfile "c:\tigbnext\KS\maps\249.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 858 +' 'Unconfirmed Records'); 858 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 859 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 859 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 859 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 859 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 860 +Data Tempmap; set statemap; where state=21; NOTE: The data set WORK.TEMPMAP has 16111 observations and 7 variables. NOTE: The DATA statement used 0.6 seconds. 860 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 37.159446104. NOTE: PARALLEL2 = 38.484707709. NOTE: The data set WORK.TEMPMAP2 has 16111 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.25 seconds. 860 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.03 seconds. 860 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1787 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.23 seconds. NOTE: CALL EXECUTE generated line. 861 +flys2; where state=21; Run; NOTE: The data set WORK.BFLYTEMP has 5 observations and 32 variables. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 861 + Goptions Reset=Global Device=Mgif21 CBack=White Border; Run; 862 +Filename Gsasfile "c:\tigbnext\KY\maps\280.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 863 +' 'Unconfirmed Records'); 863 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 864 + Id State County; run; NOTE: Entry MGIF21 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 864 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 864 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 864 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 865 +Filename Gsasfile "c:\tigbnext\KY\maps\278.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 866 +' 'Unconfirmed Records'); 866 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 867 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 867 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 867 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 867 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 868 +Filename Gsasfile "c:\tigbnext\KY\maps\279.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 869 +' 'Unconfirmed Records'); 869 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 870 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 870 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 870 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 870 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 871 +Data Tempmap; set statemap; where state=23; NOTE: The data set WORK.TEMPMAP has 6677 observations and 7 variables. NOTE: The DATA statement used 0.54 seconds. 871 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 44.158552682. NOTE: PARALLEL2 = 46.358993746. NOTE: The data set WORK.TEMPMAP2 has 6677 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.2 seconds. 871 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.03 seconds. 871 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 4995 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.21 seconds. NOTE: CALL EXECUTE generated line. 872 +flys2; where state=23; Run; NOTE: The data set WORK.BFLYTEMP has 92 observations and 32 variables. NOTE: The DATA statement used 0.18 seconds. NOTE: CALL EXECUTE generated line. 872 + Goptions Reset=Global Device=Mgif23 CBack=White Border; Run; 873 +Filename Gsasfile "c:\tigbnext\ME\maps\306.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 874 +' 'Unconfirmed Records'); 874 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela ancocisconensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 875 + Id State County; run; NOTE: Entry MGIF23 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 875 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 875 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 875 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 876 +Filename Gsasfile "c:\tigbnext\ME\maps\315.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 877 +' 'Unconfirmed Records'); 877 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 878 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 878 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 878 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 878 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 879 +Filename Gsasfile "c:\tigbnext\ME\maps\311.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 880 +' 'Unconfirmed Records'); 880 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 881 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 881 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 881 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 881 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 882 +Filename Gsasfile "c:\tigbnext\ME\maps\312.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 883 +' 'Unconfirmed Records'); 883 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 884 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 884 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 884 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 884 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 885 +Filename Gsasfile "c:\tigbnext\ME\maps\308.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 886 +' 'Unconfirmed Records'); 886 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 887 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 887 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 887 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 887 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 888 +Filename Gsasfile "c:\tigbnext\ME\maps\314.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 889 +' 'Unconfirmed Records'); 889 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 890 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 890 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 890 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 890 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 891 +Filename Gsasfile "c:\tigbnext\ME\maps\309.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 892 +' 'Unconfirmed Records'); 892 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 893 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 893 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 893 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 893 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 894 +Filename Gsasfile "c:\tigbnext\ME\maps\317.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 895 +' 'Unconfirmed Records'); 895 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 896 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 896 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 896 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 896 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 897 +Filename Gsasfile "c:\tigbnext\ME\maps\310.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 898 +' 'Unconfirmed Records'); 898 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 899 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 899 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 899 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 899 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 900 +Filename Gsasfile "c:\tigbnext\ME\maps\307.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 901 +' 'Unconfirmed Records'); 901 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 902 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 902 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 902 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 902 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 903 +Filename Gsasfile "c:\tigbnext\ME\maps\305.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 904 +' 'Unconfirmed Records'); 904 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 905 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 905 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 905 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 905 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 906 +Filename Gsasfile "c:\tigbnext\ME\maps\313.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 907 +' 'Unconfirmed Records'); 907 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 908 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 908 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 908 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 908 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 909 +Filename Gsasfile "c:\tigbnext\ME\maps\316.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 910 +' 'Unconfirmed Records'); 910 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 911 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 911 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 911 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 911 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 912 +Data Tempmap; set statemap; where state=24; NOTE: The data set WORK.TEMPMAP has 7378 observations and 7 variables. NOTE: The DATA statement used 0.57 seconds. 912 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 38.366388342. NOTE: PARALLEL2 = 39.270514142. NOTE: The data set WORK.TEMPMAP2 has 7378 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.21 seconds. 912 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 912 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 4951 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.2 seconds. NOTE: CALL EXECUTE generated line. 913 +flys2; where state=24; Run; NOTE: The data set WORK.BFLYTEMP has 141 observations and 32 variables. NOTE: The DATA statement used 0.2 seconds. NOTE: CALL EXECUTE generated line. 913 + Goptions Reset=Global Device=Mgif24 CBack=White Border; Run; 914 +Filename Gsasfile "c:\tigbnext\MD\maps\301.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 915 +' 'Unconfirmed Records'); 915 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela abdominalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 916 + Id State County; run; NOTE: Entry MGIF24 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 916 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 916 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 916 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 917 +Filename Gsasfile "c:\tigbnext\MD\maps\295.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 918 +' 'Unconfirmed Records'); 918 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela ancocisconensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 919 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 919 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 919 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 919 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 920 +Filename Gsasfile "c:\tigbnext\MD\maps\283.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 921 +' 'Unconfirmed Records'); 921 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 922 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 922 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 922 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 922 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 923 +Filename Gsasfile "c:\tigbnext\MD\maps\291.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 924 +' 'Unconfirmed Records'); 924 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 925 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 925 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 925 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 925 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 926 +Filename Gsasfile "c:\tigbnext\MD\maps\289.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 927 +' 'Unconfirmed Records'); 927 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 928 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 928 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 928 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 928 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 929 +Filename Gsasfile "c:\tigbnext\MD\maps\290.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 930 +' 'Unconfirmed Records'); 930 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 931 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 931 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 931 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 931 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 932 +Filename Gsasfile "c:\tigbnext\MD\maps\287.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 933 +' 'Unconfirmed Records'); 933 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 934 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 934 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 934 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 934 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 935 +Filename Gsasfile "c:\tigbnext\MD\maps\298.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 936 +' 'Unconfirmed Records'); 936 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 937 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 937 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 937 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 937 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 938 +Filename Gsasfile "c:\tigbnext\MD\maps\297.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 939 +' 'Unconfirmed Records'); 939 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 940 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 940 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 940 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 940 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 941 +Filename Gsasfile "c:\tigbnext\MD\maps\304.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 942 +' 'Unconfirmed Records'); 942 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 943 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 943 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 943 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 943 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 944 +Filename Gsasfile "c:\tigbnext\MD\maps\302.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 945 +' 'Unconfirmed Records'); 945 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela puritana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 946 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 946 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 946 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 946 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 947 +Filename Gsasfile "c:\tigbnext\MD\maps\286.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 948 +' 'Unconfirmed Records'); 948 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 949 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 949 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 949 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 949 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 950 +Filename Gsasfile "c:\tigbnext\MD\maps\285.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 951 +' 'Unconfirmed Records'); 951 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 952 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 952 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 952 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 952 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 953 +Filename Gsasfile "c:\tigbnext\MD\maps\303.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 954 +' 'Unconfirmed Records'); 954 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 955 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 955 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 955 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 955 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 956 +Filename Gsasfile "c:\tigbnext\MD\maps\293.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 957 +' 'Unconfirmed Records'); 957 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 958 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 958 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 958 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 958 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 959 +Filename Gsasfile "c:\tigbnext\MD\maps\300.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 960 +' 'Unconfirmed Records'); 960 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 961 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 961 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 961 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 961 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 962 +Filename Gsasfile "c:\tigbnext\MD\maps\299.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 963 +' 'Unconfirmed Records'); 963 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 964 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 964 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 964 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 964 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 965 +Filename Gsasfile "c:\tigbnext\MD\maps\292.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 966 +' 'Unconfirmed Records'); 966 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 967 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 967 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 967 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 967 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 968 +Filename Gsasfile "c:\tigbnext\MD\maps\288.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 969 +' 'Unconfirmed Records'); 969 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela trifasciata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 970 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 970 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 970 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 970 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 971 +Filename Gsasfile "c:\tigbnext\MD\maps\296.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 972 +' 'Unconfirmed Records'); 972 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 973 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 973 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 973 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 973 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 974 +Filename Gsasfile "c:\tigbnext\MD\maps\294.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 975 +' 'Unconfirmed Records'); 975 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 976 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 976 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 976 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 976 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 977 +Filename Gsasfile "c:\tigbnext\MD\maps\284.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 978 +' 'Unconfirmed Records'); 978 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 979 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 979 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 979 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 979 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 980 +Data Tempmap; set statemap; where state=25; NOTE: The data set WORK.TEMPMAP has 3993 observations and 7 variables. NOTE: The DATA statement used 0.51 seconds. 980 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 41.648294238. NOTE: PARALLEL2 = 42.473353769. NOTE: The data set WORK.TEMPMAP2 has 3993 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.18 seconds. 980 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 980 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 2737 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.21 seconds. NOTE: CALL EXECUTE generated line. 981 +flys2; where state=25; Run; NOTE: The data set WORK.BFLYTEMP has 8 observations and 32 variables. NOTE: The DATA statement used 0.17 seconds. NOTE: CALL EXECUTE generated line. 981 + Goptions Reset=Global Device=Mgif25 CBack=White Border; Run; 982 +Filename Gsasfile "c:\tigbnext\MA\maps\282.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 983 +' 'Unconfirmed Records'); 983 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 984 + Id State County; run; NOTE: Entry MGIF25 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 984 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 984 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 984 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 985 +Filename Gsasfile "c:\tigbnext\MA\maps\281.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 986 +' 'Unconfirmed Records'); 986 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 987 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 987 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 987 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 987 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 988 +Data Tempmap; set statemap; where state=26; NOTE: The data set WORK.TEMPMAP has 6365 observations and 7 variables. NOTE: The DATA statement used 0.54 seconds. 988 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 43.319177075. NOTE: PARALLEL2 = 46.565839195. NOTE: The data set WORK.TEMPMAP2 has 6365 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.2 seconds. 988 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 988 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 4583 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 989 +flys2; where state=26; Run; NOTE: The data set WORK.BFLYTEMP has 366 observations and 32 variables. NOTE: The DATA statement used 0.2 seconds. NOTE: CALL EXECUTE generated line. 989 + Goptions Reset=Global Device=Mgif26 CBack=White Border; Run; 990 +Filename Gsasfile "c:\tigbnext\MI\maps\331.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 991 +' 'Unconfirmed Records'); 991 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 992 + Id State County; run; NOTE: Entry MGIF26 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 992 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 992 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 992 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 993 +Filename Gsasfile "c:\tigbnext\MI\maps\325.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 994 +' 'Unconfirmed Records'); 994 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 995 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 995 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 995 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 995 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 996 +Filename Gsasfile "c:\tigbnext\MI\maps\326.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 997 +' 'Unconfirmed Records'); 997 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 998 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 998 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 998 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 998 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 999 +Filename Gsasfile "c:\tigbnext\MI\maps\324.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1000 +' 'Unconfirmed Records'); 1000 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1001 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1001 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1001 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1001 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1002 +Filename Gsasfile "c:\tigbnext\MI\maps\320.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1003 +' 'Unconfirmed Records'); 1003 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1004 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1004 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1004 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1004 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1005 +Filename Gsasfile "c:\tigbnext\MI\maps\328.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1006 +' 'Unconfirmed Records'); 1006 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1007 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1007 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1007 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1007 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1008 +Filename Gsasfile "c:\tigbnext\MI\maps\321.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1009 +' 'Unconfirmed Records'); 1009 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela macra"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 1010 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1010 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1010 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1010 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1011 +Filename Gsasfile "c:\tigbnext\MI\maps\323.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1012 +' 'Unconfirmed Records'); 1012 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1013 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1013 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1013 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1013 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1014 +Filename Gsasfile "c:\tigbnext\MI\maps\330.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1015 +' 'Unconfirmed Records'); 1015 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1016 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1016 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1016 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1016 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1017 +Filename Gsasfile "c:\tigbnext\MI\maps\322.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1018 +' 'Unconfirmed Records'); 1018 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1019 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1019 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1019 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1019 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1020 +Filename Gsasfile "c:\tigbnext\MI\maps\319.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1021 +' 'Unconfirmed Records'); 1021 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1022 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1022 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1022 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1022 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1023 +Filename Gsasfile "c:\tigbnext\MI\maps\318.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1024 +' 'Unconfirmed Records'); 1024 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1025 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1025 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1025 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1025 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1026 +Filename Gsasfile "c:\tigbnext\MI\maps\327.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1027 +' 'Unconfirmed Records'); 1027 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1028 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1028 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1028 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1028 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1029 +Filename Gsasfile "c:\tigbnext\MI\maps\329.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1030 +' 'Unconfirmed Records'); 1030 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1031 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1031 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 1031 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1031 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1032 +Data Tempmap; set statemap; where state=27; NOTE: The data set WORK.TEMPMAP has 7060 observations and 7 variables. NOTE: The DATA statement used 0.57 seconds. 1032 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 44.970293344. NOTE: PARALLEL2 = 47.913012046. NOTE: The data set WORK.TEMPMAP2 has 7060 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.21 seconds. 1032 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1032 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 2470 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1033 +flys2; where state=27; Run; NOTE: The data set WORK.BFLYTEMP has 78 observations and 32 variables. NOTE: The DATA statement used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1033 + Goptions Reset=Global Device=Mgif27 CBack=White Border; Run; 1034 +Filename Gsasfile "c:\tigbnext\MN\maps\338.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1035 +' 'Unconfirmed Records'); 1035 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1036 +Id State County; run; NOTE: Entry MGIF27 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1036 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1036 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1036 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1037 +Filename Gsasfile "c:\tigbnext\MN\maps\343.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1038 +' 'Unconfirmed Records'); 1038 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1039 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1039 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1039 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1039 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1040 +Filename Gsasfile "c:\tigbnext\MN\maps\339.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1041 +' 'Unconfirmed Records'); 1041 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1042 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1042 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1042 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1042 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1043 +Filename Gsasfile "c:\tigbnext\MN\maps\340.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1044 +' 'Unconfirmed Records'); 1044 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1045 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1045 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1045 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1045 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1046 +Filename Gsasfile "c:\tigbnext\MN\maps\337.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1047 +' 'Unconfirmed Records'); 1047 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1048 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1048 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1048 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1048 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1049 +Filename Gsasfile "c:\tigbnext\MN\maps\333.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1050 +' 'Unconfirmed Records'); 1050 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1051 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1051 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1051 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1051 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1052 +Filename Gsasfile "c:\tigbnext\MN\maps\342.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1053 +' 'Unconfirmed Records'); 1053 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1054 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1054 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1054 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1054 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1055 +Filename Gsasfile "c:\tigbnext\MN\maps\336.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1056 +' 'Unconfirmed Records'); 1056 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1057 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1057 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1057 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1057 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1058 +Filename Gsasfile "c:\tigbnext\MN\maps\344.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1059 +' 'Unconfirmed Records'); 1059 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1060 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1060 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1060 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1060 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1061 +Filename Gsasfile "c:\tigbnext\MN\maps\334.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1062 +' 'Unconfirmed Records'); 1062 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1063 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1063 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1063 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1063 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1064 +Filename Gsasfile "c:\tigbnext\MN\maps\332.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1065 +' 'Unconfirmed Records'); 1065 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1066 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1066 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1066 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1066 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1067 +Filename Gsasfile "c:\tigbnext\MN\maps\341.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1068 +' 'Unconfirmed Records'); 1068 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1069 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1069 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1069 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1069 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1070 +Filename Gsasfile "c:\tigbnext\MN\maps\335.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1071 +' 'Unconfirmed Records'); 1071 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1072 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1072 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1072 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1072 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1073 +Filename Gsasfile "c:\tigbnext\MN\maps\345.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1074 +' 'Unconfirmed Records'); 1074 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1075 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1075 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1075 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1075 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1076 +Data Tempmap; set statemap; where state=28; NOTE: The data set WORK.TEMPMAP has 5919 observations and 7 variables. NOTE: The DATA statement used 0.56 seconds. 1076 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 31.378599387. NOTE: PARALLEL2 = 33.789601522. NOTE: The data set WORK.TEMPMAP2 has 5919 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.2 seconds. 1076 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1076 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1752 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1077 +flys2; where state=28; Run; NOTE: The data set WORK.BFLYTEMP has 233 observations and 32 variables. NOTE: The DATA statement used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1077 + Goptions Reset=Global Device=Mgif28 CBack=White Border; Run; 1078 +Filename Gsasfile "c:\tigbnext\MS\maps\373.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1079 +' 'Unconfirmed Records'); 1079 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela abdominalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1080 + Id State County; run; NOTE: Entry MGIF28 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1080 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1080 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1080 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1081 +Filename Gsasfile "c:\tigbnext\MS\maps\377.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1082 +' 'Unconfirmed Records'); 1082 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela blanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1083 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1083 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1083 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1083 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1084 +Filename Gsasfile "c:\tigbnext\MS\maps\361.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1085 +' 'Unconfirmed Records'); 1085 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1086 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1086 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1086 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1086 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1087 +Filename Gsasfile "c:\tigbnext\MS\maps\354.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1088 +' 'Unconfirmed Records'); 1088 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cursitans"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1089 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1089 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1089 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1089 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1090 +Filename Gsasfile "c:\tigbnext\MS\maps\353.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1091 +' 'Unconfirmed Records'); 1091 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1092 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1092 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1092 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1092 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1093 +Filename Gsasfile "c:\tigbnext\MS\maps\364.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1094 +' 'Unconfirmed Records'); 1094 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1095 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1095 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1095 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1095 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1096 +Filename Gsasfile "c:\tigbnext\MS\maps\360.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1097 +' 'Unconfirmed Records'); 1097 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1098 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1098 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1098 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1098 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1099 +Filename Gsasfile "c:\tigbnext\MS\maps\368.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1100 +' 'Unconfirmed Records'); 1100 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hamata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1101 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1101 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1101 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1101 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1102 +Filename Gsasfile "c:\tigbnext\MS\maps\362.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1103 +' 'Unconfirmed Records'); 1103 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1104 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1104 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1104 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1104 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1105 +Filename Gsasfile "c:\tigbnext\MS\maps\358.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1106 +' 'Unconfirmed Records'); 1106 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1107 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1107 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1107 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1107 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1108 +Filename Gsasfile "c:\tigbnext\MS\maps\374.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1109 +' 'Unconfirmed Records'); 1109 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginipennis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1110 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1110 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1110 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1110 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1111 +Filename Gsasfile "c:\tigbnext\MS\maps\371.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1112 +' 'Unconfirmed Records'); 1112 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela pamphila"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1113 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1113 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1113 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1113 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1114 +Filename Gsasfile "c:\tigbnext\MS\maps\376.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1115 +' 'Unconfirmed Records'); 1115 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1116 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1116 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1116 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1116 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1117 +Filename Gsasfile "c:\tigbnext\MS\maps\357.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1118 +' 'Unconfirmed Records'); 1118 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1119 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1119 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1119 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1119 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1120 +Filename Gsasfile "c:\tigbnext\MS\maps\355.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1121 +' 'Unconfirmed Records'); 1121 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1122 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1122 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1122 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1122 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1123 +Filename Gsasfile "c:\tigbnext\MS\maps\375.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1124 +' 'Unconfirmed Records'); 1124 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1125 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1125 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1125 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1125 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1126 +Filename Gsasfile "c:\tigbnext\MS\maps\365.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1127 +' 'Unconfirmed Records'); 1127 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1128 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1128 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1128 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1128 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1129 +Filename Gsasfile "c:\tigbnext\MS\maps\370.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1130 +' 'Unconfirmed Records'); 1130 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela severa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1131 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1131 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1131 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1131 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1132 +Filename Gsasfile "c:\tigbnext\MS\maps\372.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1133 +' 'Unconfirmed Records'); 1133 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1134 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1134 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1134 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1134 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1135 +Filename Gsasfile "c:\tigbnext\MS\maps\369.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1136 +' 'Unconfirmed Records'); 1136 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1137 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1137 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1137 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1137 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1138 +Filename Gsasfile "c:\tigbnext\MS\maps\363.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1139 +' 'Unconfirmed Records'); 1139 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1140 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1140 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1140 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1140 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1141 +Filename Gsasfile "c:\tigbnext\MS\maps\359.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1142 +' 'Unconfirmed Records'); 1142 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela trifasciata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1143 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1143 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1143 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1143 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1144 +Filename Gsasfile "c:\tigbnext\MS\maps\367.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1145 +' 'Unconfirmed Records'); 1145 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1146 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1146 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1146 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1146 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1147 +Filename Gsasfile "c:\tigbnext\MS\maps\356.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1148 +' 'Unconfirmed Records'); 1148 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela wapleri"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1149 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1149 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1149 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1149 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1150 +Filename Gsasfile "c:\tigbnext\MS\maps\366.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1151 +' 'Unconfirmed Records'); 1151 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1152 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1152 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1152 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1152 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1153 +Data Tempmap; set statemap; where state=29; NOTE: The data set WORK.TEMPMAP has 7753 observations and 7 variables. NOTE: The DATA statement used 0.56 seconds. 1153 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 37.150423424. NOTE: PARALLEL2 = 39.459163967. NOTE: The data set WORK.TEMPMAP2 has 7753 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.23 seconds. 1153 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1153 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1598 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1154 +flys2; where state=29; Run; NOTE: The data set WORK.BFLYTEMP has 11 observations and 32 variables. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 1154 + Goptions Reset=Global Device=Mgif29 CBack=White Border; Run; 1155 +Filename Gsasfile "c:\tigbnext\MO\maps\346.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1156 +' 'Unconfirmed Records'); 1156 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela circumpicta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1157 + Id State County; run; NOTE: Entry MGIF29 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1157 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1157 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1157 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1158 +Filename Gsasfile "c:\tigbnext\MO\maps\351.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1159 +' 'Unconfirmed Records'); 1159 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1160 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1160 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1160 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1160 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1161 +Filename Gsasfile "c:\tigbnext\MO\maps\352.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1162 +' 'Unconfirmed Records'); 1162 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1163 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1163 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1163 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1163 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1164 +Filename Gsasfile "c:\tigbnext\MO\maps\348.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1165 +' 'Unconfirmed Records'); 1165 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1166 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1166 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1166 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1166 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1167 +Filename Gsasfile "c:\tigbnext\MO\maps\347.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1168 +' 'Unconfirmed Records'); 1168 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1169 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1169 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1169 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1169 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1170 +Filename Gsasfile "c:\tigbnext\MO\maps\349.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1171 +' 'Unconfirmed Records'); 1171 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1172 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1172 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1172 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1172 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1173 +Filename Gsasfile "c:\tigbnext\MO\maps\350.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1174 +' 'Unconfirmed Records'); 1174 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1175 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1175 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1175 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1175 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1176 +Data Tempmap; set statemap; where state=30; NOTE: The data set WORK.TEMPMAP has 12582 observations and 7 variables. NOTE: The DATA statement used 0.57 seconds. 1176 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 45.519058063. NOTE: PARALLEL2 = 47.840393475. NOTE: The data set WORK.TEMPMAP2 has 12582 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.25 seconds. 1176 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1176 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1575 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1177 +flys2; where state=30; Run; NOTE: The data set WORK.BFLYTEMP has 34 observations and 32 variables. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1177 + Goptions Reset=Global Device=Mgif30 CBack=White Border; Run; 1178 +Filename Gsasfile "c:\tigbnext\MT\maps\383.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1179 +' 'Unconfirmed Records'); 1179 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1180 + Id State County; run; NOTE: Entry MGIF30 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1180 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1180 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1180 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1181 +Filename Gsasfile "c:\tigbnext\MT\maps\384.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1182 +' 'Unconfirmed Records'); 1182 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1183 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1183 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1183 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1183 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1184 +Filename Gsasfile "c:\tigbnext\MT\maps\382.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1185 +' 'Unconfirmed Records'); 1185 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1186 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1186 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 1186 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1186 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1187 +Filename Gsasfile "c:\tigbnext\MT\maps\381.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1188 +' 'Unconfirmed Records'); 1188 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela oregona"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1189 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1189 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1189 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1189 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1190 +Filename Gsasfile "c:\tigbnext\MT\maps\380.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1191 +' 'Unconfirmed Records'); 1191 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1192 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1192 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1192 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1192 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1193 +Filename Gsasfile "c:\tigbnext\MT\maps\378.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1194 +' 'Unconfirmed Records'); 1194 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1195 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1195 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1195 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1195 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1196 +Filename Gsasfile "c:\tigbnext\MT\maps\379.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1197 +' 'Unconfirmed Records'); 1197 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1198 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1198 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1198 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1198 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1199 +Filename Gsasfile "c:\tigbnext\MT\maps\385.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1200 +' 'Unconfirmed Records'); 1200 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1201 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1201 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1201 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1201 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1202 +Data Tempmap; set statemap; where state=31; NOTE: The data set WORK.TEMPMAP has 3246 observations and 7 variables. NOTE: The DATA statement used 0.5 seconds. 1202 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 40.749885305. NOTE: PARALLEL2 = 42.251037942. NOTE: The data set WORK.TEMPMAP2 has 3246 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.14 seconds. 1202 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1202 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 932 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.14 seconds. NOTE: CALL EXECUTE generated line. 1203 +flys2; where state=31; Run; NOTE: The data set WORK.BFLYTEMP has 517 observations and 32 variables. NOTE: The DATA statement used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1203 + Goptions Reset=Global Device=Mgif31 CBack=White Border; Run; 1204 +Filename Gsasfile "c:\tigbnext\NE\maps\440.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1205 +' 'Unconfirmed Records'); 1205 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila cylindriformis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1206 + Id State County; run; NOTE: Entry MGIF31 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1206 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1206 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1206 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1207 +Filename Gsasfile "c:\tigbnext\NE\maps\442.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1208 +' 'Unconfirmed Records'); 1208 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela celeripes"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1209 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1209 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1209 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1209 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1210 +Filename Gsasfile "c:\tigbnext\NE\maps\437.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1211 +' 'Unconfirmed Records'); 1211 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela circumpicta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1212 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1212 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1212 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1212 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1213 +Filename Gsasfile "c:\tigbnext\NE\maps\422.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1214 +' 'Unconfirmed Records'); 1214 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1215 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1215 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1215 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1215 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1216 +Filename Gsasfile "c:\tigbnext\NE\maps\415.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1217 +' 'Unconfirmed Records'); 1217 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cursitans"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1218 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1218 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1218 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1218 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1219 +Filename Gsasfile "c:\tigbnext\NE\maps\425.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1220 +' 'Unconfirmed Records'); 1220 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela denverensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1221 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1221 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1221 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1221 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1222 +Filename Gsasfile "c:\tigbnext\NE\maps\428.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1223 +' 'Unconfirmed Records'); 1223 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1224 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1224 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1224 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1224 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1225 +Filename Gsasfile "c:\tigbnext\NE\maps\423.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1226 +' 'Unconfirmed Records'); 1226 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1227 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1227 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1227 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1227 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1228 +Filename Gsasfile "c:\tigbnext\NE\maps\417.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1229 +' 'Unconfirmed Records'); 1229 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela fulgida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1230 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1230 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1230 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1230 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1231 +Filename Gsasfile "c:\tigbnext\NE\maps\424.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1232 +' 'Unconfirmed Records'); 1232 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1233 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1233 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1233 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1233 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1234 +Filename Gsasfile "c:\tigbnext\NE\maps\432.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1235 +' 'Unconfirmed Records'); 1235 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lengi"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 1236 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1236 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1236 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1236 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1237 +Filename Gsasfile "c:\tigbnext\NE\maps\421.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1238 +' 'Unconfirmed Records'); 1238 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1239 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1239 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1239 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1239 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1240 +Filename Gsasfile "c:\tigbnext\NE\maps\418.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1241 +' 'Unconfirmed Records'); 1241 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1242 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1242 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1242 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1242 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1243 +Filename Gsasfile "c:\tigbnext\NE\maps\443.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1244 +' 'Unconfirmed Records'); 1244 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1245 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1245 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1245 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1245 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1246 +Filename Gsasfile "c:\tigbnext\NE\maps\439.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1247 +' 'Unconfirmed Records'); 1247 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1248 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1248 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1248 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1248 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1249 +Filename Gsasfile "c:\tigbnext\NE\maps\434.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1250 +' 'Unconfirmed Records'); 1250 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela macra"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 1251 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1251 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1251 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1251 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1252 +Filename Gsasfile "c:\tigbnext\NE\maps\435.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1253 +' 'Unconfirmed Records'); 1253 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1254 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1254 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1254 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1254 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1255 +Filename Gsasfile "c:\tigbnext\NE\maps\427.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1256 +' 'Unconfirmed Records'); 1256 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nevadica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1257 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1257 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1257 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1257 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1258 +Filename Gsasfile "c:\tigbnext\NE\maps\433.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1259 +' 'Unconfirmed Records'); 1259 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela pulchra"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1260 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1260 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1260 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1260 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1261 +Filename Gsasfile "c:\tigbnext\NE\maps\441.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1262 +' 'Unconfirmed Records'); 1262 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1263 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1263 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1263 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1263 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1264 +Filename Gsasfile "c:\tigbnext\NE\maps\420.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1265 +' 'Unconfirmed Records'); 1265 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1266 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1266 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1266 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1266 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1267 +Filename Gsasfile "c:\tigbnext\NE\maps\416.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1268 +' 'Unconfirmed Records'); 1268 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1269 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1269 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1269 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1269 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1270 +Filename Gsasfile "c:\tigbnext\NE\maps\430.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1271 +' 'Unconfirmed Records'); 1271 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1272 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1272 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1272 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1272 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1273 +Filename Gsasfile "c:\tigbnext\NE\maps\438.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1274 +' 'Unconfirmed Records'); 1274 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1275 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1275 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1275 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1275 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1276 +Filename Gsasfile "c:\tigbnext\NE\maps\436.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1277 +' 'Unconfirmed Records'); 1277 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1278 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1278 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1278 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1278 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1279 +Filename Gsasfile "c:\tigbnext\NE\maps\419.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1280 +' 'Unconfirmed Records'); 1280 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1281 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1281 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1281 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1281 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1282 +Filename Gsasfile "c:\tigbnext\NE\maps\426.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1283 +' 'Unconfirmed Records'); 1283 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela togata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1284 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1284 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1284 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1284 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1285 +Filename Gsasfile "c:\tigbnext\NE\maps\429.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1286 +' 'Unconfirmed Records'); 1286 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1287 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1287 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1287 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1287 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1288 +Filename Gsasfile "c:\tigbnext\NE\maps\431.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1289 +' 'Unconfirmed Records'); 1289 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1290 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1290 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1290 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1290 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1291 +Filename Gsasfile "c:\tigbnext\NE\maps\414.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1292 +' 'Unconfirmed Records'); 1292 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1293 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1293 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1293 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1293 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1294 +Data Tempmap; set statemap; where state=32; NOTE: The data set WORK.TEMPMAP has 1685 observations and 7 variables. NOTE: The DATA statement used 0.5 seconds. 1294 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 36.75165649. NOTE: PARALLEL2 = 40.2521421. NOTE: The data set WORK.TEMPMAP2 has 1685 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.14 seconds. 1294 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1294 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 321 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1295 +flys2; where state=32; Run; NOTE: The data set WORK.BFLYTEMP has 55 observations and 32 variables. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1295 + Goptions Reset=Global Device=Mgif32 CBack=White Border; Run; 1296 +Filename Gsasfile "c:\tigbnext\NV\maps\481.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1297 +' 'Unconfirmed Records'); 1297 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela haemorrhagica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1298 + Id State County; run; NOTE: Entry MGIF32 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1298 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1298 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1298 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1299 +Filename Gsasfile "c:\tigbnext\NV\maps\496.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1300 +' 'Unconfirmed Records'); 1300 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1301 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1301 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1301 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1301 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1302 +Filename Gsasfile "c:\tigbnext\NV\maps\484.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1303 +' 'Unconfirmed Records'); 1303 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lemniscata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1304 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1304 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1304 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1304 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1305 +Filename Gsasfile "c:\tigbnext\NV\maps\489.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1306 +' 'Unconfirmed Records'); 1306 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1307 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1307 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1307 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1307 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1308 +Filename Gsasfile "c:\tigbnext\NV\maps\491.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1309 +' 'Unconfirmed Records'); 1309 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1310 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1310 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 1310 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1310 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1311 +Filename Gsasfile "c:\tigbnext\NV\maps\486.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1312 +' 'Unconfirmed Records'); 1312 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nevadica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1313 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1313 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 1313 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1313 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1314 +Filename Gsasfile "c:\tigbnext\NV\maps\490.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1315 +' 'Unconfirmed Records'); 1315 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela oregona"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1316 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1316 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1316 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1316 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1317 +Filename Gsasfile "c:\tigbnext\NV\maps\482.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1318 +' 'Unconfirmed Records'); 1318 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela parowana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1319 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1319 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1319 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1319 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1320 +Filename Gsasfile "c:\tigbnext\NV\maps\494.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1321 +' 'Unconfirmed Records'); 1321 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela plutonica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1322 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1322 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1322 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1322 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1323 +Filename Gsasfile "c:\tigbnext\NV\maps\480.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1324 +' 'Unconfirmed Records'); 1324 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela praetextata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1325 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1325 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1325 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1325 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1326 +Filename Gsasfile "c:\tigbnext\NV\maps\492.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1327 +' 'Unconfirmed Records'); 1327 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1328 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1328 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1328 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1328 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1329 +Filename Gsasfile "c:\tigbnext\NV\maps\488.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1330 +' 'Unconfirmed Records'); 1330 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1331 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1331 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1331 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1331 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1332 +Filename Gsasfile "c:\tigbnext\NV\maps\495.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1333 +' 'Unconfirmed Records'); 1333 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tenuisignata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1334 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1334 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1334 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1334 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1335 +Filename Gsasfile "c:\tigbnext\NV\maps\487.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1336 +' 'Unconfirmed Records'); 1336 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1337 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1337 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 1337 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1337 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1338 +Filename Gsasfile "c:\tigbnext\NV\maps\493.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1339 +' 'Unconfirmed Records'); 1339 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1340 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1340 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 1340 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1340 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1341 +Filename Gsasfile "c:\tigbnext\NV\maps\485.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1342 +' 'Unconfirmed Records'); 1342 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela willistoni"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1343 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1343 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1343 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1343 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1344 +Filename Gsasfile "c:\tigbnext\NV\maps\483.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1345 +' 'Unconfirmed Records'); 1345 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1346 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1346 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1346 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1346 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1347 +Data Tempmap; set statemap; where state=33; NOTE: The data set WORK.TEMPMAP has 1519 observations and 7 variables. NOTE: The DATA statement used 0.5 seconds. 1347 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 43.34897036. NOTE: PARALLEL2 = 44.653317925. NOTE: The data set WORK.TEMPMAP2 has 1519 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.17 seconds. 1347 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1347 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 883 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1348 +flys2; where state=33; Run; NOTE: The data set WORK.BFLYTEMP has 107 observations and 32 variables. NOTE: The DATA statement used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1348 + Goptions Reset=Global Device=Mgif33 CBack=White Border; Run; 1349 +Filename Gsasfile "c:\tigbnext\NH\maps\445.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1350 +' 'Unconfirmed Records'); 1350 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela ancocisconensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1351 + Id State County; run; NOTE: Entry MGIF33 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1351 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1351 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1351 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1352 +Filename Gsasfile "c:\tigbnext\NH\maps\456.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1353 +' 'Unconfirmed Records'); 1353 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1354 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1354 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1354 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1354 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1355 +Filename Gsasfile "c:\tigbnext\NH\maps\451.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1356 +' 'Unconfirmed Records'); 1356 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1357 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1357 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1357 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1357 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1358 +Filename Gsasfile "c:\tigbnext\NH\maps\452.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1359 +' 'Unconfirmed Records'); 1359 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1360 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1360 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1360 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1360 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1361 +Filename Gsasfile "c:\tigbnext\NH\maps\447.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1362 +' 'Unconfirmed Records'); 1362 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1363 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1363 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1363 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1363 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1364 +Filename Gsasfile "c:\tigbnext\NH\maps\455.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1365 +' 'Unconfirmed Records'); 1365 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1366 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1366 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1366 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1366 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1367 +Filename Gsasfile "c:\tigbnext\NH\maps\448.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1368 +' 'Unconfirmed Records'); 1368 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1369 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1369 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 1369 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1369 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1370 +Filename Gsasfile "c:\tigbnext\NH\maps\459.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1371 +' 'Unconfirmed Records'); 1371 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginipennis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1372 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1372 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1372 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1372 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1373 +Filename Gsasfile "c:\tigbnext\NH\maps\449.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1374 +' 'Unconfirmed Records'); 1374 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1375 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1375 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1375 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1375 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1376 +Filename Gsasfile "c:\tigbnext\NH\maps\458.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1377 +' 'Unconfirmed Records'); 1377 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1378 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1378 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1378 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1378 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1379 +Filename Gsasfile "c:\tigbnext\NH\maps\454.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1380 +' 'Unconfirmed Records'); 1380 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela puritana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1381 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1381 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 1381 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1381 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1382 +Filename Gsasfile "c:\tigbnext\NH\maps\450.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1383 +' 'Unconfirmed Records'); 1383 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1384 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1384 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 1384 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1384 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1385 +Filename Gsasfile "c:\tigbnext\NH\maps\446.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1386 +' 'Unconfirmed Records'); 1386 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1387 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1387 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1387 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1387 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1388 +Filename Gsasfile "c:\tigbnext\NH\maps\444.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1389 +' 'Unconfirmed Records'); 1389 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1390 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1390 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 1390 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1390 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1391 +Filename Gsasfile "c:\tigbnext\NH\maps\453.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1392 +' 'Unconfirmed Records'); 1392 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1393 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1393 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1393 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1393 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1394 +Filename Gsasfile "c:\tigbnext\NH\maps\457.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1395 +' 'Unconfirmed Records'); 1395 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1396 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1396 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1396 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1396 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1397 +Data Tempmap; set statemap; where state=34; NOTE: The data set WORK.TEMPMAP has 3793 observations and 7 variables. NOTE: The DATA statement used 0.5 seconds. 1397 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 39.535498161. NOTE: PARALLEL2 = 40.749605268. NOTE: The data set WORK.TEMPMAP2 has 3793 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.14 seconds. 1397 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1397 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1414 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1398 +flys2; where state=34; Run; NOTE: The data set WORK.BFLYTEMP has 174 observations and 32 variables. NOTE: The DATA statement used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1398 + Goptions Reset=Global Device=Mgif34 CBack=White Border; Run; 1399 +Filename Gsasfile "c:\tigbnext\NJ\maps\476.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1400 +' 'Unconfirmed Records'); 1400 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela abdominalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1401 + Id State County; run; NOTE: Entry MGIF34 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1401 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1401 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1401 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1402 +Filename Gsasfile "c:\tigbnext\NJ\maps\461.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1403 +' 'Unconfirmed Records'); 1403 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1404 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1404 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1404 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1404 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1405 +Filename Gsasfile "c:\tigbnext\NJ\maps\469.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1406 +' 'Unconfirmed Records'); 1406 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1407 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1407 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1407 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1407 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1408 +Filename Gsasfile "c:\tigbnext\NJ\maps\467.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1409 +' 'Unconfirmed Records'); 1409 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1410 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1410 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1410 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1410 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1411 +Filename Gsasfile "c:\tigbnext\NJ\maps\468.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1412 +' 'Unconfirmed Records'); 1412 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1413 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1413 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1413 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1413 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1414 +Filename Gsasfile "c:\tigbnext\NJ\maps\465.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1415 +' 'Unconfirmed Records'); 1415 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1416 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1416 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1416 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1416 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1417 +Filename Gsasfile "c:\tigbnext\NJ\maps\463.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1418 +' 'Unconfirmed Records'); 1418 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1419 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1419 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1419 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1419 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1420 +Filename Gsasfile "c:\tigbnext\NJ\maps\474.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1421 +' 'Unconfirmed Records'); 1421 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1422 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1422 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1422 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1422 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1423 +Filename Gsasfile "c:\tigbnext\NJ\maps\477.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1424 +' 'Unconfirmed Records'); 1424 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginipennis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1425 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1425 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1425 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1425 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1426 +Filename Gsasfile "c:\tigbnext\NJ\maps\472.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1427 +' 'Unconfirmed Records'); 1427 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1428 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1428 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 1428 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1428 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1429 +Filename Gsasfile "c:\tigbnext\NJ\maps\479.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1430 +' 'Unconfirmed Records'); 1430 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1431 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1431 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1431 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1431 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1432 +Filename Gsasfile "c:\tigbnext\NJ\maps\464.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1433 +' 'Unconfirmed Records'); 1433 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1434 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1434 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1434 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1434 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1435 +Filename Gsasfile "c:\tigbnext\NJ\maps\462.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1436 +' 'Unconfirmed Records'); 1436 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1437 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1437 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1437 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1437 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1438 +Filename Gsasfile "c:\tigbnext\NJ\maps\478.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1439 +' 'Unconfirmed Records'); 1439 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1440 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1440 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1440 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1440 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1441 +Filename Gsasfile "c:\tigbnext\NJ\maps\471.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1442 +' 'Unconfirmed Records'); 1442 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1443 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1443 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1443 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1443 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1444 +Filename Gsasfile "c:\tigbnext\NJ\maps\475.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1445 +' 'Unconfirmed Records'); 1445 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1446 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1446 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1446 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1446 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1447 +Filename Gsasfile "c:\tigbnext\NJ\maps\470.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1448 +' 'Unconfirmed Records'); 1448 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1449 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1449 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1449 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1449 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1450 +Filename Gsasfile "c:\tigbnext\NJ\maps\466.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1451 +' 'Unconfirmed Records'); 1451 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela trifasciata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1452 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1452 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1452 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1452 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1453 +Filename Gsasfile "c:\tigbnext\NJ\maps\473.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1454 +' 'Unconfirmed Records'); 1454 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1455 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1455 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1455 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1455 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1456 +Filename Gsasfile "c:\tigbnext\NJ\maps\460.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1457 +' 'Unconfirmed Records'); 1457 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1458 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1458 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1458 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1458 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1459 +Data Tempmap; set statemap; where state=36; NOTE: The data set WORK.TEMPMAP has 8765 observations and 7 variables. NOTE: The DATA statement used 0.59 seconds. 1459 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 41.626219066. NOTE: PARALLEL2 = 43.881957342. NOTE: The data set WORK.TEMPMAP2 has 8765 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.23 seconds. 1459 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1459 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 3833 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1460 +flys2; where state=36; Run; NOTE: The data set WORK.BFLYTEMP has 48 observations and 32 variables. NOTE: The DATA statement used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1460 + Goptions Reset=Global Device=Mgif36 CBack=White Border; Run; 1461 +Filename Gsasfile "c:\tigbnext\NY\maps\497.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1462 +' 'Unconfirmed Records'); 1462 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1463 + State County; run; NOTE: Entry MGIF36 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1463 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1463 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1463 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1464 +Filename Gsasfile "c:\tigbnext\NY\maps\509.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1465 +' 'Unconfirmed Records'); 1465 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1466 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1466 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1466 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1466 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1467 +Filename Gsasfile "c:\tigbnext\NY\maps\504.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1468 +' 'Unconfirmed Records'); 1468 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1469 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1469 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1469 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1469 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1470 +Filename Gsasfile "c:\tigbnext\NY\maps\505.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1471 +' 'Unconfirmed Records'); 1471 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1472 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1472 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1472 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1472 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1473 +Filename Gsasfile "c:\tigbnext\NY\maps\503.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1474 +' 'Unconfirmed Records'); 1474 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1475 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1475 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1475 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1475 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1476 +Filename Gsasfile "c:\tigbnext\NY\maps\507.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1477 +' 'Unconfirmed Records'); 1477 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1478 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1478 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 1478 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1478 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1479 +Filename Gsasfile "c:\tigbnext\NY\maps\500.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1480 +' 'Unconfirmed Records'); 1480 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1481 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1481 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1481 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1481 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1482 +Filename Gsasfile "c:\tigbnext\NY\maps\502.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1483 +' 'Unconfirmed Records'); 1483 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1484 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1484 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1484 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1484 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1485 +Filename Gsasfile "c:\tigbnext\NY\maps\508.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1486 +' 'Unconfirmed Records'); 1486 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1487 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1487 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1487 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1487 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1488 +Filename Gsasfile "c:\tigbnext\NY\maps\501.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1489 +' 'Unconfirmed Records'); 1489 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1490 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1490 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1490 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1490 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1491 +Filename Gsasfile "c:\tigbnext\NY\maps\499.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1492 +' 'Unconfirmed Records'); 1492 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1493 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1493 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1493 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1493 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1494 +Filename Gsasfile "c:\tigbnext\NY\maps\510.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1495 +' 'Unconfirmed Records'); 1495 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1496 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1496 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1496 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1496 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1497 +Filename Gsasfile "c:\tigbnext\NY\maps\498.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1498 +' 'Unconfirmed Records'); 1498 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1499 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1499 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1499 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1499 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1500 +Filename Gsasfile "c:\tigbnext\NY\maps\506.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1501 +' 'Unconfirmed Records'); 1501 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1502 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1502 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 1502 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1502 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1503 +Filename Gsasfile "c:\tigbnext\NY\maps\511.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1504 +' 'Unconfirmed Records'); 1504 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1505 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1505 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1505 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1505 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1506 +Data Tempmap; set statemap; where state=37; NOTE: The data set WORK.TEMPMAP has 16814 observations and 7 variables. NOTE: The DATA statement used 0.6 seconds. 1506 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 34.525697839. NOTE: PARALLEL2 = 35.900519297. NOTE: The data set WORK.TEMPMAP2 has 16814 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.26 seconds. 1506 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1506 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 5360 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1507 +flys2; where state=37; Run; NOTE: The data set WORK.BFLYTEMP has 324 observations and 32 variables. NOTE: The DATA statement used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1507 + Goptions Reset=Global Device=Mgif37 CBack=White Border; Run; 1508 +Filename Gsasfile "c:\tigbnext\NC\maps\405.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1509 +' 'Unconfirmed Records'); 1509 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela abdominalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1510 + Id State County; run; NOTE: Entry MGIF37 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1510 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 1510 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1510 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1511 +Filename Gsasfile "c:\tigbnext\NC\maps\398.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1512 +' 'Unconfirmed Records'); 1512 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela ancocisconensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1513 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1513 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 1513 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1513 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1514 +Filename Gsasfile "c:\tigbnext\NC\maps\408.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1515 +' 'Unconfirmed Records'); 1515 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela blanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1516 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1516 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 1516 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1516 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1517 +Filename Gsasfile "c:\tigbnext\NC\maps\386.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1518 +' 'Unconfirmed Records'); 1518 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1519 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1519 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 1519 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1519 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1520 +Filename Gsasfile "c:\tigbnext\NC\maps\394.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1521 +' 'Unconfirmed Records'); 1521 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1522 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1522 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 1522 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1522 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1523 +Filename Gsasfile "c:\tigbnext\NC\maps\403.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1524 +' 'Unconfirmed Records'); 1524 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela gratiosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1525 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1525 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 1525 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1525 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 1526 +Filename Gsasfile "c:\tigbnext\NC\maps\392.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1527 +' 'Unconfirmed Records'); 1527 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1528 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1528 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 1528 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1528 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1529 +Filename Gsasfile "c:\tigbnext\NC\maps\390.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1530 +' 'Unconfirmed Records'); 1530 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1531 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1531 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 1531 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1531 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 1532 +Filename Gsasfile "c:\tigbnext\NC\maps\401.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1533 +' 'Unconfirmed Records'); 1533 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1534 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1534 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 1534 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1534 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1535 +Filename Gsasfile "c:\tigbnext\NC\maps\395.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1536 +' 'Unconfirmed Records'); 1536 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nigrior"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1537 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1537 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 1537 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1537 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1538 +Filename Gsasfile "c:\tigbnext\NC\maps\400.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1539 +' 'Unconfirmed Records'); 1539 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1540 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1540 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 1540 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1540 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1541 +Filename Gsasfile "c:\tigbnext\NC\maps\407.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1542 +' 'Unconfirmed Records'); 1542 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1543 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1543 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 1543 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1543 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1544 +Filename Gsasfile "c:\tigbnext\NC\maps\389.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1545 +' 'Unconfirmed Records'); 1545 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1546 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1546 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 1546 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1546 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1547 +Filename Gsasfile "c:\tigbnext\NC\maps\388.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1548 +' 'Unconfirmed Records'); 1548 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1549 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1549 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 1549 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1549 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1550 +Filename Gsasfile "c:\tigbnext\NC\maps\406.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1551 +' 'Unconfirmed Records'); 1551 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1552 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1552 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 1552 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1552 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1553 +Filename Gsasfile "c:\tigbnext\NC\maps\396.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1554 +' 'Unconfirmed Records'); 1554 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1555 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1555 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 1555 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1555 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1556 +Filename Gsasfile "c:\tigbnext\NC\maps\404.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1557 +' 'Unconfirmed Records'); 1557 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1558 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1558 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 1558 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1558 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1559 +Filename Gsasfile "c:\tigbnext\NC\maps\402.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1560 +' 'Unconfirmed Records'); 1560 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1561 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1561 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 1561 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1561 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1562 +Filename Gsasfile "c:\tigbnext\NC\maps\393.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1563 +' 'Unconfirmed Records'); 1563 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1564 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1564 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 1564 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1564 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1565 +Filename Gsasfile "c:\tigbnext\NC\maps\391.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1566 +' 'Unconfirmed Records'); 1566 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela trifasciata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1567 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1567 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 1567 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1567 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1568 +Filename Gsasfile "c:\tigbnext\NC\maps\399.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1569 +' 'Unconfirmed Records'); 1569 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1570 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1570 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 1570 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1570 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1571 +Filename Gsasfile "c:\tigbnext\NC\maps\397.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1572 +' 'Unconfirmed Records'); 1572 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1573 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1573 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 1573 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1573 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1574 +Filename Gsasfile "c:\tigbnext\NC\maps\387.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1575 +' 'Unconfirmed Records'); 1575 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1576 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1576 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 1576 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1576 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1577 +Data Tempmap; set statemap; where state=38; NOTE: The data set WORK.TEMPMAP has 4216 observations and 7 variables. NOTE: The DATA statement used 0.51 seconds. 1577 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 46.701486752. NOTE: PARALLEL2 = 48.234153881. NOTE: The data set WORK.TEMPMAP2 has 4216 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.21 seconds. 1577 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1577 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1013 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1578 +flys2; where state=38; Run; NOTE: The data set WORK.BFLYTEMP has 14 observations and 32 variables. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 1578 + Goptions Reset=Global Device=Mgif38 CBack=White Border; Run; 1579 +Filename Gsasfile "c:\tigbnext\ND\maps\410.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1580 +' 'Unconfirmed Records'); 1580 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela circumpicta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1581 + Id State County; run; NOTE: Entry MGIF38 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1581 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 1581 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1581 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1582 +Filename Gsasfile "c:\tigbnext\ND\maps\409.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1583 +' 'Unconfirmed Records'); 1583 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cursitans"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1584 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1584 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1584 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1584 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1585 +Filename Gsasfile "c:\tigbnext\ND\maps\411.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1586 +' 'Unconfirmed Records'); 1586 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela fulgida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1587 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1587 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1587 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1587 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1588 +Filename Gsasfile "c:\tigbnext\ND\maps\413.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1589 +' 'Unconfirmed Records'); 1589 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1590 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1590 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1590 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1590 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1591 +Filename Gsasfile "c:\tigbnext\ND\maps\412.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1592 +' 'Unconfirmed Records'); 1592 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1593 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1593 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1593 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1593 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1594 +Data Tempmap; set statemap; where state=39; NOTE: The data set WORK.TEMPMAP has 4247 observations and 7 variables. NOTE: The DATA statement used 0.51 seconds. 1594 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 39.296591805. NOTE: PARALLEL2 = 41.084789971. NOTE: The data set WORK.TEMPMAP2 has 4247 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.18 seconds. 1594 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1594 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1359 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1595 +flys2; where state=39; Run; NOTE: The data set WORK.BFLYTEMP has 341 observations and 32 variables. NOTE: The DATA statement used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1595 + Goptions Reset=Global Device=Mgif39 CBack=White Border; Run; 1596 +Filename Gsasfile "c:\tigbnext\OH\maps\524.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1597 +' 'Unconfirmed Records'); 1597 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela ancocisconensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1598 + Id State County; run; NOTE: Entry MGIF39 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1598 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1598 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1598 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1599 +Filename Gsasfile "c:\tigbnext\OH\maps\519.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1600 +' 'Unconfirmed Records'); 1600 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1601 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1601 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1601 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1601 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1602 +Filename Gsasfile "c:\tigbnext\OH\maps\513.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1603 +' 'Unconfirmed Records'); 1603 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cursitans"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1604 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1604 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1604 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1604 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1605 +Filename Gsasfile "c:\tigbnext\OH\maps\522.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1606 +' 'Unconfirmed Records'); 1606 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1607 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1607 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1607 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1607 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1608 +Filename Gsasfile "c:\tigbnext\OH\maps\518.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1609 +' 'Unconfirmed Records'); 1609 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1610 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1610 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1610 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1610 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1611 +Filename Gsasfile "c:\tigbnext\OH\maps\520.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1612 +' 'Unconfirmed Records'); 1612 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1613 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1613 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1613 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1613 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1614 +Filename Gsasfile "c:\tigbnext\OH\maps\517.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1615 +' 'Unconfirmed Records'); 1615 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1616 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1616 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1616 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1616 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1617 +Filename Gsasfile "c:\tigbnext\OH\maps\515.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1618 +' 'Unconfirmed Records'); 1618 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1619 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1619 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1619 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1619 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1620 +Filename Gsasfile "c:\tigbnext\OH\maps\531.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1621 +' 'Unconfirmed Records'); 1621 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginipennis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1622 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1622 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1622 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1622 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1623 +Filename Gsasfile "c:\tigbnext\OH\maps\525.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1624 +' 'Unconfirmed Records'); 1624 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1625 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1625 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1625 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1625 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1626 +Filename Gsasfile "c:\tigbnext\OH\maps\530.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1627 +' 'Unconfirmed Records'); 1627 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1628 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1628 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1628 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1628 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1629 +Filename Gsasfile "c:\tigbnext\OH\maps\516.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1630 +' 'Unconfirmed Records'); 1630 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1631 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1631 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1631 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1631 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1632 +Filename Gsasfile "c:\tigbnext\OH\maps\514.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1633 +' 'Unconfirmed Records'); 1633 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1634 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1634 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1634 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1634 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1635 +Filename Gsasfile "c:\tigbnext\OH\maps\529.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1636 +' 'Unconfirmed Records'); 1636 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1637 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1637 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1637 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1637 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1638 +Filename Gsasfile "c:\tigbnext\OH\maps\523.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1639 +' 'Unconfirmed Records'); 1639 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1640 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1640 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1640 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1640 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1641 +Filename Gsasfile "c:\tigbnext\OH\maps\528.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1642 +' 'Unconfirmed Records'); 1642 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1643 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1643 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1643 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1643 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1644 +Filename Gsasfile "c:\tigbnext\OH\maps\527.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1645 +' 'Unconfirmed Records'); 1645 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1646 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1646 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1646 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1646 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1647 +Filename Gsasfile "c:\tigbnext\OH\maps\521.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1648 +' 'Unconfirmed Records'); 1648 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1649 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1649 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1649 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1649 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1650 +Filename Gsasfile "c:\tigbnext\OH\maps\526.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1651 +' 'Unconfirmed Records'); 1651 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1652 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1652 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1652 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1652 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1653 +Filename Gsasfile "c:\tigbnext\OH\maps\512.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1654 +' 'Unconfirmed Records'); 1654 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1655 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1655 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1655 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1655 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1656 +Data Tempmap; set statemap; where state=40; NOTE: The data set WORK.TEMPMAP has 5452 observations and 7 variables. NOTE: The DATA statement used 0.53 seconds. 1656 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 34.462115608. NOTE: PARALLEL2 = 36.155483428. NOTE: The data set WORK.TEMPMAP2 has 5452 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.2 seconds. 1656 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1656 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1213 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1657 +flys2; where state=40; Run; NOTE: The data set WORK.BFLYTEMP has 366 observations and 32 variables. NOTE: The DATA statement used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1657 + Goptions Reset=Global Device=Mgif40 CBack=White Border; Run; 1658 +Filename Gsasfile "c:\tigbnext\OK\maps\553.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1659 +' 'Unconfirmed Records'); 1659 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila cylindriformis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1660 + Id State County; run; NOTE: Entry MGIF40 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1660 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1660 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1660 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1661 +Filename Gsasfile "c:\tigbnext\OK\maps\550.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1662 +' 'Unconfirmed Records'); 1662 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela belfragei"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1663 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1663 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1663 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1663 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1664 +Filename Gsasfile "c:\tigbnext\OK\maps\556.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1665 +' 'Unconfirmed Records'); 1665 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela celeripes"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1666 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1666 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1666 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1666 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1667 +Filename Gsasfile "c:\tigbnext\OK\maps\551.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1668 +' 'Unconfirmed Records'); 1668 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela circumpicta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1669 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1669 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1669 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1669 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1670 +Filename Gsasfile "c:\tigbnext\OK\maps\536.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1671 +' 'Unconfirmed Records'); 1671 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1672 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1672 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1672 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1672 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1673 +Filename Gsasfile "c:\tigbnext\OK\maps\543.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1674 +' 'Unconfirmed Records'); 1674 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1675 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1675 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1675 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1675 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1676 +Filename Gsasfile "c:\tigbnext\OK\maps\537.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1677 +' 'Unconfirmed Records'); 1677 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1678 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1678 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1678 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1678 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1679 +Filename Gsasfile "c:\tigbnext\OK\maps\533.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1680 +' 'Unconfirmed Records'); 1680 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela fulgida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1681 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1681 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1681 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1681 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1682 +Filename Gsasfile "c:\tigbnext\OK\maps\538.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1683 +' 'Unconfirmed Records'); 1683 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1684 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1684 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1684 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1684 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1685 +Filename Gsasfile "c:\tigbnext\OK\maps\546.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1686 +' 'Unconfirmed Records'); 1686 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lengi"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 1687 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1687 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1687 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1687 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1688 +Filename Gsasfile "c:\tigbnext\OK\maps\535.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1689 +' 'Unconfirmed Records'); 1689 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1690 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1690 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1690 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1690 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1691 +Filename Gsasfile "c:\tigbnext\OK\maps\541.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1692 +' 'Unconfirmed Records'); 1692 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nevadica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1693 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1693 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1693 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1693 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1694 +Filename Gsasfile "c:\tigbnext\OK\maps\539.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1695 +' 'Unconfirmed Records'); 1695 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela obsoleta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1696 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1696 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1696 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1696 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1697 +Filename Gsasfile "c:\tigbnext\OK\maps\547.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1698 +' 'Unconfirmed Records'); 1698 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela pulchra"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1699 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1699 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1699 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1699 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1700 +Filename Gsasfile "c:\tigbnext\OK\maps\555.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1701 +' 'Unconfirmed Records'); 1701 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1702 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1702 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1702 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1702 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1703 +Filename Gsasfile "c:\tigbnext\OK\maps\534.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1704 +' 'Unconfirmed Records'); 1704 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1705 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1705 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1705 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1705 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1706 +Filename Gsasfile "c:\tigbnext\OK\maps\554.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1707 +' 'Unconfirmed Records'); 1707 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1708 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1708 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1708 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1708 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1709 +Filename Gsasfile "c:\tigbnext\OK\maps\548.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1710 +' 'Unconfirmed Records'); 1710 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela schauppii"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1711 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1711 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1711 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1711 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1712 +Filename Gsasfile "c:\tigbnext\OK\maps\544.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1713 +' 'Unconfirmed Records'); 1713 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1714 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1714 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1714 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1714 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1715 +Filename Gsasfile "c:\tigbnext\OK\maps\552.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1716 +' 'Unconfirmed Records'); 1716 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1717 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1717 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1717 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1717 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1718 +Filename Gsasfile "c:\tigbnext\OK\maps\549.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1719 +' 'Unconfirmed Records'); 1719 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1720 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1720 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1720 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1720 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1721 +Filename Gsasfile "c:\tigbnext\OK\maps\540.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1722 +' 'Unconfirmed Records'); 1722 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela togata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1723 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1723 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1723 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1723 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1724 +Filename Gsasfile "c:\tigbnext\OK\maps\542.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1725 +' 'Unconfirmed Records'); 1725 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1726 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1726 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1726 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1726 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1727 +Filename Gsasfile "c:\tigbnext\OK\maps\532.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1728 +' 'Unconfirmed Records'); 1728 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela willistoni"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1729 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1729 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1729 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1729 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1730 +Filename Gsasfile "c:\tigbnext\OK\maps\545.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1731 +' 'Unconfirmed Records'); 1731 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1732 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1732 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1732 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1732 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1733 +Data Tempmap; set statemap; where state=41; NOTE: The data set WORK.TEMPMAP has 6597 observations and 7 variables. NOTE: The DATA statement used 0.54 seconds. 1733 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 43.069936642. NOTE: PARALLEL2 = 45.222252193. NOTE: The data set WORK.TEMPMAP2 has 6597 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.23 seconds. 1733 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1733 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1138 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1734 +flys2; where state=41; Run; NOTE: The data set WORK.BFLYTEMP has 193 observations and 32 variables. NOTE: The DATA statement used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1734 + Goptions Reset=Global Device=Mgif41 CBack=White Border; Run; 1735 +Filename Gsasfile "c:\tigbnext\OR\maps\558.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1736 +' 'Unconfirmed Records'); 1736 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela amargosae"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1737 +d State County; run; NOTE: Entry MGIF41 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1737 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1737 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1737 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1738 +Filename Gsasfile "c:\tigbnext\OR\maps\565.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1739 +' 'Unconfirmed Records'); 1739 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela bellissima"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1740 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1740 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1740 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1740 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1741 +Filename Gsasfile "c:\tigbnext\OR\maps\568.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1742 +' 'Unconfirmed Records'); 1742 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela columbica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1743 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1743 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1743 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1743 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1744 +Filename Gsasfile "c:\tigbnext\OR\maps\570.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1745 +' 'Unconfirmed Records'); 1745 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela depressula"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1746 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1746 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1746 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1746 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1747 +Filename Gsasfile "c:\tigbnext\OR\maps\569.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1748 +' 'Unconfirmed Records'); 1748 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela haemorrhagica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1749 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1749 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1749 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1749 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1750 +Filename Gsasfile "c:\tigbnext\OR\maps\564.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1751 +' 'Unconfirmed Records'); 1751 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1752 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1752 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1752 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1752 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1753 +Filename Gsasfile "c:\tigbnext\OR\maps\576.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1754 +' 'Unconfirmed Records'); 1754 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1755 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1755 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1755 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1755 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1756 +Filename Gsasfile "c:\tigbnext\OR\maps\572.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1757 +' 'Unconfirmed Records'); 1757 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1758 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1758 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1758 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1758 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1759 +Filename Gsasfile "c:\tigbnext\OR\maps\571.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1760 +' 'Unconfirmed Records'); 1760 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela oregona"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1761 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1761 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1761 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1761 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1762 +Filename Gsasfile "c:\tigbnext\OR\maps\574.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1763 +' 'Unconfirmed Records'); 1763 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela parowana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1764 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1764 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1764 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1764 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1765 +Filename Gsasfile "c:\tigbnext\OR\maps\577.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1766 +' 'Unconfirmed Records'); 1766 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela plutonica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1767 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1767 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1767 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1767 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1768 +Filename Gsasfile "c:\tigbnext\OR\maps\563.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1769 +' 'Unconfirmed Records'); 1769 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela pugetana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1770 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1770 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1770 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1770 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1771 +Filename Gsasfile "c:\tigbnext\OR\maps\562.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1772 +' 'Unconfirmed Records'); 1772 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1773 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1773 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1773 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1773 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1774 +Filename Gsasfile "c:\tigbnext\OR\maps\560.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1775 +' 'Unconfirmed Records'); 1775 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1776 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1776 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1776 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1776 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1777 +Filename Gsasfile "c:\tigbnext\OR\maps\575.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1778 +' 'Unconfirmed Records'); 1778 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tenuicincta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1779 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1779 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1779 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1779 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1780 +Filename Gsasfile "c:\tigbnext\OR\maps\561.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1781 +' 'Unconfirmed Records'); 1781 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1782 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1782 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1782 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1782 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1783 +Filename Gsasfile "c:\tigbnext\OR\maps\567.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1784 +' 'Unconfirmed Records'); 1784 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1785 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1785 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1785 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1785 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1786 +Filename Gsasfile "c:\tigbnext\OR\maps\557.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1787 +' 'Unconfirmed Records'); 1787 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela willistoni"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1788 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1788 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1788 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1788 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1789 +Filename Gsasfile "c:\tigbnext\OR\maps\578.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1790 +' 'Unconfirmed Records'); 1790 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Omus audouini"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id Stat NOTE: CALL EXECUTE generated line. 1791 +e County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1791 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1791 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1791 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1792 +Filename Gsasfile "c:\tigbnext\OR\maps\573.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1793 +' 'Unconfirmed Records'); 1793 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Omus californicus"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1794 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1794 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1794 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1794 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1795 +Filename Gsasfile "c:\tigbnext\OR\maps\559.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1796 +' 'Unconfirmed Records'); 1796 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Omus cazieri"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id State NOTE: CALL EXECUTE generated line. 1797 + County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1797 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1797 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1797 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1798 +Filename Gsasfile "c:\tigbnext\OR\maps\566.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1799 +' 'Unconfirmed Records'); 1799 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Omus dejeanii"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id Stat NOTE: CALL EXECUTE generated line. 1800 +e County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1800 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1800 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1800 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1801 +Data Tempmap; set statemap; where state=42; NOTE: The data set WORK.TEMPMAP has 8256 observations and 7 variables. NOTE: The DATA statement used 0.56 seconds. 1801 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 40.357122107. NOTE: PARALLEL2 = 41.631949595. NOTE: The data set WORK.TEMPMAP2 has 8256 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.21 seconds. 1801 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1801 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 837 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1802 +flys2; where state=42; Run; NOTE: The data set WORK.BFLYTEMP has 10 observations and 32 variables. NOTE: The DATA statement used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1802 + Goptions Reset=Global Device=Mgif42 CBack=White Border; Run; 1803 +Filename Gsasfile "c:\tigbnext\PA\maps\586.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1804 +' 'Unconfirmed Records'); 1804 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1805 +State County; run; NOTE: Entry MGIF42 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1805 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1805 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1805 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1806 +Filename Gsasfile "c:\tigbnext\PA\maps\587.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1807 +' 'Unconfirmed Records'); 1807 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1808 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1808 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1808 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1808 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1809 +Filename Gsasfile "c:\tigbnext\PA\maps\582.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1810 +' 'Unconfirmed Records'); 1810 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1811 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1811 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1811 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1811 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1812 +Filename Gsasfile "c:\tigbnext\PA\maps\581.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1813 +' 'Unconfirmed Records'); 1813 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1814 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1814 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1814 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1814 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1815 +Filename Gsasfile "c:\tigbnext\PA\maps\584.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1816 +' 'Unconfirmed Records'); 1816 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1817 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1817 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1817 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1817 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1818 +Filename Gsasfile "c:\tigbnext\PA\maps\580.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1819 +' 'Unconfirmed Records'); 1819 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1820 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1820 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1820 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1820 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1821 +Filename Gsasfile "c:\tigbnext\PA\maps\583.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1822 +' 'Unconfirmed Records'); 1822 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1823 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1823 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1823 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1823 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1824 +Filename Gsasfile "c:\tigbnext\PA\maps\579.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1825 +' 'Unconfirmed Records'); 1825 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1826 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1826 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1826 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1826 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1827 +Filename Gsasfile "c:\tigbnext\PA\maps\585.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1828 +' 'Unconfirmed Records'); 1828 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1829 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1829 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1829 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1829 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1830 +Data Tempmap; set statemap; where state=44; NOTE: The data set WORK.TEMPMAP has 865 observations and 7 variables. NOTE: The DATA statement used 0.5 seconds. 1830 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 41.363523161. NOTE: PARALLEL2 = 41.800122513. NOTE: The data set WORK.TEMPMAP2 has 865 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.17 seconds. 1830 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1830 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 779 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1831 +flys2; where state=44; Run; NOTE: The data set WORK.BFLYTEMP has 9 observations and 32 variables. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 1831 + Goptions Reset=Global Device=Mgif44 CBack=White Border; Run; 1832 +Filename Gsasfile "c:\tigbnext\RI\maps\588.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1833 +' 'Unconfirmed Records'); 1833 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1834 + State County; run; NOTE: Entry MGIF44 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1834 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1834 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1834 + quit; NOTE: The PROCEDURE CATALOG used 0.14 seconds. NOTE: CALL EXECUTE generated line. 1835 +Filename Gsasfile "c:\tigbnext\RI\maps\592.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1836 +' 'Unconfirmed Records'); 1836 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1837 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1837 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1837 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1837 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1838 +Filename Gsasfile "c:\tigbnext\RI\maps\589.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1839 +' 'Unconfirmed Records'); 1839 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1840 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1840 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1840 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1840 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1841 +Filename Gsasfile "c:\tigbnext\RI\maps\590.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1842 +' 'Unconfirmed Records'); 1842 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1843 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1843 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1843 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1843 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1844 +Filename Gsasfile "c:\tigbnext\RI\maps\591.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1845 +' 'Unconfirmed Records'); 1845 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1846 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1846 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1846 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1846 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1847 +Data Tempmap; set statemap; where state=45; NOTE: The data set WORK.TEMPMAP has 10422 observations and 7 variables. NOTE: The DATA statement used 0.54 seconds. 1847 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 32.838641114. NOTE: PARALLEL2 = 34.422575643. NOTE: The data set WORK.TEMPMAP2 has 10422 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.21 seconds. 1847 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1847 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 2816 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1848 +flys2; where state=45; Run; NOTE: The data set WORK.BFLYTEMP has 312 observations and 32 variables. NOTE: The DATA statement used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1848 + Goptions Reset=Global Device=Mgif45 CBack=White Border; Run; 1849 +Filename Gsasfile "c:\tigbnext\SC\maps\612.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1850 +' 'Unconfirmed Records'); 1850 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela abdominalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1851 + Id State County; run; NOTE: Entry MGIF45 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1851 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1851 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1851 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1852 +Filename Gsasfile "c:\tigbnext\SC\maps\615.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1853 +' 'Unconfirmed Records'); 1853 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela blanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1854 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1854 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1854 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1854 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1855 +Filename Gsasfile "c:\tigbnext\SC\maps\593.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1856 +' 'Unconfirmed Records'); 1856 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1857 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1857 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1857 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1857 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1858 +Filename Gsasfile "c:\tigbnext\SC\maps\601.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1859 +' 'Unconfirmed Records'); 1859 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1860 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1860 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1860 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1860 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1861 +Filename Gsasfile "c:\tigbnext\SC\maps\610.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1862 +' 'Unconfirmed Records'); 1862 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela gratiosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1863 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1863 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 1863 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1863 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1864 +Filename Gsasfile "c:\tigbnext\SC\maps\598.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1865 +' 'Unconfirmed Records'); 1865 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1866 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1866 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1866 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1866 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1867 +Filename Gsasfile "c:\tigbnext\SC\maps\608.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1868 +' 'Unconfirmed Records'); 1868 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1869 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1869 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1869 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1869 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1870 +Filename Gsasfile "c:\tigbnext\SC\maps\603.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1871 +' 'Unconfirmed Records'); 1871 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nigrior"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1872 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1872 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1872 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1872 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1873 +Filename Gsasfile "c:\tigbnext\SC\maps\606.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1874 +' 'Unconfirmed Records'); 1874 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1875 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1875 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1875 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1875 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1876 +Filename Gsasfile "c:\tigbnext\SC\maps\614.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1877 +' 'Unconfirmed Records'); 1877 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1878 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1878 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1878 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1878 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1879 +Filename Gsasfile "c:\tigbnext\SC\maps\596.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1880 +' 'Unconfirmed Records'); 1880 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1881 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1881 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1881 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1881 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1882 +Filename Gsasfile "c:\tigbnext\SC\maps\595.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1883 +' 'Unconfirmed Records'); 1883 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1884 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1884 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1884 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1884 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1885 +Filename Gsasfile "c:\tigbnext\SC\maps\613.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1886 +' 'Unconfirmed Records'); 1886 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1887 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1887 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1887 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1887 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1888 +Filename Gsasfile "c:\tigbnext\SC\maps\604.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1889 +' 'Unconfirmed Records'); 1889 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1890 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1890 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1890 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1890 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1891 +Filename Gsasfile "c:\tigbnext\SC\maps\611.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1892 +' 'Unconfirmed Records'); 1892 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1893 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1893 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1893 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1893 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1894 +Filename Gsasfile "c:\tigbnext\SC\maps\609.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1895 +' 'Unconfirmed Records'); 1895 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1896 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1896 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1896 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1896 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1897 +Filename Gsasfile "c:\tigbnext\SC\maps\599.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1898 +' 'Unconfirmed Records'); 1898 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela striga"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1899 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1899 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1899 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1899 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1900 +Filename Gsasfile "c:\tigbnext\SC\maps\600.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1901 +' 'Unconfirmed Records'); 1901 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela togata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 1902 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1902 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1902 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1902 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1903 +Filename Gsasfile "c:\tigbnext\SC\maps\602.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1904 +' 'Unconfirmed Records'); 1904 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1905 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1905 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1905 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1905 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1906 +Filename Gsasfile "c:\tigbnext\SC\maps\597.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1907 +' 'Unconfirmed Records'); 1907 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela trifasciata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1908 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1908 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 1908 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1908 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1909 +Filename Gsasfile "c:\tigbnext\SC\maps\607.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1910 +' 'Unconfirmed Records'); 1910 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1911 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1911 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 1911 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1911 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1912 +Filename Gsasfile "c:\tigbnext\SC\maps\605.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1913 +' 'Unconfirmed Records'); 1913 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1914 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1914 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 1914 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1914 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1915 +Filename Gsasfile "c:\tigbnext\SC\maps\594.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1916 +' 'Unconfirmed Records'); 1916 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1917 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1917 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 1917 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1917 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 1918 +Data Tempmap; set statemap; where state=46; NOTE: The data set WORK.TEMPMAP has 4476 observations and 7 variables. NOTE: The DATA statement used 0.48 seconds. 1918 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 43.345965077. NOTE: PARALLEL2 = 45.078592824. NOTE: The data set WORK.TEMPMAP2 has 4476 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.18 seconds. 1918 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1918 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 689 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1919 +flys2; where state=46; Run; NOTE: The data set WORK.BFLYTEMP has 69 observations and 32 variables. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1919 + Goptions Reset=Global Device=Mgif46 CBack=White Border; Run; 1920 +Filename Gsasfile "c:\tigbnext\SD\maps\633.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1921 +' 'Unconfirmed Records'); 1921 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila cylindriformis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1922 + Id State County; run; NOTE: Entry MGIF46 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1922 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 1922 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1922 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1923 +Filename Gsasfile "c:\tigbnext\SD\maps\621.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1924 +' 'Unconfirmed Records'); 1924 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1925 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1925 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1925 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1925 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1926 +Filename Gsasfile "c:\tigbnext\SD\maps\616.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1927 +' 'Unconfirmed Records'); 1927 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cursitans"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1928 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1928 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1928 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1928 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1929 +Filename Gsasfile "c:\tigbnext\SD\maps\624.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1930 +' 'Unconfirmed Records'); 1930 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela denverensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1931 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1931 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1931 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1931 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1932 +Filename Gsasfile "c:\tigbnext\SD\maps\626.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1933 +' 'Unconfirmed Records'); 1933 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1934 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1934 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1934 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1934 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1935 +Filename Gsasfile "c:\tigbnext\SD\maps\622.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1936 +' 'Unconfirmed Records'); 1936 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1937 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1937 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1937 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1937 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1938 +Filename Gsasfile "c:\tigbnext\SD\maps\623.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1939 +' 'Unconfirmed Records'); 1939 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1940 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1940 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1940 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1940 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1941 +Filename Gsasfile "c:\tigbnext\SD\maps\628.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1942 +' 'Unconfirmed Records'); 1942 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lengi"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 1943 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1943 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1943 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1943 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1944 +Filename Gsasfile "c:\tigbnext\SD\maps\618.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1945 +' 'Unconfirmed Records'); 1945 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1946 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1946 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1946 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1946 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1947 +Filename Gsasfile "c:\tigbnext\SD\maps\634.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1948 +' 'Unconfirmed Records'); 1948 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1949 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1949 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1949 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1949 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1950 +Filename Gsasfile "c:\tigbnext\SD\maps\632.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1951 +' 'Unconfirmed Records'); 1951 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1952 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1952 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1952 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1952 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1953 +Filename Gsasfile "c:\tigbnext\SD\maps\630.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1954 +' 'Unconfirmed Records'); 1954 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1955 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1955 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1955 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1955 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1956 +Filename Gsasfile "c:\tigbnext\SD\maps\620.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1957 +' 'Unconfirmed Records'); 1957 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1958 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1958 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1958 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1958 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1959 +Filename Gsasfile "c:\tigbnext\SD\maps\617.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1960 +' 'Unconfirmed Records'); 1960 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1961 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1961 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1961 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1961 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1962 +Filename Gsasfile "c:\tigbnext\SD\maps\627.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1963 +' 'Unconfirmed Records'); 1963 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1964 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1964 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 1964 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1964 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 1965 +Filename Gsasfile "c:\tigbnext\SD\maps\631.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1966 +' 'Unconfirmed Records'); 1966 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1967 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1967 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1967 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1967 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1968 +Filename Gsasfile "c:\tigbnext\SD\maps\629.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1969 +' 'Unconfirmed Records'); 1969 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1970 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1970 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 1970 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1970 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1971 +Filename Gsasfile "c:\tigbnext\SD\maps\619.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1972 +' 'Unconfirmed Records'); 1972 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1973 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1973 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1973 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1973 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1974 +Filename Gsasfile "c:\tigbnext\SD\maps\625.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1975 +' 'Unconfirmed Records'); 1975 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1976 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1976 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 1976 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1976 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 1977 +Data Tempmap; set statemap; where state=48; NOTE: The data set WORK.TEMPMAP has 22685 observations and 7 variables. NOTE: The DATA statement used 0.65 seconds. 1977 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 28.507071746. NOTE: PARALLEL2 = 33.835862393. NOTE: The data set WORK.TEMPMAP2 has 22685 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.35 seconds. 1977 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 1977 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 5976 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.21 seconds. NOTE: CALL EXECUTE generated line. 1978 +flys2; where state=48; Run; NOTE: The data set WORK.BFLYTEMP has 372 observations and 32 variables. NOTE: The DATA statement used 0.18 seconds. NOTE: CALL EXECUTE generated line. 1978 + Goptions Reset=Global Device=Mgif48 CBack=White Border; Run; 1979 +Filename Gsasfile "c:\tigbnext\TX\maps\672.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1980 +' 'Unconfirmed Records'); 1980 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila cylindriformis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1981 + Id State County; run; NOTE: Entry MGIF48 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1981 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 1981 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1981 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 1982 +Filename Gsasfile "c:\tigbnext\TX\maps\645.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1983 +' 'Unconfirmed Records'); 1983 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila picolominii"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1984 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1984 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 1984 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1984 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 1985 +Filename Gsasfile "c:\tigbnext\TX\maps\667.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1986 +' 'Unconfirmed Records'); 1986 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela belfragei"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 1987 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1987 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 1987 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1987 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 1988 +Filename Gsasfile "c:\tigbnext\TX\maps\673.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1989 +' 'Unconfirmed Records'); 1989 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cazieri"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 1990 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1990 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 1990 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1990 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 1991 +Filename Gsasfile "c:\tigbnext\TX\maps\668.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1992 +' 'Unconfirmed Records'); 1992 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela chlorocephala"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1993 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1993 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 1993 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1993 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 1994 +Filename Gsasfile "c:\tigbnext\TX\maps\671.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1995 +' 'Unconfirmed Records'); 1995 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela circumpicta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1996 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1996 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 1996 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1996 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 1997 +Filename Gsasfile "c:\tigbnext\TX\maps\638.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 1998 +' 'Unconfirmed Records'); 1998 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 1999 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 1999 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 1999 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 1999 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2000 +Filename Gsasfile "c:\tigbnext\TX\maps\653.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2001 +' 'Unconfirmed Records'); 2001 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2002 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2002 + quit; NOTE: The PROCEDURE GMAP used 0.56 seconds. 2002 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2002 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2003 +Filename Gsasfile "c:\tigbnext\TX\maps\659.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2004 +' 'Unconfirmed Records'); 2004 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2005 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2005 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2005 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2005 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2006 +Filename Gsasfile "c:\tigbnext\TX\maps\637.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2007 +' 'Unconfirmed Records'); 2007 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela fulgoris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2008 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2008 + quit; NOTE: The PROCEDURE GMAP used 0.56 seconds. 2008 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2008 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2009 +Filename Gsasfile "c:\tigbnext\TX\maps\649.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2010 +' 'Unconfirmed Records'); 2010 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hamata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 2011 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2011 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2011 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2011 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2012 +Filename Gsasfile "c:\tigbnext\TX\maps\661.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2013 +' 'Unconfirmed Records'); 2013 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2014 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2014 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2014 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2014 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2015 +Filename Gsasfile "c:\tigbnext\TX\maps\640.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2016 +' 'Unconfirmed Records'); 2016 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hornii"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 2017 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2017 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2017 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2017 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2018 +Filename Gsasfile "c:\tigbnext\TX\maps\652.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2019 +' 'Unconfirmed Records'); 2019 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lemniscata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2020 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2020 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2020 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2020 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2021 +Filename Gsasfile "c:\tigbnext\TX\maps\636.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2022 +' 'Unconfirmed Records'); 2022 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 2023 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2023 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2023 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2023 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2024 +Filename Gsasfile "c:\tigbnext\TX\maps\663.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2025 +' 'Unconfirmed Records'); 2025 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nevadica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2026 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2026 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2026 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2026 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2027 +Filename Gsasfile "c:\tigbnext\TX\maps\658.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2028 +' 'Unconfirmed Records'); 2028 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nigrocoerulea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2029 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2029 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2029 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2029 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2030 +Filename Gsasfile "c:\tigbnext\TX\maps\662.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2031 +' 'Unconfirmed Records'); 2031 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela obsoleta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2032 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2032 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2032 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2032 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2033 +Filename Gsasfile "c:\tigbnext\TX\maps\656.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2034 +' 'Unconfirmed Records'); 2034 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela ocellata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2035 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2035 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2035 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2035 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2036 +Filename Gsasfile "c:\tigbnext\TX\maps\650.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2037 +' 'Unconfirmed Records'); 2037 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela pamphila"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2038 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2038 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2038 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2038 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2039 +Filename Gsasfile "c:\tigbnext\TX\maps\648.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2040 +' 'Unconfirmed Records'); 2040 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela pilatei"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2041 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2041 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2041 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2041 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2042 +Filename Gsasfile "c:\tigbnext\TX\maps\639.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2043 +' 'Unconfirmed Records'); 2043 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela politula"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2044 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2044 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2044 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2044 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2045 +Filename Gsasfile "c:\tigbnext\TX\maps\644.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2046 +' 'Unconfirmed Records'); 2046 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela praetextata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2047 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2047 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2047 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2047 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2048 +Filename Gsasfile "c:\tigbnext\TX\maps\675.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2049 +' 'Unconfirmed Records'); 2049 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2050 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2050 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2050 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2050 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2051 +Filename Gsasfile "c:\tigbnext\TX\maps\657.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2052 +' 'Unconfirmed Records'); 2052 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2053 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2053 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2053 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2053 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2054 +Filename Gsasfile "c:\tigbnext\TX\maps\674.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2055 +' 'Unconfirmed Records'); 2055 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2056 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2056 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2056 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2056 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2057 +Filename Gsasfile "c:\tigbnext\TX\maps\666.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2058 +' 'Unconfirmed Records'); 2058 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela schauppii"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 2059 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2059 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2059 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2059 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2060 +Filename Gsasfile "c:\tigbnext\TX\maps\664.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2061 +' 'Unconfirmed Records'); 2061 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2062 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2062 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2062 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2062 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2063 +Filename Gsasfile "c:\tigbnext\TX\maps\643.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2064 +' 'Unconfirmed Records'); 2064 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sedecimpunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2065 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2065 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2065 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2065 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2066 +Filename Gsasfile "c:\tigbnext\TX\maps\670.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2067 +' 'Unconfirmed Records'); 2067 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela severa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 2068 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2068 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2068 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2068 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2069 +Filename Gsasfile "c:\tigbnext\TX\maps\651.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2070 +' 'Unconfirmed Records'); 2070 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2071 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2071 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2071 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2071 + quit; NOTE: The PROCEDURE CATALOG used 0.26 seconds. NOTE: CALL EXECUTE generated line. 2072 +Filename Gsasfile "c:\tigbnext\TX\maps\646.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2073 +' 'Unconfirmed Records'); 2073 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sperata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2074 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2074 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2074 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2074 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 2075 +Filename Gsasfile "c:\tigbnext\TX\maps\647.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2076 +' 'Unconfirmed Records'); 2076 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 2077 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2077 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2077 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2077 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2078 +Filename Gsasfile "c:\tigbnext\TX\maps\669.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2079 +' 'Unconfirmed Records'); 2079 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tenuisignata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2080 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2080 + quit; NOTE: The PROCEDURE GMAP used 0.57 seconds. 2080 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2080 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2081 +Filename Gsasfile "c:\tigbnext\TX\maps\641.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2082 +' 'Unconfirmed Records'); 2082 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela togata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 2083 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2083 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2083 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2083 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2084 +Filename Gsasfile "c:\tigbnext\TX\maps\642.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2085 +' 'Unconfirmed Records'); 2085 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2086 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2086 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2086 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2086 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2087 +Filename Gsasfile "c:\tigbnext\TX\maps\660.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2088 +' 'Unconfirmed Records'); 2088 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela trifasciata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2089 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2089 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2089 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2089 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2090 +Filename Gsasfile "c:\tigbnext\TX\maps\655.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2091 +' 'Unconfirmed Records'); 2091 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela willistoni"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2092 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2092 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2092 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2092 + quit; NOTE: The PROCEDURE CATALOG used 0.26 seconds. NOTE: CALL EXECUTE generated line. 2093 +Filename Gsasfile "c:\tigbnext\TX\maps\635.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2094 +' 'Unconfirmed Records'); 2094 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha affinis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 2095 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2095 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2095 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2095 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2096 +Filename Gsasfile "c:\tigbnext\TX\maps\665.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2097 +' 'Unconfirmed Records'); 2097 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2098 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2098 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2098 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2098 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2099 +Filename Gsasfile "c:\tigbnext\TX\maps\654.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2100 +' 'Unconfirmed Records'); 2100 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2101 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2101 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2101 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2101 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2102 +Data Tempmap; set statemap; where state=49; NOTE: The data set WORK.TEMPMAP has 6352 observations and 7 variables. NOTE: The DATA statement used 0.56 seconds. 2102 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 38.248922748. NOTE: PARALLEL2 = 40.750465871. NOTE: The data set WORK.TEMPMAP2 has 6352 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.2 seconds. 2102 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 2102 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 698 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2103 +flys2; where state=49; Run; NOTE: The data set WORK.BFLYTEMP has 116 observations and 32 variables. NOTE: The DATA statement used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2103 + Goptions Reset=Global Device=Mgif49 CBack=White Border; Run; 2104 +Filename Gsasfile "c:\tigbnext\UT\maps\683.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2105 +' 'Unconfirmed Records'); 2105 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila schwarzi"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2106 +Id State County; run; NOTE: Entry MGIF49 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2106 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 2106 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2106 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2107 +Filename Gsasfile "c:\tigbnext\UT\maps\691.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2108 +' 'Unconfirmed Records'); 2108 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela decemnotata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2109 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2109 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2109 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2109 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2110 +Filename Gsasfile "c:\tigbnext\UT\maps\690.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2111 +' 'Unconfirmed Records'); 2111 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela depressula"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2112 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2112 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2112 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2112 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2113 +Filename Gsasfile "c:\tigbnext\UT\maps\679.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2114 +' 'Unconfirmed Records'); 2114 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela fulgida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2115 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2115 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2115 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2115 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2116 +Filename Gsasfile "c:\tigbnext\UT\maps\687.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2117 +' 'Unconfirmed Records'); 2117 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela haemorrhagica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2118 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2118 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2118 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2118 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2119 +Filename Gsasfile "c:\tigbnext\UT\maps\682.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2120 +' 'Unconfirmed Records'); 2120 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2121 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2121 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2121 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2121 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2122 +Filename Gsasfile "c:\tigbnext\UT\maps\695.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2123 +' 'Unconfirmed Records'); 2123 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lemniscata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2124 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2124 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2124 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2124 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2125 +Filename Gsasfile "c:\tigbnext\UT\maps\700.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2126 +' 'Unconfirmed Records'); 2126 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2127 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2127 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2127 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2127 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2128 +Filename Gsasfile "c:\tigbnext\UT\maps\698.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2129 +' 'Unconfirmed Records'); 2129 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2130 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2130 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2130 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2130 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2131 +Filename Gsasfile "c:\tigbnext\UT\maps\693.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2132 +' 'Unconfirmed Records'); 2132 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2133 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2133 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2133 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2133 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2134 +Filename Gsasfile "c:\tigbnext\UT\maps\677.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2135 +' 'Unconfirmed Records'); 2135 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nigrocoerulea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2136 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2136 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2136 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2136 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2137 +Filename Gsasfile "c:\tigbnext\UT\maps\692.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2138 +' 'Unconfirmed Records'); 2138 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela oregona"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2139 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2139 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2139 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2139 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2140 +Filename Gsasfile "c:\tigbnext\UT\maps\697.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2141 +' 'Unconfirmed Records'); 2141 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela parowana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2142 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2142 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2142 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2142 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2143 +Filename Gsasfile "c:\tigbnext\UT\maps\688.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2144 +' 'Unconfirmed Records'); 2144 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela praetextata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2145 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2145 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2145 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2145 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2146 +Filename Gsasfile "c:\tigbnext\UT\maps\699.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2147 +' 'Unconfirmed Records'); 2147 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2148 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2148 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2148 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2148 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2149 +Filename Gsasfile "c:\tigbnext\UT\maps\680.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2150 +' 'Unconfirmed Records'); 2150 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2151 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2151 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2151 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2151 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2152 +Filename Gsasfile "c:\tigbnext\UT\maps\678.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2153 +' 'Unconfirmed Records'); 2153 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2154 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2154 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2154 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2154 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2155 +Filename Gsasfile "c:\tigbnext\UT\maps\689.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2156 +' 'Unconfirmed Records'); 2156 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sperata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2157 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2157 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2157 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2157 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2158 +Filename Gsasfile "c:\tigbnext\UT\maps\696.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2159 +' 'Unconfirmed Records'); 2159 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tenuicincta"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2160 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2160 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2160 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2160 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2161 +Filename Gsasfile "c:\tigbnext\UT\maps\694.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2162 +' 'Unconfirmed Records'); 2162 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tenuisignata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2163 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2163 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2163 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2163 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2164 +Filename Gsasfile "c:\tigbnext\UT\maps\681.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2165 +' 'Unconfirmed Records'); 2165 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 2166 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2166 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2166 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2166 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2167 +Filename Gsasfile "c:\tigbnext\UT\maps\684.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2168 +' 'Unconfirmed Records'); 2168 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela togata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 2169 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2169 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2169 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2169 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2170 +Filename Gsasfile "c:\tigbnext\UT\maps\686.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2171 +' 'Unconfirmed Records'); 2171 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2172 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2172 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2172 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2172 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2173 +Filename Gsasfile "c:\tigbnext\UT\maps\676.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2174 +' 'Unconfirmed Records'); 2174 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela willistoni"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2175 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2175 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2175 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2175 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2176 +Filename Gsasfile "c:\tigbnext\UT\maps\685.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2177 +' 'Unconfirmed Records'); 2177 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Omus dejeanii"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id Stat NOTE: CALL EXECUTE generated line. 2178 +e County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2178 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2178 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2178 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2179 +Data Tempmap; set statemap; where state=50; NOTE: The data set WORK.TEMPMAP has 1800 observations and 7 variables. NOTE: The DATA statement used 0.5 seconds. 2179 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 43.2984133. NOTE: PARALLEL2 = 44.442032854. NOTE: The data set WORK.TEMPMAP2 has 1800 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.17 seconds. 2179 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 2179 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 1264 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2180 +flys2; where state=50; Run; NOTE: The data set WORK.BFLYTEMP has 93 observations and 32 variables. NOTE: The DATA statement used 0.2 seconds. NOTE: CALL EXECUTE generated line. 2180 + Goptions Reset=Global Device=Mgif50 CBack=White Border; Run; 2181 +Filename Gsasfile "c:\tigbnext\VT\maps\725.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2182 +' 'Unconfirmed Records'); 2182 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela ancocisconensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2183 + Id State County; run; NOTE: Entry MGIF50 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2183 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 2183 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2183 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2184 +Filename Gsasfile "c:\tigbnext\VT\maps\736.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2185 +' 'Unconfirmed Records'); 2185 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2186 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2186 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 2186 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2186 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2187 +Filename Gsasfile "c:\tigbnext\VT\maps\730.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2188 +' 'Unconfirmed Records'); 2188 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2189 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2189 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2189 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2189 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2190 +Filename Gsasfile "c:\tigbnext\VT\maps\731.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2191 +' 'Unconfirmed Records'); 2191 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2192 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2192 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2192 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2192 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2193 +Filename Gsasfile "c:\tigbnext\VT\maps\727.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2194 +' 'Unconfirmed Records'); 2194 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2195 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2195 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2195 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2195 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2196 +Filename Gsasfile "c:\tigbnext\VT\maps\734.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2197 +' 'Unconfirmed Records'); 2197 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2198 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2198 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2198 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2198 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2199 +Filename Gsasfile "c:\tigbnext\VT\maps\735.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2200 +' 'Unconfirmed Records'); 2200 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginipennis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2201 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2201 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2201 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2201 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2202 +Filename Gsasfile "c:\tigbnext\VT\maps\728.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2203 +' 'Unconfirmed Records'); 2203 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2204 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2204 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2204 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2204 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2205 +Filename Gsasfile "c:\tigbnext\VT\maps\738.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2206 +' 'Unconfirmed Records'); 2206 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2207 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2207 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2207 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2207 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2208 +Filename Gsasfile "c:\tigbnext\VT\maps\733.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2209 +' 'Unconfirmed Records'); 2209 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela puritana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2210 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2210 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2210 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2210 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2211 +Filename Gsasfile "c:\tigbnext\VT\maps\729.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2212 +' 'Unconfirmed Records'); 2212 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2213 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2213 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2213 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2213 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2214 +Filename Gsasfile "c:\tigbnext\VT\maps\726.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2215 +' 'Unconfirmed Records'); 2215 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2216 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2216 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2216 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2216 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2217 +Filename Gsasfile "c:\tigbnext\VT\maps\739.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2218 +' 'Unconfirmed Records'); 2218 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2219 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2219 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2219 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2219 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2220 +Filename Gsasfile "c:\tigbnext\VT\maps\724.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2221 +' 'Unconfirmed Records'); 2221 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2222 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2222 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 2222 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2222 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2223 +Filename Gsasfile "c:\tigbnext\VT\maps\732.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2224 +' 'Unconfirmed Records'); 2224 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2225 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2225 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2225 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2225 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2226 +Filename Gsasfile "c:\tigbnext\VT\maps\737.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2227 +' 'Unconfirmed Records'); 2227 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2228 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2228 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2228 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2228 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2229 +Data Tempmap; set statemap; where state=51; NOTE: The data set WORK.TEMPMAP has 22740 observations and 7 variables. NOTE: The DATA statement used 0.65 seconds. 2229 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 37.27160464. NOTE: PARALLEL2 = 38.734084745. NOTE: The data set WORK.TEMPMAP2 has 22740 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.28 seconds. 2229 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 2229 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 9184 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.26 seconds. NOTE: CALL EXECUTE generated line. 2230 +flys2; where state=51; Run; NOTE: The data set WORK.BFLYTEMP has 411 observations and 32 variables. NOTE: The DATA statement used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2230 + Goptions Reset=Global Device=Mgif51 CBack=White Border; Run; 2231 +Filename Gsasfile "c:\tigbnext\VA\maps\721.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2232 +' 'Unconfirmed Records'); 2232 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela abdominalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2233 + Id State County; run; NOTE: Entry MGIF51 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2233 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 2233 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2233 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 2234 +Filename Gsasfile "c:\tigbnext\VA\maps\714.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2235 +' 'Unconfirmed Records'); 2235 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela ancocisconensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2236 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2236 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2236 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2236 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2237 +Filename Gsasfile "c:\tigbnext\VA\maps\702.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2238 +' 'Unconfirmed Records'); 2238 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela dorsalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2239 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2239 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2239 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2239 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2240 +Filename Gsasfile "c:\tigbnext\VA\maps\710.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2241 +' 'Unconfirmed Records'); 2241 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2242 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2242 + quit; NOTE: The PROCEDURE GMAP used 0.56 seconds. 2242 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2242 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2243 +Filename Gsasfile "c:\tigbnext\VA\maps\708.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2244 +' 'Unconfirmed Records'); 2244 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2245 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2245 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2245 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2245 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2246 +Filename Gsasfile "c:\tigbnext\VA\maps\719.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2247 +' 'Unconfirmed Records'); 2247 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela gratiosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2248 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2248 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2248 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2248 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2249 +Filename Gsasfile "c:\tigbnext\VA\maps\709.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2250 +' 'Unconfirmed Records'); 2250 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2251 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2251 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2251 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2251 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2252 +Filename Gsasfile "c:\tigbnext\VA\maps\706.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2253 +' 'Unconfirmed Records'); 2253 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lepida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id S NOTE: CALL EXECUTE generated line. 2254 +tate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2254 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2254 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2254 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2255 +Filename Gsasfile "c:\tigbnext\VA\maps\704.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2256 +' 'Unconfirmed Records'); 2256 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2257 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2257 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2257 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2257 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2258 +Filename Gsasfile "c:\tigbnext\VA\maps\715.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2259 +' 'Unconfirmed Records'); 2259 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 2260 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2260 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2260 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2260 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2261 +Filename Gsasfile "c:\tigbnext\VA\maps\717.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2262 +' 'Unconfirmed Records'); 2262 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2263 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2263 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2263 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2263 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2264 +Filename Gsasfile "c:\tigbnext\VA\maps\722.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2265 +' 'Unconfirmed Records'); 2265 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2266 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2266 + quit; NOTE: The PROCEDURE GMAP used 0.54 seconds. 2266 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2266 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2267 +Filename Gsasfile "c:\tigbnext\VA\maps\705.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2268 +' 'Unconfirmed Records'); 2268 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2269 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2269 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2269 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2269 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2270 +Filename Gsasfile "c:\tigbnext\VA\maps\703.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2271 +' 'Unconfirmed Records'); 2271 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2272 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2272 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2272 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2272 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2273 +Filename Gsasfile "c:\tigbnext\VA\maps\723.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2274 +' 'Unconfirmed Records'); 2274 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2275 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2275 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2275 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2275 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2276 +Filename Gsasfile "c:\tigbnext\VA\maps\712.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2277 +' 'Unconfirmed Records'); 2277 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2278 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2278 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2278 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2278 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2279 +Filename Gsasfile "c:\tigbnext\VA\maps\720.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2280 +' 'Unconfirmed Records'); 2280 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2281 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2281 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2281 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2281 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2282 +Filename Gsasfile "c:\tigbnext\VA\maps\718.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2283 +' 'Unconfirmed Records'); 2283 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 2284 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2284 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2284 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2284 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2285 +Filename Gsasfile "c:\tigbnext\VA\maps\711.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2286 +' 'Unconfirmed Records'); 2286 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2287 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2287 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2287 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2287 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2288 +Filename Gsasfile "c:\tigbnext\VA\maps\707.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2289 +' 'Unconfirmed Records'); 2289 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela trifasciata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2290 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2290 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2290 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2290 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2291 +Filename Gsasfile "c:\tigbnext\VA\maps\716.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2292 +' 'Unconfirmed Records'); 2292 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2293 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2293 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2293 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2293 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 2294 +Filename Gsasfile "c:\tigbnext\VA\maps\713.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2295 +' 'Unconfirmed Records'); 2295 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha carolina"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2296 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2296 + quit; NOTE: The PROCEDURE GMAP used 0.53 seconds. 2296 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2296 + quit; NOTE: The PROCEDURE CATALOG used 0.21 seconds. NOTE: CALL EXECUTE generated line. 2297 +Filename Gsasfile "c:\tigbnext\VA\maps\701.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2298 +' 'Unconfirmed Records'); 2298 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2299 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2299 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2299 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2299 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2300 +Data Tempmap; set statemap; where state=53; NOTE: The data set WORK.TEMPMAP has 8806 observations and 7 variables. NOTE: The DATA statement used 0.56 seconds. 2300 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 46.408430655. NOTE: PARALLEL2 = 48.137615987. NOTE: The data set WORK.TEMPMAP2 has 8806 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.21 seconds. 2300 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 2300 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 2845 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2301 +flys2; where state=53; Run; NOTE: The data set WORK.BFLYTEMP has 238 observations and 32 variables. NOTE: The DATA statement used 0.21 seconds. NOTE: CALL EXECUTE generated line. 2301 + Goptions Reset=Global Device=Mgif53 CBack=White Border; Run; 2302 +Filename Gsasfile "c:\tigbnext\WA\maps\745.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2303 +' 'Unconfirmed Records'); 2303 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela bellissima"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2304 +Id State County; run; NOTE: Entry MGIF53 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2304 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 2304 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2304 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2305 +Filename Gsasfile "c:\tigbnext\WA\maps\748.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2306 +' 'Unconfirmed Records'); 2306 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela columbica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 2307 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2307 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2307 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2307 + quit; NOTE: The PROCEDURE CATALOG used 0.23 seconds. NOTE: CALL EXECUTE generated line. 2308 +Filename Gsasfile "c:\tigbnext\WA\maps\751.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2309 +' 'Unconfirmed Records'); 2309 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela decemnotata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2310 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2310 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 2310 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2310 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 2311 +Filename Gsasfile "c:\tigbnext\WA\maps\750.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2312 +' 'Unconfirmed Records'); 2312 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela depressula"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2313 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2313 + quit; NOTE: The PROCEDURE GMAP used 0.51 seconds. 2313 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2313 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2314 +Filename Gsasfile "c:\tigbnext\WA\maps\749.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2315 +' 'Unconfirmed Records'); 2315 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela haemorrhagica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2316 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2316 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 2316 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2316 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2317 +Filename Gsasfile "c:\tigbnext\WA\maps\744.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2318 +' 'Unconfirmed Records'); 2318 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2319 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2319 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 2319 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2319 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2320 +Filename Gsasfile "c:\tigbnext\WA\maps\756.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2321 +' 'Unconfirmed Records'); 2321 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela longilabris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2322 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2322 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2322 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2322 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2323 +Filename Gsasfile "c:\tigbnext\WA\maps\753.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2324 +' 'Unconfirmed Records'); 2324 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2325 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2325 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2325 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2325 + quit; NOTE: The PROCEDURE CATALOG used 0.2 seconds. NOTE: CALL EXECUTE generated line. 2326 +Filename Gsasfile "c:\tigbnext\WA\maps\752.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2327 +' 'Unconfirmed Records'); 2327 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela oregona"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2328 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2328 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2328 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2328 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2329 +Filename Gsasfile "c:\tigbnext\WA\maps\755.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2330 +' 'Unconfirmed Records'); 2330 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela parowana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2331 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2331 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2331 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2331 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2332 +Filename Gsasfile "c:\tigbnext\WA\maps\743.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2333 +' 'Unconfirmed Records'); 2333 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela pugetana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2334 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2334 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2334 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2334 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2335 +Filename Gsasfile "c:\tigbnext\WA\maps\741.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2336 +' 'Unconfirmed Records'); 2336 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2337 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2337 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2337 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2337 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2338 +Filename Gsasfile "c:\tigbnext\WA\maps\740.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2339 +' 'Unconfirmed Records'); 2339 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2340 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2340 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2340 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2340 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2341 +Filename Gsasfile "c:\tigbnext\WA\maps\742.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2342 +' 'Unconfirmed Records'); 2342 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 2343 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2343 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2343 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2343 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2344 +Filename Gsasfile "c:\tigbnext\WA\maps\747.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2345 +' 'Unconfirmed Records'); 2345 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2346 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2346 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2346 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2346 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2347 +Filename Gsasfile "c:\tigbnext\WA\maps\757.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2348 +' 'Unconfirmed Records'); 2348 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Omus audouini"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id Stat NOTE: CALL EXECUTE generated line. 2349 +e County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2349 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2349 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2349 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2350 +Filename Gsasfile "c:\tigbnext\WA\maps\754.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2351 +' 'Unconfirmed Records'); 2351 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Omus californicus"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2352 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2352 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2352 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2352 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2353 +Filename Gsasfile "c:\tigbnext\WA\maps\746.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2354 +' 'Unconfirmed Records'); 2354 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Omus dejeanii"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id Stat NOTE: CALL EXECUTE generated line. 2355 +e County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2355 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 2355 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2355 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2356 +Data Tempmap; set statemap; where state=54; NOTE: The data set WORK.TEMPMAP has 8401 observations and 7 variables. NOTE: The DATA statement used 0.59 seconds. 2356 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 38.060272923. NOTE: PARALLEL2 = 39.778857802. NOTE: The data set WORK.TEMPMAP2 has 8401 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.25 seconds. 2356 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 2356 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 2050 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.2 seconds. NOTE: CALL EXECUTE generated line. 2357 +flys2; where state=54; Run; NOTE: The data set WORK.BFLYTEMP has 226 observations and 32 variables. NOTE: The DATA statement used 0.25 seconds. NOTE: CALL EXECUTE generated line. 2357 + Goptions Reset=Global Device=Mgif54 CBack=White Border; Run; 2358 +Filename Gsasfile "c:\tigbnext\WV\maps\770.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2359 +' 'Unconfirmed Records'); 2359 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela ancocisconensis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2360 + Id State County; run; NOTE: Entry MGIF54 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2360 + quit; NOTE: The PROCEDURE GMAP used 0.5 seconds. 2360 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2360 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2361 +Filename Gsasfile "c:\tigbnext\WV\maps\766.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2362 +' 'Unconfirmed Records'); 2362 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cuprascens"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2363 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2363 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2363 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2363 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2364 +Filename Gsasfile "c:\tigbnext\WV\maps\762.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2365 +' 'Unconfirmed Records'); 2365 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela cursitans"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 2366 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2366 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2366 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2366 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2367 +Filename Gsasfile "c:\tigbnext\WV\maps\768.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2368 +' 'Unconfirmed Records'); 2368 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela duodecimguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2369 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2369 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2369 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2369 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2370 +Filename Gsasfile "c:\tigbnext\WV\maps\765.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2371 +' 'Unconfirmed Records'); 2371 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2372 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2372 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 2372 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2372 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2373 +Filename Gsasfile "c:\tigbnext\WV\maps\775.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2374 +' 'Unconfirmed Records'); 2374 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela marginipennis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2375 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2375 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2375 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2375 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2376 +Filename Gsasfile "c:\tigbnext\WV\maps\771.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2377 +' 'Unconfirmed Records'); 2377 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela patruela"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2378 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2378 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2378 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2378 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2379 +Filename Gsasfile "c:\tigbnext\WV\maps\777.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2380 +' 'Unconfirmed Records'); 2380 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2381 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2381 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2381 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2381 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2382 +Filename Gsasfile "c:\tigbnext\WV\maps\764.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2383 +' 'Unconfirmed Records'); 2383 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2384 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2384 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 2384 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2384 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2385 +Filename Gsasfile "c:\tigbnext\WV\maps\763.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2386 +' 'Unconfirmed Records'); 2386 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela repanda"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2387 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2387 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2387 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2387 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2388 +Filename Gsasfile "c:\tigbnext\WV\maps\776.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2389 +' 'Unconfirmed Records'); 2389 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela rufiventris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2390 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2390 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2390 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2390 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2391 +Filename Gsasfile "c:\tigbnext\WV\maps\769.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2392 +' 'Unconfirmed Records'); 2392 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2393 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2393 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2393 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2393 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2394 +Filename Gsasfile "c:\tigbnext\WV\maps\774.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2395 +' 'Unconfirmed Records'); 2395 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela sexguttata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2396 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2396 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2396 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2396 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2397 +Filename Gsasfile "c:\tigbnext\WV\maps\773.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2398 +' 'Unconfirmed Records'); 2398 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 2399 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2399 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2399 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2399 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2400 +Filename Gsasfile "c:\tigbnext\WV\maps\767.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2401 +' 'Unconfirmed Records'); 2401 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2402 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2402 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2402 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2402 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2403 +Filename Gsasfile "c:\tigbnext\WV\maps\772.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2404 +' 'Unconfirmed Records'); 2404 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela unipunctata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2405 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2405 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2405 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2405 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2406 +Filename Gsasfile "c:\tigbnext\WV\maps\761.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2407 +' 'Unconfirmed Records'); 2407 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2408 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2408 + quit; NOTE: The PROCEDURE GMAP used 0.43 seconds. 2408 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2408 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2409 +Data Tempmap; set statemap; where state=55; NOTE: The data set WORK.TEMPMAP has 5005 observations and 7 variables. NOTE: The DATA statement used 0.54 seconds. 2409 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 43.638590871. NOTE: PARALLEL2 = 45.932427942. NOTE: The data set WORK.TEMPMAP2 has 5005 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.18 seconds. 2409 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 2409 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 2520 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.2 seconds. NOTE: CALL EXECUTE generated line. 2410 +flys2; where state=55; Run; NOTE: The data set WORK.BFLYTEMP has 14 observations and 32 variables. NOTE: The DATA statement used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2410 + Goptions Reset=Global Device=Mgif55 CBack=White Border; Run; 2411 +Filename Gsasfile "c:\tigbnext\WI\maps\760.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2412 +' 'Unconfirmed Records'); 2412 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2413 + Id State County; run; NOTE: Entry MGIF55 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2413 + quit; NOTE: The PROCEDURE GMAP used 0.46 seconds. 2413 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2413 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2414 +Filename Gsasfile "c:\tigbnext\WI\maps\759.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2415 +' 'Unconfirmed Records'); 2415 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela splendida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 2416 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2416 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2416 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2416 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2417 +Filename Gsasfile "c:\tigbnext\WI\maps\758.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2418 +' 'Unconfirmed Records'); 2418 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Tetracha virginica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2419 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2419 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2419 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2419 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2420 +Data Tempmap; set statemap; where state=56; NOTE: The data set WORK.TEMPMAP has 1864 observations and 7 variables. NOTE: The DATA statement used 0.48 seconds. 2420 + Proc Gproject Data=Tempmap Out=Tempmap2; Id State County; NOTE: PARALLEL1 = 41.998375584. NOTE: PARALLEL2 = 44.001437841. NOTE: The data set WORK.TEMPMAP2 has 1864 observations and 7 variables. NOTE: The PROCEDURE GPROJECT used 0.2 seconds. 2420 + proc delete Data=tempmap; NOTE: Deleting WORK.TEMPMAP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. 2420 + Proc Gremove Data=Tempmap2 Out=Tempmapa; by state; id state county; Run; Data BflyTemp; set b NOTE: The data set WORK.TEMPMAPA has 76 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2421 +flys2; where state=56; Run; NOTE: The data set WORK.BFLYTEMP has 47 observations and 32 variables. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2421 + Goptions Reset=Global Device=Mgif56 CBack=White Border; Run; 2422 +Filename Gsasfile "c:\tigbnext\WY\maps\791.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2423 +' 'Unconfirmed Records'); 2423 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Amblycheila cylindriformis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2424 + Id State County; run; NOTE: Entry MGIF56 is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2424 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2424 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2424 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2425 +Filename Gsasfile "c:\tigbnext\WY\maps\787.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2426 +' 'Unconfirmed Records'); 2426 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela decemnotata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2427 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2427 + quit; NOTE: The PROCEDURE GMAP used 0.45 seconds. 2427 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2427 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2428 +Filename Gsasfile "c:\tigbnext\WY\maps\789.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2429 +' 'Unconfirmed Records'); 2429 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela formosa"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2430 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2430 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2430 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2430 + quit; NOTE: The PROCEDURE CATALOG used 0.18 seconds. NOTE: CALL EXECUTE generated line. 2431 +Filename Gsasfile "c:\tigbnext\WY\maps\783.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2432 +' 'Unconfirmed Records'); 2432 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela fulgida"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2433 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2433 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 2433 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2433 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2434 +Filename Gsasfile "c:\tigbnext\WY\maps\778.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2435 +' 'Unconfirmed Records'); 2435 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela haemorrhagica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2436 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2436 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2436 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2436 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2437 +Filename Gsasfile "c:\tigbnext\WY\maps\790.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2438 +' 'Unconfirmed Records'); 2438 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela hirticollis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2439 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2439 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 2439 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2439 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2440 +Filename Gsasfile "c:\tigbnext\WY\maps\781.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2441 +' 'Unconfirmed Records'); 2441 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela lengi"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id St NOTE: CALL EXECUTE generated line. 2442 +ate County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2442 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2442 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2442 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2443 +Filename Gsasfile "c:\tigbnext\WY\maps\782.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2444 +' 'Unconfirmed Records'); 2444 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbalis"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2445 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2445 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2445 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2445 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2446 +Filename Gsasfile "c:\tigbnext\WY\maps\794.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2447 +' 'Unconfirmed Records'); 2447 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela limbata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2448 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2448 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2448 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2448 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2449 +Filename Gsasfile "c:\tigbnext\WY\maps\788.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2450 +' 'Unconfirmed Records'); 2450 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela nebraskana"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2451 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2451 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2451 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2451 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2452 +Filename Gsasfile "c:\tigbnext\WY\maps\784.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2453 +' 'Unconfirmed Records'); 2453 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela oregona"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2454 +State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2454 + quit; NOTE: The PROCEDURE GMAP used 0.39 seconds. 2454 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2454 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2455 +Filename Gsasfile "c:\tigbnext\WY\maps\793.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2456 +' 'Unconfirmed Records'); 2456 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela punctulata"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2457 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2457 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2457 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2457 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2458 +Filename Gsasfile "c:\tigbnext\WY\maps\786.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2459 +' 'Unconfirmed Records'); 2459 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela purpurea"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; Id NOTE: CALL EXECUTE generated line. 2460 + State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2460 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2460 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2460 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2461 +Filename Gsasfile "c:\tigbnext\WY\maps\779.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2462 +' 'Unconfirmed Records'); 2462 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela scutellaris"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2463 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2463 + quit; NOTE: The PROCEDURE GMAP used 0.48 seconds. 2463 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2463 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2464 +Filename Gsasfile "c:\tigbnext\WY\maps\785.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2465 +' 'Unconfirmed Records'); 2465 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela terricola"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; I NOTE: CALL EXECUTE generated line. 2466 +d State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2466 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2466 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2466 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: CALL EXECUTE generated line. 2467 +Filename Gsasfile "c:\tigbnext\WY\maps\792.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2468 +' 'Unconfirmed Records'); 2468 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela tranquebarica"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2469 + Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2469 + quit; NOTE: The PROCEDURE GMAP used 0.4 seconds. 2469 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2469 + quit; NOTE: The PROCEDURE CATALOG used 0.15 seconds. NOTE: CALL EXECUTE generated line. 2470 +Filename Gsasfile "c:\tigbnext\WY\maps\780.gif"; run; Pattern1 V=Solid C=Blue; Pattern2 V=Solid C=Cyan; Legend Across=2 Shape=Bar(5,2) Label=None Value=(Font=Simplex Height=2.5 Color=Black Justify=Left 'Reliable Records NOTE: CALL EXECUTE generated line. 2471 +' 'Unconfirmed Records'); 2471 + Proc Gmap Map=Tempmap2 Data=Bflytemp All; Where Label="Cicindela willistoni"; Choro Response / Discrete nolegend Coutline=Gray Cempty=Gray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1; NOTE: CALL EXECUTE generated line. 2472 +Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 2472 + quit; NOTE: The PROCEDURE GMAP used 0.42 seconds. 2472 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 2472 + quit; NOTE: The PROCEDURE CATALOG used 0.17 seconds. NOTE: Libref GDEVICE0 has been deassigned. NOTE: Deleting WORK.MAPS (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.03 seconds. NOTE: Deleting WORK.TEMPMAP2 (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. NOTE: Deleting WORK.BFLYTEMP (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. NOTE: The data set WORK.MEX_USA has 27486 observations and 6 variables. NOTE: The DATA statement used 0.67 seconds. NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 32 at 2083:159 32 at 2083:183 NOTE: The data set WORK.NOTDONE has 27635 observations and 4 variables. NOTE: The data set WORK.MAPDATA has 27635 observations and 5 variables. NOTE: The DATA statement used 0.62 seconds. NOTE: 24508 observations with duplicate key values were deleted. NOTE: The data set WORK.NOTDONE has 3127 observations and 4 variables. NOTE: The PROCEDURE SORT used 0.21 seconds. NOTE: The infile SUBDONE is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\subdone.txt, RECFM=V,LRECL=2048 NOTE: 29 records were read from the infile SUBDONE. The minimum record length was 0. The maximum record length was 93. NOTE: The data set WORK.SUBDONE has 0 observations and 3 variables. NOTE: The DATA statement used 0.12 seconds. NOTE: Input data set is empty. NOTE: The data set WORK.SUBDONE has 0 observations and 3 variables. NOTE: The PROCEDURE SORT used 0.09 seconds. NOTE: PARALLEL1 = 28.761333967. NOTE: PARALLEL2 = 42.510026355. NOTE: The data set WORK.MAPDATA has 27631 observations and 5 variables. NOTE: The PROCEDURE GPROJECT used 0.31 seconds. NOTE: The data set WORK.STATE_1 has 5544 observations and 4 variables. NOTE: The PROCEDURE GREMOVE used 0.2 seconds. NOTE: The data set WORK.ANNO has 5538 observations and 5 variables. NOTE: The DATA statement used 0.15 seconds. NOTE: The data set WORK.ANNO has 5648 observations and 11 variables. NOTE: The DATA statement used 0.2 seconds. NOTE: Libref GDEVICE0 was successfully assigned as follows: Engine: V612 Physical Name: C:\sas_w612 NOTE: The data set WORK.BFLYS2 has 7721 observations and 32 variables. NOTE: The PROCEDURE SORT used 0.96 seconds. NOTE: Catalog GDEVICE0.DEVICES did not exist. It has been created. NOTE: Enter PROC GDEVICE commands. NOTE: Device entry MAPGIF added. NOTE: The PROCEDURE GDEVICE used 0.5 seconds. NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 2083:145 NOTE: The data set WORK._TEMP_ has 7721 observations and 36 variables. NOTE: The DATA statement used 0.82 seconds. NOTE: CALL EXECUTE generated line. 1 +Data ThisFam; Set Subdone; Where Family="Cicindelidae" and SubFam=""; Drop Family SubFam; NOTE: The data set WORK.THISFAM has 0 observations and 1 variables. NOTE: The DATA statement used 0.1 seconds. 1 + Data _null_; call symput ('numobs',left(put(count,8.))); call execute('%subdone2'); stop; Set ThisFam nobs=count; run; NOTE: The DATA statement used 0.04 seconds. NOTE: CALL EXECUTE generated line. 1 +Data NotDone2; Set NotDone; If StateCd Not in ("AL", "AR", "AZ", "CA", "CO", "CT", "DE", "FL", "GA", "IA", "ID", "IL", "IN", "KS", "KY", "LA", "MA", "MD", "ME", "MI", "MN", "MO", "MS", "MT", "NC", "ND", "NE", "NH", "NJ", "NM", "NV", "NY", "OH", "OK NOTE: CALL EXECUTE generated line. 2 +", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "UT", "VA", "VT", "WA", "WI", "WV", "WY"); Drop StateCd; Run; NOTE: The data set WORK.NOTDONE2 has 10 observations and 3 variables. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 2 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Amblycheila baroni" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 3 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7718 observations and 4 variables. NOTE: The DATA statement used 0.37 seconds. 2 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 13 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.28 seconds. 2 + Filename Gsasfile "c:\ti 2 + g NOTE: CALL EXECUTE generated line. 3 +bnext\USA\Maps\1.gif"; 3 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Entry MAPGIF is a user-modified device description. NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 3 + quit; NOTE: The PROCEDURE GMAP used 0.79 seconds. NOTE: CALL EXECUTE generated line. 4 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 4 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 5 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Amblycheila cylindriformis" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 29 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7689 observations and 4 variables. NOTE: The DATA statement used 0.65 seconds. 5 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 39 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 5 + Filename Gsasfile NOTE: CALL EXECUTE generated line. 6 + "c:\tigbnext\USA\Maps\2.gif"; 6 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. NOTE: CALL EXECUTE generated line. 7 + quit; NOTE: The PROCEDURE GMAP used 0.81 seconds. 7 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 7 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 8 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Amblycheila picolominii" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 6 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7683 observations and 4 variables. NOTE: The DATA statement used 0.71 seconds. 8 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 16 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 8 + Filename Gsasfile " 8 + c NOTE: CALL EXECUTE generated line. 9 +:\tigbnext\USA\Maps\3.gif"; 9 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 9 + q NOTE: CALL EXECUTE generated line. 10 +uit; NOTE: The PROCEDURE GMAP used 0.73 seconds. 10 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 10 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 11 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Amblycheila schwarzi" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 2 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7681 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 11 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 12 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 11 + Filename Gsasfile "c:\ 11 + t NOTE: CALL EXECUTE generated line. 12 +igbnext\USA\Maps\4.gif"; 12 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 12 + quit NOTE: CALL EXECUTE generated line. 13 +; NOTE: The PROCEDURE GMAP used 0.73 seconds. 13 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 13 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 14 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela abdominalis" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 66 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7615 observations and 4 variables. NOTE: The DATA statement used 1.01 seconds. 14 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 76 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 14 + Filename Gsasfile "c: 14 + \ NOTE: CALL EXECUTE generated line. 15 +tigbnext\USA\Maps\5.gif"; 15 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 15 + qui NOTE: CALL EXECUTE generated line. 16 +t; NOTE: The PROCEDURE GMAP used 0.76 seconds. 16 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 16 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 17 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela amargosae" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 2 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7613 observations and 4 variables. NOTE: The DATA statement used 0.71 seconds. 17 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 12 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 17 + Filename Gsasfile "c:\t 17 + i NOTE: CALL EXECUTE generated line. 18 +gbnext\USA\Maps\6.gif"; 18 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 18 + quit; NOTE: CALL EXECUTE generated line. 19 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.73 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 20 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela ancocisconensis" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 40 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7573 observations and 4 variables. NOTE: The DATA statement used 0.75 seconds. 20 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 50 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 20 + Filename Gsasfile NOTE: CALL EXECUTE generated line. 21 +"c:\tigbnext\USA\Maps\7.gif"; 21 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. NOTE: CALL EXECUTE generated line. 22 + quit; NOTE: The PROCEDURE GMAP used 0.78 seconds. 22 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 22 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 23 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela arenicola" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 3 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7570 observations and 4 variables. NOTE: The DATA statement used 0.71 seconds. 23 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 13 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 23 + Filename Gsasfile "c:\t 23 + i NOTE: CALL EXECUTE generated line. 24 +gbnext\USA\Maps\8.gif"; 24 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 24 + quit; NOTE: CALL EXECUTE generated line. 25 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.73 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 26 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela belfragei" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 17 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7553 observations and 4 variables. NOTE: The DATA statement used 0.71 seconds. 26 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 27 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.18 seconds. 26 + Filename Gsasfile "c:\t 26 + i NOTE: CALL EXECUTE generated line. 27 +gbnext\USA\Maps\9.gif"; 27 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 27 + quit; NOTE: CALL EXECUTE generated line. 28 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 29 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela bellissima" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 11 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7542 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 29 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 21 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.2 seconds. 29 + Filename Gsasfile "c:\ 29 + t NOTE: CALL EXECUTE generated line. 30 +igbnext\USA\Maps\10.gif"; 30 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 30 + qui NOTE: CALL EXECUTE generated line. 31 +t; NOTE: The PROCEDURE GMAP used 0.73 seconds. 31 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 31 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 32 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela blanda" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 25 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7517 observations and 4 variables. NOTE: The DATA statement used 0.71 seconds. 32 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 35 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.2 seconds. 32 + Filename Gsasfile "c:\tigb 32 + n NOTE: CALL EXECUTE generated line. 33 +ext\USA\Maps\11.gif"; 33 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 33 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 34 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 34 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 35 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela californica" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 1 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7516 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 35 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 11 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 35 + Filename Gsasfile "c: 35 + \ NOTE: CALL EXECUTE generated line. 36 +tigbnext\USA\Maps\12.gif"; 36 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 36 + qu NOTE: CALL EXECUTE generated line. 37 +it; NOTE: The PROCEDURE GMAP used 0.76 seconds. 37 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 37 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 38 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela cazieri" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 1 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7515 observations and 4 variables. NOTE: The DATA statement used 0.71 seconds. 38 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 11 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 38 + Filename Gsasfile "c:\tig 38 + b NOTE: CALL EXECUTE generated line. 39 +next\USA\Maps\13.gif"; 39 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 39 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 40 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 40 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 41 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela celeripes" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 20 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7495 observations and 4 variables. NOTE: The DATA statement used 0.75 seconds. 41 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 30 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 41 + Filename Gsasfile "c:\t 41 + i NOTE: CALL EXECUTE generated line. 42 +gbnext\USA\Maps\14.gif"; 42 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 42 + quit NOTE: CALL EXECUTE generated line. 43 +; NOTE: The PROCEDURE GMAP used 0.76 seconds. 43 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 43 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 44 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela chlorocephala" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 1 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7494 observations and 4 variables. NOTE: The DATA statement used 0.71 seconds. 44 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 11 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.23 seconds. 44 + Filename Gsasfile " 44 + c NOTE: CALL EXECUTE generated line. 45 +:\tigbnext\USA\Maps\15.gif"; 45 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. NOTE: CALL EXECUTE generated line. 46 +quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. 46 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 46 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 47 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela circumpicta" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 74 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7420 observations and 4 variables. NOTE: The DATA statement used 0.76 seconds. 47 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 84 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 47 + Filename Gsasfile "c: 47 + \ NOTE: CALL EXECUTE generated line. 48 +tigbnext\USA\Maps\16.gif"; 48 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 48 + qu NOTE: CALL EXECUTE generated line. 49 +it; NOTE: The PROCEDURE GMAP used 0.75 seconds. 49 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 49 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 50 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela columbica" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 10 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7410 observations and 4 variables. NOTE: The DATA statement used 0.71 seconds. 50 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 20 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.18 seconds. 50 + Filename Gsasfile "c:\t 50 + i NOTE: CALL EXECUTE generated line. 51 +gbnext\USA\Maps\17.gif"; 51 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 51 + quit NOTE: CALL EXECUTE generated line. 52 +; NOTE: The PROCEDURE GMAP used 0.75 seconds. 52 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 52 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 53 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela cuprascens" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 158 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7252 observations and 4 variables. NOTE: The DATA statement used 0.73 seconds. 53 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 168 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 53 + Filename Gsasfile "c:\ 53 + t NOTE: CALL EXECUTE generated line. 54 +igbnext\USA\Maps\18.gif"; 54 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 54 + qui NOTE: CALL EXECUTE generated line. 55 +t; NOTE: The PROCEDURE GMAP used 0.71 seconds. 55 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 55 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 56 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela cursitans" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 26 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7226 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 56 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 36 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 56 + Filename Gsasfile "c:\t 56 + i NOTE: CALL EXECUTE generated line. 57 +gbnext\USA\Maps\19.gif"; 57 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 57 + quit NOTE: CALL EXECUTE generated line. 58 +; NOTE: The PROCEDURE GMAP used 0.75 seconds. 58 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 58 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 59 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela debilis" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 2 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7224 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 59 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 12 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 59 + Filename Gsasfile "c:\tig 59 + b NOTE: CALL EXECUTE generated line. 60 +next\USA\Maps\20.gif"; 60 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 60 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 61 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 61 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 62 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela decemnotata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 29 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7195 observations and 4 variables. NOTE: The DATA statement used 0.73 seconds. 62 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 39 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 62 + Filename Gsasfile "c: 62 + \ NOTE: CALL EXECUTE generated line. 63 +tigbnext\USA\Maps\21.gif"; 63 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 63 + qu NOTE: CALL EXECUTE generated line. 64 +it; NOTE: The PROCEDURE GMAP used 0.75 seconds. 64 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 64 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 65 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela denverensis" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 44 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7151 observations and 4 variables. NOTE: The DATA statement used 0.65 seconds. 65 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 54 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 65 + Filename Gsasfile "c: 65 + \ NOTE: CALL EXECUTE generated line. 66 +tigbnext\USA\Maps\22.gif"; 66 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 66 + qu NOTE: CALL EXECUTE generated line. 67 +it; NOTE: The PROCEDURE GMAP used 0.76 seconds. 67 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 67 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 68 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela depressula" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 31 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7120 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 68 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 41 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 68 + Filename Gsasfile "c:\ 68 + t NOTE: CALL EXECUTE generated line. 69 +igbnext\USA\Maps\23.gif"; 69 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 69 + qui NOTE: CALL EXECUTE generated line. 70 +t; NOTE: The PROCEDURE GMAP used 0.76 seconds. 70 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 70 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 71 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela dorsalis" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 56 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 7064 observations and 4 variables. NOTE: The DATA statement used 0.67 seconds. 71 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 66 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 71 + Filename Gsasfile "c:\ti 71 + g NOTE: CALL EXECUTE generated line. 72 +bnext\USA\Maps\24.gif"; 72 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 72 + quit; NOTE: CALL EXECUTE generated line. 73 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 74 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela duodecimguttata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 334 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 6730 observations and 4 variables. NOTE: The DATA statement used 0.67 seconds. 74 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 344 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 74 + Filename Gsasfile NOTE: CALL EXECUTE generated line. 75 +"c:\tigbnext\USA\Maps\25.gif"; 75 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. NOTE: CALL EXECUTE generated line. 76 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. 76 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 76 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 77 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela formosa" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 272 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 6458 observations and 4 variables. NOTE: The DATA statement used 0.64 seconds. 77 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 282 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 77 + Filename Gsasfile "c:\tig 77 + b NOTE: CALL EXECUTE generated line. 78 +next\USA\Maps\26.gif"; 78 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 78 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 79 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 79 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 80 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela fulgida" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 53 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 6405 observations and 4 variables. NOTE: The DATA statement used 0.64 seconds. 80 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 63 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 80 + Filename Gsasfile "c:\tig 80 + b NOTE: CALL EXECUTE generated line. 81 +next\USA\Maps\27.gif"; 81 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 81 + quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: CALL EXECUTE generated line. 82 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 82 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 83 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela fulgoris" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 3 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 6402 observations and 4 variables. NOTE: The DATA statement used 0.64 seconds. 83 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 13 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 83 + Filename Gsasfile "c:\ti 83 + g NOTE: CALL EXECUTE generated line. 84 +bnext\USA\Maps\28.gif"; 84 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 84 + quit; NOTE: CALL EXECUTE generated line. 85 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 86 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela gabbii" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 1 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 6401 observations and 4 variables. NOTE: The DATA statement used 0.7 seconds. 86 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 11 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 86 + Filename Gsasfile "c:\tigb 86 + n NOTE: CALL EXECUTE generated line. 87 +ext\USA\Maps\29.gif"; 87 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 87 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 88 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 88 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 89 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela gratiosa" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 22 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 6379 observations and 4 variables. NOTE: The DATA statement used 0.71 seconds. 89 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 32 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 89 + Filename Gsasfile "c:\ti 89 + g NOTE: CALL EXECUTE generated line. 90 +bnext\USA\Maps\30.gif"; 90 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 90 + quit; NOTE: CALL EXECUTE generated line. 91 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 92 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela haemorrhagica" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 50 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 6329 observations and 4 variables. NOTE: The DATA statement used 0.67 seconds. 92 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 60 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 92 + Filename Gsasfile " 92 + c NOTE: CALL EXECUTE generated line. 93 +:\tigbnext\USA\Maps\31.gif"; 93 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. NOTE: CALL EXECUTE generated line. 94 +quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. 94 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 94 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 95 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela hamata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 15 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 6314 observations and 4 variables. NOTE: The DATA statement used 0.7 seconds. 95 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 25 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 95 + Filename Gsasfile "c:\tigb 95 + n NOTE: CALL EXECUTE generated line. 96 +ext\USA\Maps\32.gif"; 96 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 96 + quit; NOTE: The PROCEDURE GMAP used 0.73 seconds. NOTE: CALL EXECUTE generated line. 97 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 97 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 98 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela hirticollis" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 424 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5890 observations and 4 variables. NOTE: The DATA statement used 0.65 seconds. 98 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 434 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.18 seconds. 98 + Filename Gsasfile "c: 98 + \ NOTE: CALL EXECUTE generated line. 99 +tigbnext\USA\Maps\33.gif"; 99 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 99 + qu NOTE: CALL EXECUTE generated line. 100 +it; NOTE: The PROCEDURE GMAP used 0.78 seconds. 100 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 100 + quit; NOTE: The PROCEDURE CATALOG used 0.32 seconds. NOTE: CALL EXECUTE generated line. 101 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela hirtilabris" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 8 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5882 observations and 4 variables. NOTE: The DATA statement used 0.65 seconds. 101 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 18 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 101 + Filename Gsasfile "c: 101 + \ NOTE: CALL EXECUTE generated line. 102 +tigbnext\USA\Maps\34.gif"; 102 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 102 + qu NOTE: CALL EXECUTE generated line. 103 +it; NOTE: The PROCEDURE GMAP used 0.75 seconds. 103 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 103 + quit; NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 104 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela hornii" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 3 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5879 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 104 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 13 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 104 + Filename Gsasfile "c:\tigb 104 + n NOTE: CALL EXECUTE generated line. 105 +ext\USA\Maps\35.gif"; 105 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 105 + quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: CALL EXECUTE generated line. 106 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 106 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 107 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela latesignata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 2 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5877 observations and 4 variables. NOTE: The DATA statement used 0.7 seconds. 107 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 12 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 107 + Filename Gsasfile "c: 107 + \ NOTE: CALL EXECUTE generated line. 108 +tigbnext\USA\Maps\36.gif"; 108 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 108 + qu NOTE: CALL EXECUTE generated line. 109 +it; NOTE: The PROCEDURE GMAP used 0.75 seconds. 109 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 109 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 110 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela lemniscata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 16 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5861 observations and 4 variables. NOTE: The DATA statement used 0.67 seconds. 110 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 26 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 110 + Filename Gsasfile "c:\ 110 + t NOTE: CALL EXECUTE generated line. 111 +igbnext\USA\Maps\37.gif"; 111 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 111 + qui NOTE: CALL EXECUTE generated line. 112 +t; NOTE: The PROCEDURE GMAP used 0.76 seconds. 112 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 112 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 113 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela lengi" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 66 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5795 observations and 4 variables. NOTE: The DATA statement used 0.7 seconds. 113 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 76 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 113 + Filename Gsasfile "c:\tigbn 113 + e NOTE: CALL EXECUTE generated line. 114 +xt\USA\Maps\38.gif"; 114 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 114 + quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: CALL EXECUTE generated line. 115 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 115 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 116 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela lepida" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 95 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5700 observations and 4 variables. NOTE: The DATA statement used 0.67 seconds. 116 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 105 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 116 + Filename Gsasfile "c:\tigb 116 + n NOTE: CALL EXECUTE generated line. 117 +ext\USA\Maps\39.gif"; 117 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 117 + quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: CALL EXECUTE generated line. 118 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 118 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 119 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela limbalis" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 98 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5602 observations and 4 variables. NOTE: The DATA statement used 0.71 seconds. 119 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 108 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.18 seconds. 119 + Filename Gsasfile "c:\ti 119 + g NOTE: CALL EXECUTE generated line. 120 +bnext\USA\Maps\40.gif"; 120 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 120 + quit; NOTE: CALL EXECUTE generated line. 121 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 122 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela limbata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 28 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5574 observations and 4 variables. NOTE: The DATA statement used 0.73 seconds. 122 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 38 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 122 + Filename Gsasfile "c:\tig 122 + b NOTE: CALL EXECUTE generated line. 123 +next\USA\Maps\41.gif"; 123 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 123 + quit; NOTE: The PROCEDURE GMAP used 0.78 seconds. NOTE: CALL EXECUTE generated line. 124 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 124 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 125 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela longilabris" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 132 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5442 observations and 4 variables. NOTE: The DATA statement used 0.7 seconds. 125 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 142 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 125 + Filename Gsasfile "c: 125 + \ NOTE: CALL EXECUTE generated line. 126 +tigbnext\USA\Maps\42.gif"; 126 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 126 + qu NOTE: CALL EXECUTE generated line. 127 +it; NOTE: The PROCEDURE GMAP used 0.76 seconds. 127 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 127 + quit; NOTE: The PROCEDURE CATALOG used 0.26 seconds. NOTE: CALL EXECUTE generated line. 128 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela macra" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 64 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5378 observations and 4 variables. NOTE: The DATA statement used 0.65 seconds. 128 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 74 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 128 + Filename Gsasfile "c:\tigbn 128 + e NOTE: CALL EXECUTE generated line. 129 +xt\USA\Maps\43.gif"; 129 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 129 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 130 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 130 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 131 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela marginata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 56 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5322 observations and 4 variables. NOTE: The DATA statement used 0.7 seconds. 131 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 66 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 131 + Filename Gsasfile "c:\t 131 + i NOTE: CALL EXECUTE generated line. 132 +gbnext\USA\Maps\44.gif"; 132 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 132 + quit NOTE: CALL EXECUTE generated line. 133 +; NOTE: The PROCEDURE GMAP used 0.76 seconds. 133 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 133 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 134 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela marginipennis" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 22 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5300 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 134 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 32 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 134 + Filename Gsasfile " 134 + c NOTE: CALL EXECUTE generated line. 135 +:\tigbnext\USA\Maps\45.gif"; 135 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. NOTE: CALL EXECUTE generated line. 136 +quit; NOTE: The PROCEDURE GMAP used 0.78 seconds. 136 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 136 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 137 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela marutha" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 13 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5287 observations and 4 variables. NOTE: The DATA statement used 0.71 seconds. 137 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 23 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 137 + Filename Gsasfile "c:\tig 137 + b NOTE: CALL EXECUTE generated line. 138 +next\USA\Maps\46.gif"; 138 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 138 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 139 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 139 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 140 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela nebraskana" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 59 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5228 observations and 4 variables. NOTE: The DATA statement used 0.7 seconds. 140 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 69 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.18 seconds. 140 + Filename Gsasfile "c:\ 140 + t NOTE: CALL EXECUTE generated line. 141 +igbnext\USA\Maps\47.gif"; 141 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 141 + qui NOTE: CALL EXECUTE generated line. 142 +t; NOTE: The PROCEDURE GMAP used 0.76 seconds. 142 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 142 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 143 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela nevadica" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 60 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5168 observations and 4 variables. NOTE: The DATA statement used 0.71 seconds. 143 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 70 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 143 + Filename Gsasfile "c:\ti 143 + g NOTE: CALL EXECUTE generated line. 144 +bnext\USA\Maps\48.gif"; 144 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 144 + quit; NOTE: CALL EXECUTE generated line. 145 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.78 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 146 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela nigrior" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 8 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5160 observations and 4 variables. NOTE: The DATA statement used 0.7 seconds. 146 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 18 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.18 seconds. 146 + Filename Gsasfile "c:\tig 146 + b NOTE: CALL EXECUTE generated line. 147 +next\USA\Maps\49.gif"; 147 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 147 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 148 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 148 + quit; NOTE: The PROCEDURE CATALOG used 0.34 seconds. NOTE: CALL EXECUTE generated line. 149 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela nigrocoerulea" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 36 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5124 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 149 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 46 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 149 + Filename Gsasfile " 149 + c NOTE: CALL EXECUTE generated line. 150 +:\tigbnext\USA\Maps\50.gif"; 150 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. NOTE: CALL EXECUTE generated line. 151 +quit; NOTE: The PROCEDURE GMAP used 0.71 seconds. 151 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 151 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 152 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela obsoleta" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 44 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5080 observations and 4 variables. NOTE: The DATA statement used 0.64 seconds. 152 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 54 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 152 + Filename Gsasfile "c:\ti 152 + g NOTE: CALL EXECUTE generated line. 153 +bnext\USA\Maps\51.gif"; 153 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 153 + quit; NOTE: CALL EXECUTE generated line. 154 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 155 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela ocellata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 45 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 5035 observations and 4 variables. NOTE: The DATA statement used 0.67 seconds. 155 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 55 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 155 + Filename Gsasfile "c:\ti 155 + g NOTE: CALL EXECUTE generated line. 156 +bnext\USA\Maps\52.gif"; 156 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 156 + quit; NOTE: CALL EXECUTE generated line. 157 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 158 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela oregona" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 176 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 4859 observations and 4 variables. NOTE: The DATA statement used 0.7 seconds. 158 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 186 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 158 + Filename Gsasfile "c:\tig 158 + b NOTE: CALL EXECUTE generated line. 159 +next\USA\Maps\53.gif"; 159 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 159 + quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: CALL EXECUTE generated line. 160 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 160 + quit; NOTE: The PROCEDURE CATALOG used 0.32 seconds. NOTE: CALL EXECUTE generated line. 161 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela pamphila" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 9 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 4850 observations and 4 variables. NOTE: The DATA statement used 0.64 seconds. 161 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 19 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.21 seconds. 161 + Filename Gsasfile "c:\ti 161 + g NOTE: CALL EXECUTE generated line. 162 +bnext\USA\Maps\54.gif"; 162 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 162 + quit; NOTE: CALL EXECUTE generated line. 163 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 164 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela parowana" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 20 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 4830 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 164 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 30 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.2 seconds. 164 + Filename Gsasfile "c:\ti 164 + g NOTE: CALL EXECUTE generated line. 165 +bnext\USA\Maps\55.gif"; 165 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 165 + quit; NOTE: CALL EXECUTE generated line. 166 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 167 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela patruela" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 80 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 4750 observations and 4 variables. NOTE: The DATA statement used 0.75 seconds. 167 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 90 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.21 seconds. 167 + Filename Gsasfile "c:\ti 167 + g NOTE: CALL EXECUTE generated line. 168 +bnext\USA\Maps\56.gif"; 168 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 168 + quit; NOTE: CALL EXECUTE generated line. 169 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 170 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela pilatei" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 3 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 4747 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 170 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 13 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 170 + Filename Gsasfile "c:\tig 170 + b NOTE: CALL EXECUTE generated line. 171 +next\USA\Maps\57.gif"; 171 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 171 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 172 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 172 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 173 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela pimeriana" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 1 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 4746 observations and 4 variables. NOTE: The DATA statement used 0.67 seconds. 173 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 11 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 173 + Filename Gsasfile "c:\t 173 + i NOTE: CALL EXECUTE generated line. 174 +gbnext\USA\Maps\58.gif"; 174 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 174 + quit NOTE: CALL EXECUTE generated line. 175 +; NOTE: The PROCEDURE GMAP used 0.76 seconds. 175 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 175 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 176 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela plutonica" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 8 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 4738 observations and 4 variables. NOTE: The DATA statement used 0.7 seconds. 176 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 18 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.2 seconds. 176 + Filename Gsasfile "c:\t 176 + i NOTE: CALL EXECUTE generated line. 177 +gbnext\USA\Maps\59.gif"; 177 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 177 + quit NOTE: CALL EXECUTE generated line. 178 +; NOTE: The PROCEDURE GMAP used 0.76 seconds. 178 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 178 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 179 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela politula" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 16 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 4722 observations and 4 variables. NOTE: The DATA statement used 0.67 seconds. 179 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 26 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 179 + Filename Gsasfile "c:\ti 179 + g NOTE: CALL EXECUTE generated line. 180 +bnext\USA\Maps\60.gif"; 180 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 180 + quit; NOTE: CALL EXECUTE generated line. 181 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.78 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 182 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela praetextata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 14 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 4708 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 182 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 24 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 182 + Filename Gsasfile "c: 182 + \ NOTE: CALL EXECUTE generated line. 183 +tigbnext\USA\Maps\61.gif"; 183 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 183 + qu NOTE: CALL EXECUTE generated line. 184 +it; NOTE: The PROCEDURE GMAP used 0.76 seconds. 184 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 184 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 185 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela pugetana" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 9 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 4699 observations and 4 variables. NOTE: The DATA statement used 0.67 seconds. 185 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 19 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 185 + Filename Gsasfile "c:\ti 185 + g NOTE: CALL EXECUTE generated line. 186 +bnext\USA\Maps\62.gif"; 186 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 186 + quit; NOTE: CALL EXECUTE generated line. 187 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.71 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.25 seconds. NOTE: CALL EXECUTE generated line. 188 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela pulchra" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 38 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 4661 observations and 4 variables. NOTE: The DATA statement used 0.6 seconds. 188 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 48 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 188 + Filename Gsasfile "c:\tig 188 + b NOTE: CALL EXECUTE generated line. 189 +next\USA\Maps\63.gif"; 189 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 189 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 190 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 190 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 191 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela punctulata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 846 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 3815 observations and 4 variables. NOTE: The DATA statement used 0.62 seconds. 191 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 856 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 191 + Filename Gsasfile "c:\ 191 + t NOTE: CALL EXECUTE generated line. 192 +igbnext\USA\Maps\64.gif"; 192 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 192 + qui NOTE: CALL EXECUTE generated line. 193 +t; NOTE: The PROCEDURE GMAP used 0.78 seconds. 193 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 193 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 194 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela puritana" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 5 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 3810 observations and 4 variables. NOTE: The DATA statement used 0.62 seconds. 194 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 15 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 194 + Filename Gsasfile "c:\ti 194 + g NOTE: CALL EXECUTE generated line. 195 +bnext\USA\Maps\65.gif"; 195 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 195 + quit; NOTE: CALL EXECUTE generated line. 196 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 197 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela purpurea" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 331 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 3479 observations and 4 variables. NOTE: The DATA statement used 0.64 seconds. 197 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 341 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 197 + Filename Gsasfile "c:\ti 197 + g NOTE: CALL EXECUTE generated line. 198 +bnext\USA\Maps\66.gif"; 198 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 198 + quit; NOTE: CALL EXECUTE generated line. 199 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.32 seconds. NOTE: CALL EXECUTE generated line. 200 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela repanda" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 660 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 2819 observations and 4 variables. NOTE: The DATA statement used 0.64 seconds. 200 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 670 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 200 + Filename Gsasfile "c:\tig 200 + b NOTE: CALL EXECUTE generated line. 201 +next\USA\Maps\67.gif"; 201 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 201 + quit; NOTE: The PROCEDURE GMAP used 0.81 seconds. NOTE: CALL EXECUTE generated line. 202 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 202 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 203 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela rufiventris" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 283 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 2536 observations and 4 variables. NOTE: The DATA statement used 0.59 seconds. 203 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 293 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 203 + Filename Gsasfile "c: 203 + \ NOTE: CALL EXECUTE generated line. 204 +tigbnext\USA\Maps\68.gif"; 204 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 204 + qu NOTE: CALL EXECUTE generated line. 205 +it; NOTE: The PROCEDURE GMAP used 0.81 seconds. 205 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 205 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 206 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela schauppii" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 34 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 2502 observations and 4 variables. NOTE: The DATA statement used 0.68 seconds. 206 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 44 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.18 seconds. 206 + Filename Gsasfile "c:\t 206 + i NOTE: CALL EXECUTE generated line. 207 +gbnext\USA\Maps\69.gif"; 207 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 207 + quit NOTE: CALL EXECUTE generated line. 208 +; NOTE: The PROCEDURE GMAP used 0.76 seconds. 208 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 208 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 209 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela scutellaris" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 332 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 2170 observations and 4 variables. NOTE: The DATA statement used 0.57 seconds. 209 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 342 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 209 + Filename Gsasfile "c: 209 + \ NOTE: CALL EXECUTE generated line. 210 +tigbnext\USA\Maps\70.gif"; 210 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 210 + qu NOTE: CALL EXECUTE generated line. 211 +it; NOTE: The PROCEDURE GMAP used 0.82 seconds. 211 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 211 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 212 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela sedecimpunctata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 11 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 2159 observations and 4 variables. NOTE: The DATA statement used 0.59 seconds. 212 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 21 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 212 + Filename Gsasfile NOTE: CALL EXECUTE generated line. 213 +"c:\tigbnext\USA\Maps\71.gif"; 213 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. NOTE: CALL EXECUTE generated line. 214 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. 214 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 214 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 215 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela senilis" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 2 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 2157 observations and 4 variables. NOTE: The DATA statement used 0.64 seconds. 215 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 12 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.18 seconds. 215 + Filename Gsasfile "c:\tig 215 + b NOTE: CALL EXECUTE generated line. 216 +next\USA\Maps\72.gif"; 216 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 216 + quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: CALL EXECUTE generated line. 217 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 217 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 218 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela severa" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 12 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 2145 observations and 4 variables. NOTE: The DATA statement used 0.6 seconds. 218 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 22 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 218 + Filename Gsasfile "c:\tigb 218 + n NOTE: CALL EXECUTE generated line. 219 +ext\USA\Maps\73.gif"; 219 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 219 + quit; NOTE: The PROCEDURE GMAP used 0.73 seconds. NOTE: CALL EXECUTE generated line. 220 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 220 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 221 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela sexguttata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 548 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 1597 observations and 4 variables. NOTE: The DATA statement used 0.62 seconds. 221 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 558 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 221 + Filename Gsasfile "c:\ 221 + t NOTE: CALL EXECUTE generated line. 222 +igbnext\USA\Maps\74.gif"; 222 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 222 + qui NOTE: CALL EXECUTE generated line. 223 +t; NOTE: The PROCEDURE GMAP used 0.76 seconds. 223 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 223 + quit; NOTE: The PROCEDURE CATALOG used 0.32 seconds. NOTE: CALL EXECUTE generated line. 224 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela sperata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 10 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 1587 observations and 4 variables. NOTE: The DATA statement used 0.6 seconds. 224 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 20 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.18 seconds. 224 + Filename Gsasfile "c:\tig 224 + b NOTE: CALL EXECUTE generated line. 225 +next\USA\Maps\75.gif"; 225 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 225 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 226 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 226 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 227 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela splendida" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 165 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 1422 observations and 4 variables. NOTE: The DATA statement used 0.62 seconds. 227 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 175 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.2 seconds. 227 + Filename Gsasfile "c:\t 227 + i NOTE: CALL EXECUTE generated line. 228 +gbnext\USA\Maps\76.gif"; 228 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 228 + quit NOTE: CALL EXECUTE generated line. 229 +; NOTE: The PROCEDURE GMAP used 0.75 seconds. 229 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 229 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 230 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela striga" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 3 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 1419 observations and 4 variables. NOTE: The DATA statement used 0.6 seconds. 230 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 13 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.18 seconds. 230 + Filename Gsasfile "c:\tigb 230 + n NOTE: CALL EXECUTE generated line. 231 +ext\USA\Maps\77.gif"; 231 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 231 + quit; NOTE: The PROCEDURE GMAP used 0.73 seconds. NOTE: CALL EXECUTE generated line. 232 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 232 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 233 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela tenuicincta" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 4 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 1415 observations and 4 variables. NOTE: The DATA statement used 0.59 seconds. 233 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 14 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 233 + Filename Gsasfile "c: 233 + \ NOTE: CALL EXECUTE generated line. 234 +tigbnext\USA\Maps\78.gif"; 234 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 234 + qu NOTE: CALL EXECUTE generated line. 235 +it; NOTE: The PROCEDURE GMAP used 0.73 seconds. 235 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 235 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 236 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela tenuisignata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 18 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 1397 observations and 4 variables. NOTE: The DATA statement used 0.6 seconds. 236 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 28 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 236 + Filename Gsasfile "c 236 + : NOTE: CALL EXECUTE generated line. 237 +\tigbnext\USA\Maps\79.gif"; 237 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 237 + q NOTE: CALL EXECUTE generated line. 238 +uit; NOTE: The PROCEDURE GMAP used 0.75 seconds. 238 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 238 + quit; NOTE: The PROCEDURE CATALOG used 0.32 seconds. NOTE: CALL EXECUTE generated line. 239 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela terricola" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 79 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 1318 observations and 4 variables. NOTE: The DATA statement used 0.57 seconds. 239 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 89 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.1 seconds. 239 + Filename Gsasfile "c:\t 239 + i NOTE: CALL EXECUTE generated line. 240 +gbnext\USA\Maps\80.gif"; 240 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 240 + quit NOTE: CALL EXECUTE generated line. 241 +; NOTE: The PROCEDURE GMAP used 0.82 seconds. 241 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 241 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 242 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela theatina" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 3 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 1315 observations and 4 variables. NOTE: The DATA statement used 0.56 seconds. 242 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 13 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 242 + Filename Gsasfile "c:\ti 242 + g NOTE: CALL EXECUTE generated line. 243 +bnext\USA\Maps\81.gif"; 243 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 243 + quit; NOTE: CALL EXECUTE generated line. 244 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.78 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 245 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela togata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 67 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 1248 observations and 4 variables. NOTE: The DATA statement used 0.54 seconds. 245 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 77 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 245 + Filename Gsasfile "c:\tigb 245 + n NOTE: CALL EXECUTE generated line. 246 +ext\USA\Maps\82.gif"; 246 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 246 + quit; NOTE: The PROCEDURE GMAP used 0.78 seconds. NOTE: CALL EXECUTE generated line. 247 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 247 + quit; NOTE: The PROCEDURE CATALOG used 0.32 seconds. NOTE: CALL EXECUTE generated line. 248 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela tranquebarica" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 502 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 746 observations and 4 variables. NOTE: The DATA statement used 0.54 seconds. 248 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 512 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 248 + Filename Gsasfile " 248 + c NOTE: CALL EXECUTE generated line. 249 +:\tigbnext\USA\Maps\83.gif"; 249 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. NOTE: CALL EXECUTE generated line. 250 +quit; NOTE: The PROCEDURE GMAP used 0.78 seconds. 250 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 250 + quit; NOTE: The PROCEDURE CATALOG used 0.35 seconds. NOTE: CALL EXECUTE generated line. 251 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela trifasciata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 87 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 659 observations and 4 variables. NOTE: The DATA statement used 0.51 seconds. 251 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 97 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 251 + Filename Gsasfile "c: 251 + \ NOTE: CALL EXECUTE generated line. 252 +tigbnext\USA\Maps\84.gif"; 252 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 252 + qu NOTE: CALL EXECUTE generated line. 253 +it; NOTE: The PROCEDURE GMAP used 0.79 seconds. 253 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 253 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 254 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela unipunctata" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 123 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 536 observations and 4 variables. NOTE: The DATA statement used 0.5 seconds. 254 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 133 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 254 + Filename Gsasfile "c: 254 + \ NOTE: CALL EXECUTE generated line. 255 +tigbnext\USA\Maps\85.gif"; 255 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 255 + qu NOTE: CALL EXECUTE generated line. 256 +it; NOTE: The PROCEDURE GMAP used 0.78 seconds. 256 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 256 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 257 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela viridisticta" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 5 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 531 observations and 4 variables. NOTE: The DATA statement used 0.53 seconds. 257 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 15 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 257 + Filename Gsasfile "c 257 + : NOTE: CALL EXECUTE generated line. 258 +\tigbnext\USA\Maps\86.gif"; 258 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 258 + q NOTE: CALL EXECUTE generated line. 259 +uit; NOTE: The PROCEDURE GMAP used 0.76 seconds. 259 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 259 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 260 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela wapleri" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 23 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 508 observations and 4 variables. NOTE: The DATA statement used 0.53 seconds. 260 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 33 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 260 + Filename Gsasfile "c:\tig 260 + b NOTE: CALL EXECUTE generated line. 261 +next\USA\Maps\87.gif"; 261 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 261 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 262 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 262 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 263 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela wickhami" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 4 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 504 observations and 4 variables. NOTE: The DATA statement used 0.56 seconds. 263 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 14 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 263 + Filename Gsasfile "c:\ti 263 + g NOTE: CALL EXECUTE generated line. 264 +bnext\USA\Maps\88.gif"; 264 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 264 + quit; NOTE: CALL EXECUTE generated line. 265 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 266 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Cicindela willistoni" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 22 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 482 observations and 4 variables. NOTE: The DATA statement used 0.51 seconds. 266 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 32 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 266 + Filename Gsasfile "c:\ 266 + t NOTE: CALL EXECUTE generated line. 267 +igbnext\USA\Maps\89.gif"; 267 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 267 + qui NOTE: CALL EXECUTE generated line. 268 +t; NOTE: The PROCEDURE GMAP used 0.73 seconds. 268 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 268 + quit; NOTE: The PROCEDURE CATALOG used 0.32 seconds. NOTE: CALL EXECUTE generated line. 269 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Omus audouini" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 30 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 452 observations and 4 variables. NOTE: The DATA statement used 0.53 seconds. 269 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 40 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 269 + Filename Gsasfile "c:\tigbnex 269 + t NOTE: CALL EXECUTE generated line. 270 +\USA\Maps\90.gif"; 270 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 270 + quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: CALL EXECUTE generated line. 270 + P 271 +roc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 271 + quit; NOTE: The PROCEDURE CATALOG used 0.32 seconds. NOTE: CALL EXECUTE generated line. 272 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Omus californicus" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 22 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 430 observations and 4 variables. NOTE: The DATA statement used 0.53 seconds. 272 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 32 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 272 + Filename Gsasfile "c:\tig 272 + b NOTE: CALL EXECUTE generated line. 273 +next\USA\Maps\91.gif"; 273 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 273 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 274 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 274 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 275 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Omus cazieri" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 1 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 429 observations and 4 variables. NOTE: The DATA statement used 0.53 seconds. 275 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 11 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 275 + Filename Gsasfile "c:\tigbnext 275 + \ NOTE: CALL EXECUTE generated line. 276 +USA\Maps\92.gif"; 276 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 276 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 276 + Pr 277 +oc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 277 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 278 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Omus dejeanii" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 34 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 395 observations and 4 variables. NOTE: The DATA statement used 0.53 seconds. 278 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 44 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.17 seconds. 278 + Filename Gsasfile "c:\tigbnex 278 + t NOTE: CALL EXECUTE generated line. 279 +\USA\Maps\93.gif"; 279 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 279 + quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: CALL EXECUTE generated line. 279 + P 280 +roc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 280 + quit; NOTE: The PROCEDURE CATALOG used 0.28 seconds. NOTE: CALL EXECUTE generated line. 281 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Omus submetallicus" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 1 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 394 observations and 4 variables. NOTE: The DATA statement used 0.59 seconds. 281 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 11 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 281 + Filename Gsasfile "c:\ti 281 + g NOTE: CALL EXECUTE generated line. 282 +bnext\USA\Maps\94.gif"; 282 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 282 + quit; NOTE: CALL EXECUTE generated line. 283 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.68 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 284 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Tetracha affinis" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 2 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 392 observations and 4 variables. NOTE: The DATA statement used 0.53 seconds. 284 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 12 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.14 seconds. 284 + Filename Gsasfile "c:\tigb 284 + n NOTE: CALL EXECUTE generated line. 285 +ext\USA\Maps\95.gif"; 285 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 285 + quit; NOTE: The PROCEDURE GMAP used 0.75 seconds. NOTE: CALL EXECUTE generated line. 286 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 286 + quit; NOTE: The PROCEDURE CATALOG used 0.31 seconds. NOTE: CALL EXECUTE generated line. 287 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Tetracha carolina" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 175 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 217 observations and 4 variables. NOTE: The DATA statement used 0.51 seconds. 287 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 185 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 287 + Filename Gsasfile "c:\tig 287 + b NOTE: CALL EXECUTE generated line. 288 +next\USA\Maps\96.gif"; 288 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 288 + quit; NOTE: The PROCEDURE GMAP used 0.78 seconds. NOTE: CALL EXECUTE generated line. 289 + Proc Catalog Cat=Work.GSeg Kill; run; NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. 289 + quit; NOTE: The PROCEDURE CATALOG used 0.29 seconds. NOTE: CALL EXECUTE generated line. 290 +Data UsaBflys(Keep=State County Response) Bflys2(Keep=Label State County Response); Set Bflys2; If Label NE "Tetracha virginica" Then Output Bflys2; Else Output USABFLYS; NOTE: The data set WORK.USABFLYS has 217 observations and 3 variables. NOTE: The data set WORK.BFLYS2 has 0 observations and 4 variables. NOTE: The DATA statement used 0.48 seconds. 290 + Proc Append Base=USABflys Data=NotDone2; Run; NOTE: Appending WORK.NOTDONE2 to WORK.USABFLYS. NOTE: 10 observations added. NOTE: The data set WORK.USABFLYS has 227 observations and 3 variables. NOTE: The PROCEDURE APPEND used 0.15 seconds. 290 + Filename Gsasfile "c:\ti 290 + g NOTE: CALL EXECUTE generated line. 291 +bnext\USA\Maps\97.gif"; 291 + Proc Gmap Map=MapData Data=UsaBflys All; Choro Response / Discrete nolegend Coutline=LtGray Cempty=LtGray Xsize=99 Pct Ysize=99 Pct Midpoints=2 1 9 anno=anno; Id State County; run; NOTE: Foreground color WHITE same as background. Part of your graph may not be visible. 291 + quit; NOTE: CALL EXECUTE generated line. 292 + Proc Catalog Cat=Work.GSeg Kill; run; quit; NOTE: The PROCEDURE GMAP used 0.76 seconds. NOTE: Deleting object GMAP.GRSEG in catalog WORK.GSEG. NOTE: The PROCEDURE CATALOG used 0.32 seconds. NOTE: 7624 observations with duplicate key values were deleted. NOTE: The data set WORK.HTM has 97 observations and 36 variables. NOTE: The PROCEDURE SORT used 0.23 seconds. NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 2083:186 2083:231 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\1.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\4.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\5.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\7.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\9.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\10.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\11.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\12.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\13.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\14.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\15.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\16.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\18.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\21.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\22.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\24.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\25.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\31.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\32.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\35.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\38.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\39.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\40.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\41.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\45.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\50.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\53.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\56.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\60.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\61.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\63.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\64.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\65.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\66.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\67.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\68.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\69.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\71.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\76.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\78.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\79.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\80.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\82.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\84.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\85.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\86.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\88.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\94.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\95.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\96.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\98.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\99.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\100.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\101.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\102.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\103.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\105.htm, RECFM=V,LRECL=256 NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 113. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 139. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 136. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 115. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 114. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 138. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 114. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 116. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 112. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 118. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 114. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 112. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 115. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 138. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 113. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 111. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 136. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 111. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 111. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 116. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 115. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 128. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 136. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 112. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 136. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 113. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 113. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 113. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 112. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 114. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 114. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 116. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 113. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 138. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 112. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 111. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 19 records were written to the file OUT. The minimum record length was 0. The maximum record length was 114. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 116. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 135. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 132. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 129. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 136. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 134. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 117. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 113. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 133. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 108. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 112. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 107. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 108. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 113. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 111. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 130. NOTE: 21 records were written to the file OUT. The minimum record length was 0. The maximum record length was 131. NOTE: The DATA statement used 2.84 seconds. NOTE: CALL EXECUTE generated line. 1 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\2.htm" lrecl=2048; 1 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 2 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\2.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_cylind.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 464. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 464. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 3 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_picolo.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\4.htm" lrecl=2048; 3 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 4 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\4.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\a_picolo.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 397. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 397. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 5 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\6.htm" lrecl=2048; 5 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 6 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\6.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_abdomi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 7 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\8.htm" lrecl=2048; 7 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 8 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\8.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_ancoci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 445. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 445. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 9 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_belfra.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\10.htm" lrecl=2048; 9 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 10 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\10.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_belfra.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 173. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 173. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 11 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_bellis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\11.htm" lrecl=2048; 11 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 12 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\11.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_bellis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 482. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 482. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 13 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_blanda.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\12.htm" lrecl=2048; 13 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 14 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\12.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_blanda.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 426. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 426. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 15 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_celeri.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\15.htm" lrecl=2048; 15 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 16 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\15.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_celeri.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 303. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 303. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 17 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\17.htm" lrecl=2048; 17 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 18 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\17.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_circum.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 347. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 347. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 19 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\19.htm" lrecl=2048; 19 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 20 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\19.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cupras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 370. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 370. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 21 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\20.htm" lrecl=2048; 21 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 22 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\20.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_cursit.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 324. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 324. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 23 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_decemn.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\22.htm" lrecl=2048; 23 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 24 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\22.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_decemn.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 25 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_denver.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\24.htm" lrecl=2048; 25 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 26 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\24.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_denver.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 245. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 245. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 27 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\26.htm" lrecl=2048; 27 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 28 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\26.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_dorsal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 454. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 454. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 29 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\27.htm" lrecl=2048; 29 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 30 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\27.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_duodec.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 399. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 399. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 31 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\29.htm" lrecl=2048; 31 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 32 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\29.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_formos.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 315. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 315. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 33 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\30.htm" lrecl=2048; 33 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 34 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\30.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_fulgid.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 293. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 293. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 35 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\33.htm" lrecl=2048; 35 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 36 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\33.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_gratio.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 340. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 340. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 37 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\34.htm" lrecl=2048; 37 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 38 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\34.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_haemor.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 223. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 223. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 39 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\37.htm" lrecl=2048; 39 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 40 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\37.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtic.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 321. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 321. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 41 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\38.htm" lrecl=2048; 41 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 42 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\38.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_hirtil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 300. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 300. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 43 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\42.htm" lrecl=2048; 43 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 44 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\42.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lengi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 291. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 291. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 45 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\43.htm" lrecl=2048; 45 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 46 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\43.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_lepida.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 540. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 540. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 47 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\44.htm" lrecl=2048; 47 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 48 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\44.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbal.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 436. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 436. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 49 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\45.htm" lrecl=2048; 49 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 50 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\45.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_limbat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 227. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 227. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 51 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\46.htm" lrecl=2048; 51 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 52 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\46.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_longil.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 308. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 308. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 53 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\47.htm" lrecl=2048; 53 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; Ru NOTE: CALL EXECUTE generated line. 54 +n; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\47.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_macra.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 272. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 272. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 55 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\48.htm" lrecl=2048; 55 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 56 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\48.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 505. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 505. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 57 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\49.htm" lrecl=2048; 57 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 58 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\49.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\marginip.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 569. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 569. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 59 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\51.htm" lrecl=2048; 59 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 60 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\51.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nebras.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 275. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 275. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 61 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\52.htm" lrecl=2048; 61 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 62 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\52.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nevadi.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 392. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 392. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 63 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigrio.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\53.htm" lrecl=2048; 63 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 64 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\53.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigrio.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 243. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 243. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 65 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\54.htm" lrecl=2048; 65 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 66 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\54.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_nigroc.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 210. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 210. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 67 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\55.htm" lrecl=2048; 67 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 68 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\55.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_obsole.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 348. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 348. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 69 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\59.htm" lrecl=2048; 69 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 70 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\59.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_oregon.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 237. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 237. NOTE: The DATA statement used 0.06 seconds. NOTE: CALL EXECUTE generated line. 71 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\62.htm" lrecl=2048; 71 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 72 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\62.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_patrue.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 380. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 380. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 73 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_politu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\66.htm" lrecl=2048; 73 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 74 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\66.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_politu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 409. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 409. NOTE: The DATA statement used 0.14 seconds. NOTE: CALL EXECUTE generated line. 75 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_pulchr.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\69.htm" lrecl=2048; 75 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 76 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\69.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_pulchr.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 431. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 431. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 77 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\70.htm" lrecl=2048; 77 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 78 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\70.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_punctu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 625. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 625. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 79 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purita.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\71.htm" lrecl=2048; 79 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 80 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\71.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purita.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 408. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 408. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 81 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\72.htm" lrecl=2048; 81 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 82 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\72.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_purpur.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 475. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 475. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 83 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\73.htm" lrecl=2048; 83 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 84 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\73.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_repand.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 417. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 417. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 85 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\74.htm" lrecl=2048; 85 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 86 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\74.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_rufive.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 87 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_schaup.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\76.htm" lrecl=2048; 87 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 88 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\76.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_schaup.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 265. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 265. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 89 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\77.htm" lrecl=2048; 89 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 90 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\77.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_scutel.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 372. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 372. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 91 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sedeci.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\78.htm" lrecl=2048; 91 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 92 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\78.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sedeci.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 329. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 329. NOTE: The DATA statement used 0.12 seconds. NOTE: CALL EXECUTE generated line. 93 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\81.htm" lrecl=2048; 93 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 94 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\81.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sexgut.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 515. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 515. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 95 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sperat.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\82.htm" lrecl=2048; 95 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 96 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\82.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_sperat.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 208. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 208. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 97 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\83.htm" lrecl=2048; 97 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 98 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\83.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_splend.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 368. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 368. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 99 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_striga.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\84.htm" lrecl=2048; 99 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 100 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\84.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_striga.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 245. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 245. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 101 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tenuis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\86.htm" lrecl=2048; 101 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 102 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\86.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tenuis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 227. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 227. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 103 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\87.htm" lrecl=2048; 103 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 104 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\87.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_terric.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 382. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 382. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 105 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_theati.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\88.htm" lrecl=2048; 105 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 106 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\88.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_theati.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 533. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 533. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 107 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\89.htm" lrecl=2048; 107 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 108 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\89.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_togata.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 360. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 360. NOTE: The DATA statement used 0.11 seconds. NOTE: CALL EXECUTE generated line. 109 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\90.htm" lrecl=2048; 109 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 110 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\90.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_tranqu.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 351. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 351. NOTE: The DATA statement used 0.15 seconds. NOTE: CALL EXECUTE generated line. 111 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\91.htm" lrecl=2048; 111 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 112 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\91.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_trifas.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 244. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 244. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 113 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\92.htm" lrecl=2048; 113 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 114 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\92.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_unipun.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 491. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 491. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 115 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_wapler.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\95.htm" lrecl=2048; 115 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 116 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\95.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_wapler.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 430. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 430. NOTE: The DATA statement used 0.07 seconds. NOTE: CALL EXECUTE generated line. 117 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\97.htm" lrecl=2048; 117 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; R NOTE: CALL EXECUTE generated line. 118 +un; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\97.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\c_willis.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 226. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 226. NOTE: The DATA statement used 0.09 seconds. NOTE: CALL EXECUTE generated line. 119 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\104.htm" lrecl=2048; 119 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; NOTE: CALL EXECUTE generated line. 120 +Run; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\104.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_caroli.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 699. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 699. NOTE: The DATA statement used 0.1 seconds. NOTE: CALL EXECUTE generated line. 121 +FileName Indata "m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt" lrecl=2048; FileName Outdata "c:\tigbnext\usa\105.htm" lrecl=2048; 121 + Data _Null_; File Outdata Notitles Noprint Mod; Infile Indata FirstObs=2; Input; Put _Infile_; NOTE: CALL EXECUTE generated line. 122 +Run; NOTE: The file OUTDATA is: FILENAME=c:\tigbnext\usa\105.htm, RECFM=V,LRECL=2048 NOTE: The infile INDATA is: FILENAME=m:\wwwbuild\sasprgs\lepids\tigbdata\workdata\specacct\t_virgin.txt, RECFM=V,LRECL=2048 NOTE: 8 records were written to the file OUTDATA. The minimum record length was 0. The maximum record length was 386. NOTE: 8 records were read from the infile INDATA. The minimum record length was 0. The maximum record length was 386. NOTE: The DATA statement used 0.1 seconds. NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 2083:6 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\1.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\2.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\4.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\5.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\6.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\7.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\8.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\9.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\10.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\11.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\12.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\13.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\14.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\15.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\16.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\17.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\18.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\19.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\20.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\21.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\22.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\24.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\25.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\26.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\27.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\29.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\30.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\31.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\32.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\33.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\34.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\35.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\37.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\38.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\39.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\40.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\41.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\42.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\43.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\44.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\45.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\46.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\47.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\48.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\49.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\50.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\51.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\52.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\53.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\54.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\55.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\56.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\59.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\60.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\61.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\62.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\63.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\64.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\65.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\66.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\67.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\68.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\69.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\70.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\71.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\72.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\73.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\74.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\76.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\77.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\78.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\79.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\80.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\81.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\82.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\83.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\84.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\85.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\86.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\87.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\88.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\89.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\90.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\91.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\92.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\94.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\95.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\96.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\97.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\98.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\99.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\100.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\101.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\102.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\103.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\104.htm, RECFM=V,LRECL=256 NOTE: The file OUT is: FILENAME=c:\tigbnext\usa\105.htm, RECFM=V,LRECL=256 NOTE: 0 lines were written to file PRINT. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 17 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: 20 records were written to the file OUT. The minimum record length was 0. The maximum record length was 91. NOTE: The DATA statement used 2.15 seconds. NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 2083:189 2083:227 NOTE: The DATA statement used 0.1 seconds. NOTE: Deleting WORK.NOTDONE (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.04 seconds. NOTE: Deleting WORK.NOTDONE2 (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. NOTE: Deleting WORK.THISFAM (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. NOTE: Deleting WORK.USABFLYS (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. NOTE: Deleting WORK.BFLYS2 (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. NOTE: Deleting WORK.ANNO (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.0 seconds. NOTE: 0 observations with duplicate key values were deleted. NOTE: The data set WORK.HTM has 97 observations and 36 variables. NOTE: The PROCEDURE SORT used 0.1 seconds. NOTE: The file OUT is: FILENAME=c:\tigbnext\USA\toc.htm, RECFM=V,LRECL=256 NOTE: 24 records were written to the file OUT. The minimum record length was 0. The maximum record length was 208. NOTE: The data set WORK.HTM has 97 observations and 46 variables. NOTE: The DATA statement used 0.25 seconds. NOTE: The file OUT is: FILENAME=c:\tigbnext\USA\cicindel.htm, RECFM=V,LRECL=256 NOTE: 121 records were written to the file OUT. The minimum record length was 0. The maximum record length was 151. NOTE: The data set WORK.HTM has 97 observations and 46 variables. NOTE: The DATA statement used 0.26 seconds. NOTE: The file OUT is: FILENAME=c:\tigbnext\USA\cicindel.htm, RECFM=V,LRECL=256 NOTE: 5 records were written to the file OUT. The minimum record length was 4. The maximum record length was 91. NOTE: The DATA statement used 0.07 seconds. NOTE: Deleting WORK.HTM (memtype=DATA). NOTE: The PROCEDURE DELETE used 0.09 seconds. NOTE: Deleting object MAPGIF.DEV in catalog GDEVICE0.DEVICES. NOTE: The PROCEDURE CATALOG used 0.07 seconds. NOTE: Libref GDEVICE0 has been deassigned. 2084 + 2085 +Proc Printto; ** Return SAS Log output to LOG Window **; 2086 + 2087 +Run; *** JOB START TIME: 04OCT04:15:03:21 *** *** JOB END TIME: 04OCT04:15:20:25 *** *** ELAPSED TIME: 0 hours 17 minutes ***