[Solved] Extract information according to values ​​defined


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting [Solved] Extract information according to values ​​defined
# 1  
Old 03-05-2014
[Solved] Extract information according to values ​​defined

Gents,

Here again,, I have a problem to get a extract of some values.

Every 2 rows I got a new number ( columns 12-25 ), I mean the values are repeated every 2 rows can be 3 times or 4 sometimes,, to identify that there is duplicate values a index value are write in colunm 26 ( increase 1,2, 3 ..... ).

I will call.
ID ( columns 12-25)
INDEX ( columna 26)
STATUS ( cloumnas 91-92)

File input ( attached file ).

What I looking for, is to verify that the last repeated ID dont contens STATUS equal to 14 or 98, and if this is the case I need to get the following report.
Code:
31157145 index 3 has 2 times status 14     
28037145 index 2 has 2 times status 14     
31177140 index 1 has 1 time status 14
31157140 index 2 has 3 times status 98

This is very complicate for me,, So, so I am writing to see if there is the possibility to help me.

I appreciate your help.Smilie
# 2  
Old 03-05-2014
As has been mentioned in other threads you have started, we are here to help you learn how to use Linux and UNIX utilities to process data. The volunteers working here want to help you learn how to do things for yourself; not act as your unpaid programming staff.

Please show us what you have tried. If you haven't tried anything yet, look at the responses we have given you to the other 27 assignments you have asked us to complete for you and try to piece something together on your own. If you can't get it to work, show us what you've tried, the output you're getting, and what parts of your code you think are keeping you from getting the results you want.
# 3  
Old 03-06-2014
I'm sorry to take your time with my questions. Unfortunately I am not an expert with awk but I'm slowly learning.

I am very grateful for the help that you and others profecionales working in this forum.

I learned a lot with the answers that have done me to questions. I have problems to understand how works the arrays.

Here is the script that I'm doing. At the end of this scrip that you can find the operation to capture status with the lines 14 and 98 but not especificimente as requested previpusly.

thanks for your help
Code:
#!/bin/csh
#           C-shell script file.                                                


set filename = `echo $1` 

awk '{if(/^A/)print $0}' $1 | awk '{\
         line = substr($0,1,128);\
     ln =substr($2,1,5);\
     vp =substr($3,1,5);\
     ind =substr($3,8,1);\
         printf("%-128s %5d%5d%1d\n", line,ln,vp,ind)}' > eff

#------------------------------------------------------------------------------------------------
# Compute the swath number ----------------------------------------------------------------------
#------------------------------------------------------------------------------------------------
awk '{\
     line = substr($0,1,141);\
     sw = (int((substr($2,1,5)-'$CSWN')/12)) ;\
     printf ("%-142s %3d\n",line,sw)\
     }' eff > eff1

set first_sw = `awk '{sw = substr($0,144,4) ; printf("%4s\n", sw)}' eff1 | sort -nru | head -1`

# Replace second swath - low side - swath number for high side

awk '{\
     sw  = substr($0,144,4) ;\
     dif = '$first_sw' - sw;\
     if ( dif < 17) {\
        line = substr($0,1,140);\
        sw   = sw - 18 ;\
        printf ("%-142s %3d\n",line,sw)\
        } else {\
               print $0\
               }\
      }' eff1 > eff2


#------------------------------------------------------------------------------------------------
# sort vps by line and vp & index ---------------------------------------------------------------
#------------------------------------------------------------------------------------------------

cat eff2 | awk '{\
     lvp =substr($0,130,11);\
     ln =substr($2,1,7);\
     vp =substr($3,1,7);\
     ind =substr($3,8,1);\
     sw =substr($0,144,4);\
     x =substr($0,57,8);\
     y =substr($0,66,9);\
     tm =substr($0,119,8);\
     st =substr($0,91,2);\
         printf("%11d %5.1f %5.1f%1d %8.1f %9.1f %2d %8d %4d %5d%5d   \n", lvp,ln,vp,ind,x,y,st,tm,sw,ln,vp)}' | sort -nk1 > eff3

#------------------------------------------------------------------------------------------------
# To get XY average for vp   --------------------------------------------------------------------
#------------------------------------------------------------------------------------------------
#awk     '                       {A = substr ($0,119,8); B = substr ($0, 57, 8); C = substr ($0, 66, 9)}\
#         A != OA && NR > 1      {printf "%s%8.1f %9.1f%s\n", substr(D,1,56), SUM1/CNT, SUM2/CNT, substr(D,75); CNT=0; SUM1=SUM2=""}\
#         END                    {printf "%s%8.1f %9.1f%s\n", substr(D,1,56), SUM1/CNT, SUM2/CNT, substr(D,75); CNT=0; SUM1=SUM2=""}\
#                                {OA = A; D=$0; SUM1+=B; SUM2+=C; CNT++}\
#        ' eff 

awk     '                       {A = substr ($0,52,8); B = substr ($0, 30, 8); C = substr ($0, 39, 9)}\
         A != OA && NR > 1      {printf "%s%8.1f %9.1f%s\n", substr(D,1,29), SUM1/CNT, SUM2/CNT, substr(D,48); CNT=0; SUM1=SUM2=""}\
         END                    {printf "%s%8.1f %9.1f%s\n", substr(D,1,29), SUM1/CNT, SUM2/CNT, substr(D,48); CNT=0; SUM1=SUM2=""}\
                                {OA = A; D=$0; SUM1+=B; SUM2+=C; CNT++}\
        ' eff3 > eff4 


cat eff4 | sort -nk9 | awk '{if (x[$9]) {x_count[$9]++; print $0; if ( x_count[$9] == 1 ) {print x[$9]}} x[$9] =$0}' | sort -nk1 > eff5

cat eff5 | awk '{a = substr($0,13,16); print a}' > eff6

##o get all vps reshoted
grep -hFf eff6 eff2 | sort -k1.130,140bn > eff7

grep -vFf eff6 eff2 | sort -k1.130,140bn > eff8

#get bad VPS with wrong status not reshoted
cat eff8 | awk '{if(substr($0,91,2) == 14) print $0; else if(substr($0,91,2) == 98) print $0}'

#rm -f *tmp* *eff*

# 4  
Old 03-06-2014
Your script looks like at least two different people have been working on it.

Your specification does not say what should happen if both bad STATUS codes are found for a single ID and INDEX. The following script will print lines for both with the output order matching the order in which each bad error code was first seen for that ID and INDEX:
Code:
awk '
# This awk script will accumulate STATUS 14 and 98 counts for each ID and
# INDEX given on ocntiguous lines in the input file.  If both STATUS==14
# and STATUS==98 records are found, the ouput order will match the order
# of the 1st appearance of each STATUS value found.  (This script could be
# greatly simplified if the output order could always be the STATUS==14
# count first and the STATUS==98 count second.)

# Function to print STATUS==14 and ==98 data for previous ID and INDEX...
# We have a function here rather than inline code because we need to do
# this when the ID or INDEX changes and when we hit end-of-file.
function pr() {
        # Note that if we are processing the 1st line in the file or if the
        # previous ID and INDEX had no bad STATUS lines, cn will be 0 and the
        # code in the loop will not be executed at all.
        for(i = 1; i <= cn; i++) {
                printf("%s index %d has %d time%s status %d\n",
                        ID, INDEX, c[cc[i]], c[cc[i]] > 1 ? "s" : "",
                        cc[i])
                # We delete individual elements of the c[] because the standard
                # do not currently require that the command "delete array_name"
                # can be used to delete all element of an arry.  We need to
                # remove the entry rather than just set c[x] to zero so we will
                # not print lines showing lines with 0 occurrences of the bad
                # STATUS.
                delete c[cc[i]]
        }
        # Clear the number of types of bad STATUS seen for the next ID + INDEX.
        cn = 0
}
{       # Get ID and INDEX for this line...
        nID = substr($0, 12, 4) substr($0, 20, 4)
        nINDEX = substr($0, 26, 1)
        # If the ID and INDEX on this line do not match the previous line...
        if(nID != ID || nINDEX != INDEX) {
                # Print the results for the previous ID + INDEX
                pr()
                # Set the current ID and INDEX to compare against later lines.
                ID = nID
                INDEX = nINDEX
        }
        # Get the STATUS from this line...
        STATUS = substr($0, 91, 2)
        # If this line has one of the bad STATUS values...
        if(STATUS == 14 || STATUS == 98) {
                # If we have not seen this bad STATUS value for this ID +
                # INDEX...
                if(!(STATUS in c)) {
                        # Increment the number of bad STATUS codes seen (cn)
                        # and set cc[cn] to the bad STATUS code seen on this
                        # line.
                        cc[++cn] = STATUS
                }
                # Increment the number of times we have seen this bad STATUS
                # code for this ID + INDEX.
                c[STATUS]++
        }
}
END {   # Print the results for the last ID + INDEX in the input.
        pr()
}' eff8

I hope the comments will enable you to understand what it is doing. If not; ask questions. When using your sample input (with the following lines added at the end to test what happens when both bad STATUS codes codes are given for an ID and INDEX):
Code:
Added G1   1234.0  5678.01                                                                14
Added G1   1234.0  5678.01                                                                98
Added G1   1234.0  5678.01                                                                14
Added G2   1111.0  2222.01                                                                98
Added G2   1111.0  2222.01                                                                14
Added G2   1111.0  2222.01                                                                98

the output produced is:
Code:
31157145 index 3 has 2 times status 14
28037145 index 2 has 2 times status 14
31177140 index 1 has 1 time status 14
31157140 index 2 has 3 times status 98
12345678 index 1 has 2 times status 14
12345678 index 1 has 1 time status 98
11112222 index 1 has 2 times status 98
11112222 index 1 has 1 time status 14

These 2 Users Gave Thanks to Don Cragun For This Post:
# 5  
Old 03-08-2014
Don Cragun
Thanks for your support and all the explanations in the script.
The script works perfectly .. Again thank you very much.

---------- Post updated 03-08-14 at 04:58 AM ---------- Previous update was 03-07-14 at 08:01 AM ----------

Don Cragun

Please can you help me again.

With the script that you made for me I have extracted all the information for the each ID from the complete file. Kindly, now I will like to make a comparation to be sure that the last INDEX has status equal to 1, if this not the case then I should get the list only of the IDs with wrong status...

Wrong status are 14 and 98.

Please try to help me and sorry again to bother u.

thanks for your support.

eff10 input file

Code:
A         24585.0 20761.012 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   129 10298                   1T N/A 66155951 0 24585207611
A         24585.0 20761.012 5  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   129 10298                   1T N/A 66155951 0 24585207611
A         24585.0 20761.022 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   129 10298                   1T N/A 66160206 0 24585207612
A         24585.0 20761.022 5  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   129 10298                   1T N/A 66160206 0 24585207612
A         24585.0 20761.032 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   129 10298                   1T N/A 66160702 0 24585207613
A         24585.0 20761.032 5  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   129 10298                   1T N/A 66160702 0 24585207613
A         24585.0 20761.042 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   129 10298                   1T N/A 66160811 0 24585207614
A         24585.0 20761.042 5  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   129 10298                   1T N/A 66160811 0 24585207614
A         24585.0 20761.052 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   129 10298                   1T N/A 66161527 0 24585207615
A         24585.0 20761.052 5  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   129 10298                   1T N/A 66161527 0 24585207615
A         24585.0 20761.062 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   129 10298                   1T N/A 66161620 0 24585207616
A         24585.0 20761.062 5  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   129 10298                   1T N/A 66161620 0 24585207616
A         24585.0 20761.072 3 75   2   4183869 79 54 33 859173.1 1908788.7 -22.5   129 102 1              P VE 1T N/A 66161813 0 24585207617
A         24585.0 20761.072 5 75   3   6212968 80 26 23 859153.2 1908782.5 -23.5   129 102 1              P    1T N/A 66161813 0 24585207617
A         24585.0 20777.012 3 75   1   4122572 80 60 34 859503.1 1908975.2 -20.0   153 102 1                   1T N/A 66174736 0 24585207771
A         24585.0 20777.012 5 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   153 10214                   1T N/A 66174736 0 24585207771
A         24585.0 20777.022 3 75   1   4122672 80 61 33 859503.0 1908975.2 -20.2   153 102 1                   1T N/A 66174820 0 24585207772
A         24585.0 20777.022 5 75   1  -4142670 85 34 28 859514.5 1908982.9 -22.4   153 102 1              P    1T N/A 66174820 0 24585207772
A         24585.0 20793.012 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   179 10298                   1T N/A 66190726 0 24585207931
A         24585.0 20793.012 5  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   179 10298                   1T N/A 66190726 0 24585207931
A         24585.0 20793.022 3 75   1  -3152671 79 60 30 859854.4 1909190.1 -21.5   179 102 1              P    1T N/A 66191117 0 24585207932
A         24585.0 20793.022 5 75   2   5193670 78 26 23 859863.0 1909194.6 -20.8   179 102 1              P    1T N/A 66191117 0 24585207932
A         24585.0 20825.012 3 75   2   4267269 77 52 23 860541.3 1909582.0 -22.2   226 102 1              P VE 1T N/A 66204614 0 24585208251
A         24585.0 20825.012 5 75   1  -4122870 79 38 21 860552.7 1909588.3 -24.3   226 102 1                   1T N/A 66204614 0 24585208251
A         24585.0 20825.022 3 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   226 10214                   1T N/A 66204632 0 24585208252
A         24585.0 20825.022 5 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   226 10214                   1T N/A 66204632 0 24585208252
A         24587.0 20673.01311 75   2  -5182671 79 36 26 857243.7 1907726.5 -28.3     3 103 1              P    1T N/A 66024606 0 24587206731
A         24587.0 20673.013 8 75   1  -3132571 76 53 25 857235.5 1907712.9 -27.8     3 103 1                   1T N/A 66024606 0 24587206731
A         24587.0 20673.02311 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0     3 10314                   1T N/A 66024624 0 24587206732
A         24587.0 20673.023 8 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0     3 10314                   1T N/A 66024624 0 24587206732
A         24587.0 20675.01311 75   1  -3122671 79 48 27 857265.3 1907757.3 -28.3     5 103 1                   1T N/A 66024442 0 24587206751
A         24587.0 20675.013 8 75   1  -4112571 80 47 27 857272.8 1907744.2 -27.4     5 103 1                   1T N/A 66024442 0 24587206751
A         24587.0 20675.02311 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0     5 10314                   1T N/A 66024500 0 24587206752
A         24587.0 20675.023 8 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0     5 10314                   1T N/A 66024500 0 24587206752
A         24589.0 20833.012 3 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   247 10214                   1T N/A 66214549 0 24589208331
A         24589.0 20833.012 5 75   2   5224468 77 22 18 860668.0 1909777.9 -23.6   247 102 1              P    1T N/A 66214549 0 24589208331
A         24589.0 20833.022 3 75   2   6225270 81 48 26 860676.2 1909764.2 -21.6   247 102 1              P    1T N/A 66214638 0 24589208332
A         24589.0 20833.022 5 75   2  -4257867 76 26 19 860666.4 1909779.7 -21.9   247 102 1              P    1T N/A 66214638 0 24589208332
A         24591.0 20769.012 3 75   1  -3142771 76 64 27 859255.7 1909015.6 -25.7   144 102 1                   1T N/A 66170846 0 24591207691
A         24591.0 20769.012 5  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   144 10298                   1T N/A 66170846 0 24591207691
A         24591.0 20769.022 3 75   1  -3152971 76 65 28 859255.7 1909015.5 -25.8   144 102 1                   1T N/A 66171433 0 24591207692
A         24591.0 20769.022 5 75   1  -3112770 77 39 26 859263.9 1909002.9 -23.5   144 102 1                   1T N/A 66171433 0 24591207692
A         24593.0 20745.01211 75   1  -4132771 79 47 25 858722.9 1908740.2 -24.2   109 102 1                   1T N/A 66102621 1 24593207451
A         24593.0 20745.012 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   109 10298                   1T N/A 66102621 0 24593207451
A         24593.0 20849.013 4 75   1  -3165170 79 29 23 860964.5 1910059.7 -17.1   275 103 1              P    1T N/A 66211038 0 24593208491
A         24593.0 20849.013 8 75   1   4132571 78 46 21 860971.8 1910046.7 -16.9   275 103 1                   1T N/A 66211038 0 24593208491
A         24593.0 20849.023 4 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   275 10314                   1T N/A 66211124 0 24593208492
A         24593.0 20849.023 8 75   2   5163670 81 37 20 860995.0 1910003.0 -21.1   275 103 1                   1T N/A 66211124 0 24593208492
A         24595.0 20745.01211  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   110 10298                   1T N/A 66103056 0 24595207451
A         24595.0 20745.012 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   110 10298                   1T N/A 66103056 0 24595207451
A         24595.0 20745.02211  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   110 10298                   1T N/A 66103232 0 24595207452
A         24595.0 20745.022 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   110 10298                   1T N/A 66103232 0 24595207452
A         24595.0 20745.03211 75   1  -4122672 83 44 31 858686.2 1908802.7 -23.5   110 102 1                   1T N/A 66115447 0 24595207453
A         24595.0 20745.032 8 75   2  -4164571 81 40 21 858695.7 1908787.2 -24.7   110 102 1                   1T N/A 66115447 0 24595207453
A         24597.0 20785.012 3 75   1  -3122671 78 64 32 859528.1 1909347.9 -24.0   143 102 1                   1T N/A 66185156 0 24597207851
A         24597.0 20785.012 5 75   1  -3132771 78 34 26 859535.6 1909336.7 -24.3   143 102 1                   1T N/A 66185156 0 24597207851
A         24597.0 20785.022 3 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   143 10214                   1T N/A 66185214 0 24597207852
A         24597.0 20785.022 5 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   143 10214                   1T N/A 66185214 0 24597207852
A         24597.0 20857.013 4 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   251 10314                   1T N/A 66213130 0 24597208571
A         24597.0 20857.013 8 75   2   3278568 78 42 17 861088.8 1910245.8 -18.8   251 103 1             FP    1T N/A 66213130 0 24597208571
A         24597.0 20857.023 4 75   1  -3172771 77 29 24 861097.1 1910233.5 -19.7   251 103 1                   1T N/A 66213234 0 24597208572
A         24597.0 20857.023 8 75   2   3288468 78 41 17 861088.9 1910245.7 -18.7   251 103 1             FP    1T N/A 66213234 0 24597208572
A         24599.0 20747.01211  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    88 10298                   1T N/A 66104818 0 24599207471
A         24599.0 20747.012 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    88 10298                   1T N/A 66104818 0 24599207471
A         24599.0 20747.02211 75   2  -6162571 80 37 25 858679.0 1908918.0 -23.7    88 102 1                   1T N/A 66112915 0 24599207472
A         24599.0 20747.022 8 75   1  -3122571 78 54 25 858688.8 1908905.7 -25.4    88 102 1                   1T N/A 66112915 0 24599207472
A         24601.0 20747.01211  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    89 10298                   1T N/A 66105357 0 24601207471
A         24601.0 20747.012 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    89 10298                   1T N/A 66105357 0 24601207471
A         24601.0 20747.02211 75   2   4193071 82 43 26 858654.4 1908958.6 -25.8    89 102 1                   1T N/A 66112759 0 24601207472
A         24601.0 20747.022 8 75   2  -4223669 79 34 23 858662.8 1908943.5 -25.6    89 102 1              P V  1T N/A 66112759 0 24601207472
A         24601.0 20801.014 4  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   164 10498                   1T N/A 66184443 0 24601208011
A         24601.0 20801.014 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   164 10498                   1T N/A 66184443 0 24601208011
A         24601.0 20801.024 4  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   164 10498                   1T N/A 66185049 0 24601208012
A         24601.0 20801.024 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   164 10498                   1T N/A 66185049 0 24601208012
A         24601.0 20801.032 3 75   1  -3122772 77 70 31 859825.6 1909636.1 -22.0   164 102 1                   1T N/A 66193856 0 24601208013
A         24601.0 20801.032 5 75   2   4132770 76 32 21 859831.5 1909617.5 -22.9   164 102 1              P    1T N/A 66193856 0 24601208013
A         24603.0 20747.01211  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    90 10298                   1T N/A 66105911 0 24603207471
A         24603.0 20747.012 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    90 10298                   1T N/A 66105911 0 24603207471
A         24603.0 20747.02211 75   2  -4204068 76 39 26 858641.0 1908999.7 -24.8    90 102 1              P VE 1T N/A 66111949 0 24603207472
A         24603.0 20747.022 8 75   2  -4193269 81 37 24 858626.7 1908989.6 -25.8    90 102 1              P    1T N/A 66111949 0 24603207472
A         24605.0 20681.012 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0     3 10298                   1T N/A 66063437 0 24605206811
A         24605.0 20681.012 4  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0     3 10298                   1T N/A 66063437 0 24605206811
A         24605.0 20681.022 3 75   1  -3192772 78 61 31 857187.3 1908214.6 -28.0     3 102 1                   1T N/A 66063728 0 24605206812
A         24605.0 20681.022 4 75   1   4163471 78 28 23 857175.4 1908220.0 -31.8     3 102 1              P    1T N/A 66063728 0 24605206812
A         24607.0 20697.013 5  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    20 10398                   1T N/A 66012042 0 24607206971
A         24607.0 20697.013 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    20 10398                   1T N/A 66012042 0 24607206971
A         24607.0 20697.023 5 75   2  -4183370 76 31 22 857493.0 1908454.9 -28.0    20 103 1                   1T N/A 66012313 0 24607206972
A         24607.0 20697.023 8 75   1   3152570 87 40 23 857503.5 1908460.3 -27.3    20 103 1              P    1T N/A 66012313 0 24607206972
A         24607.0 20729.012 4  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    62 10299                   1T N/A 66091120 0 24607207291
A         24607.0 20729.012 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    62 10299                   1T N/A 66091120 0 24607207291
A         24607.0 20729.022 4  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    62 10299                   1T N/A 66091447 0 24607207292
A         24607.0 20729.022 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    62 10299                   1T N/A 66091447 0 24607207292
A         24607.0 20729.03211  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    62 10298                   1T N/A 66093032 0 24607207293
A         24607.0 20729.032 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    62 10298                   1T N/A 66093032 0 24607207293
A         24607.0 20729.04211 75   2  -4163370 81 41 28 858187.7 1908866.1 -21.7    62 102 1              P    1T N/A 66123505 0 24607207294
A         24607.0 20729.042 8 75   1  -3142571 84 46 25 858196.6 1908851.5 -25.7    62 102 1              P    1T N/A 66123505 0 24607207294
A         24609.0 20695.013 5 75   1  -4122771 84 36 30 857431.2 1908488.4 -26.7    87 103 1                   1T N/A 66010951 0 24609206951
A         24609.0 20695.013 8 75   1  -4132571 80 42 30 857430.7 1908473.3 -26.9    87 103 1                   1T N/A 66010951 0 24609206951
A         24609.0 20695.023 5  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    87 10398                   1T N/A 66011607 0 24609206952
A         24609.0 20695.023 8  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    87 10398                   1T N/A 66011607 0 24609206952
A         24609.0 20695.033 5 75   2  -4152670 85 21 27 857428.7 1908466.7 -27.9    87 103 1                   1T N/A 66013733 0 24609206953
A         24609.0 20695.033 8 75   1  -4122571 82 41 31 857434.9 1908481.2 -27.1    87 103 1                   1T N/A 66013733 0 24609206953
A         24611.0 20657.01211 75   1  -3132671 77 42 26 856583.8 1908056.2 -29.3    39 102 1                   1T N/A 66044251 0 24611206571
A         24611.0 20657.012 8 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0    39 10214                   1T N/A 66044251 0 24611206571
A         24611.0 20657.02211 75   1  -4142771 78 41 26 856583.9 1908056.2 -29.4    39 102 1                   1T N/A 66044334 0 24611206572
A         24611.0 20657.022 8 75   1  -4142571 78 43 22 856584.8 1908042.4 -28.3    39 102 1                   1T N/A 66044334 0 24611206572
A         24611.0 20713.012 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   111 10298                   1T N/A 66065736 0 24611207131
A         24611.0 20713.012 4  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   111 10298                   1T N/A 66065736 0 24611207131
A         24611.0 20713.022 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   111 10298                   1T N/A 66065946 0 24611207132
A         24611.0 20713.022 4  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   111 10298                   1T N/A 66065946 0 24611207132
A         24611.0 20713.032 3 75   1   5152672 82 55 30 857803.8 1908732.6 -26.0   111 102 1                   1T N/A 66070517 0 24611207133
A         24611.0 20713.032 4 75   1   3122571 82 32 28 857796.8 1908746.5 -25.8   111 102 1                   1T N/A 66070517 0 24611207133
A         24613.0 20655.012 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    34 10299                   1T N/A 66035757 0 24613206551
A         24613.0 20655.012 4  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    34 10299                   1T N/A 66035757 0 24613206551
A         24613.0 20655.022 3 75   1   5142571 82 51 28 856547.7 1908011.0 -28.3    34 102 1                   1T N/A 66035840 0 24613206552
A         24613.0 20655.022 4 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0    34 10214                   1T N/A 66035840 0 24613206552
A         24613.0 20655.03211 75   2   5162671 82 42 24 856524.1 1908073.4 -30.4    34 102 1              P    1T N/A 66044755 0 24613206553
A         24613.0 20655.032 8 75   1  -3143670 75 44 24 856524.0 1908056.9 -28.9    34 102 1                   1T N/A 66044755 0 24613206553
A         24613.0 20655.042 3 75   1  -4172671 78 55 27 856512.8 1908069.1 -29.0    34 102 1                   1T N/A 66051736 0 24613206554
A         24613.0 20655.042 4 75   1  -3142571 77 36 24 856524.3 1908053.4 -31.4    34 102 1                   1T N/A 66051736 0 24613206554
A         24619.0 20881.012 3 75   1  -3153371 76 66 25 861335.2 1911017.9 -28.8   358 102 1                   1T N/A 66223534 0 24619208811
A         24619.0 20881.012 5  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   358 10298                   1T N/A 66223534 0 24619208811
A         24619.0 20881.022 3 75   1  -3163571 75 65 25 861335.0 1911017.6 -28.5   358 102 1                   1T N/A 66223831 0 24619208812
A         24619.0 20881.022 5 75   2   4206569 77 40 18 861346.2 1911024.9 -20.7   358 102 1              P    1T N/A 66223831 0 24619208812
A         24627.0 20609.012 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0     3 10298                   1T N/A 66010323 0 24627206091
A         24627.0 20609.012 4  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0     3 10298                   1T N/A 66010323 0 24627206091
A         24627.0 20609.022 3 75   1  -3102672 76 65 35 855356.7 1907790.4 -30.2     3 102 1                   1T N/A 66010449 0 24627206092
A         24627.0 20609.022 4 75   1  -4102572 77 40 35 855347.2 1907805.6 -29.8     3 102 1                   1T N/A 66010449 0 24627206092
A         24635.0 20611.012 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0     1 10298                   1T N/A 66011822 0 24635206111
A         24635.0 20611.012 4  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0     1 10298                   1T N/A 66011822 0 24635206111
A         24635.0 20611.022 3  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0     1 10298                   1T N/A 66011953 0 24635206112
A         24635.0 20611.022 4  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0     1 10298                   1T N/A 66011953 0 24635206112
A         24635.0 20611.032 3 75   1  -4112672 79 66 38 855285.5 1907976.8 -28.8     1 102 1                   1T N/A 66012335 0 24635206113
A         24635.0 20611.032 4 75   1  -4112672 78 42 36 855275.2 1907990.6 -29.0     1 102 1                   1T N/A 66012335 0 24635206113
A         24651.0 20615.012 3 75   1  -3112672 76 68 34 855173.0 1908373.9 -26.0    10 102 1                   1T N/A 66015227 0 24651206151
A         24651.0 20615.012 4 75   1  -3112571 76 39 28 855163.0 1908391.0 -23.8    10 102 1                   1T N/A 66015227 0 24651206151
A         24651.0 20615.022 3 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0    10 10214                   1T N/A 66015245 0 24651206152
A         24651.0 20615.022 4 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0    10 10214                   1T N/A 66015245 0 24651206152
A         24781.0 21001.01412 75   1  -4122571 87 35 26 861908.2 1916029.7 -10.7   494 104 1                   1T N/A 66212131 0 24781210011
A         24781.0 21001.014 2 75   2  -5112771 77 36 26 861913.0 1916016.9 -12.4   494 104 1                   1T N/A 66212131 0 24781210011
A         24781.0 21001.02412 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   494 10414                   1T N/A 66212241 0 24781210012
A         24781.0 21001.024 2 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   494 10414                   1T N/A 66212241 0 24781210012
A         24799.0 21001.01412 75   1  -4132571 83 33 25 861676.9 1916411.5 -11.0   512 104 1                   1T N/A 66214422 0 24799210011
A         24799.0 21001.014 2 75   1  -5122671 88 30 31 861689.9 1916422.7 -10.3   512 104 1                   1T N/A 66214422 0 24799210011
A         24799.0 21001.02412 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   512 10414                   1T N/A 66214506 0 24799210012
A         24799.0 21001.024 2 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   512 10414                   1T N/A 66214506 0 24799210012
A         24803.0 20697.011 1 75   1  -4214870 79 34 19 855047.8 1912709.4 -29.1    40 101 1              P V  1T N/A 66044816 0 24803206971
A         24803.0 20697.011 6 75   1  -4183771 78 30 24 855047.2 1912691.2 -29.5    40 101 1              P    1T N/A 66044816 0 24803206971
A         24803.0 20697.021 1 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0    40 10114                   1T N/A 66045021 0 24803206972
A         24803.0 20697.021 6 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0    40 10114                   1T N/A 66045021 0 24803206972
A         24803.0 20841.01412 75   1  -4186870 76 36 20 858166.3 1914505.2 -19.5   269 104 1             FP    1T N/A 66063750 0 24803208411
A         24803.0 20841.014 2 75   1  -3153070 75 45 22 858173.1 1914494.0 -20.1   269 104 1                   1T N/A 66063750 0 24803208411
A         24803.0 20841.02412 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   269 10414                   1T N/A 66063833 0 24803208412
A         24803.0 20841.024 2 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   269 10414                   1T N/A 66063833 0 24803208412
A         24805.0 20697.011 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    41 10198                   1T N/A 66044416 0 24805206971
A         24805.0 20697.011 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    41 10198                   1T N/A 66044416 0 24805206971
A         24805.0 20697.021 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    41 10198                   1T N/A 66044443 0 24805206972
A         24805.0 20697.021 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    41 10198                   1T N/A 66044443 0 24805206972
A         24805.0 20697.031 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    41 10198                   1T N/A 66044547 0 24805206973
A         24805.0 20697.031 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    41 10198                   1T N/A 66044547 0 24805206973
A         24805.0 20697.041 1 75   1  -3142671 77 49 24 855036.1 1912736.0 -29.0    41 101 1                   1T N/A 66045056 0 24805206974
A         24805.0 20697.041 6 75   1  -4207070 78 36 19 855037.7 1912750.5 -29.3    41 101 1             FP    1T N/A 66045056 0 24805206974
A         24805.0 20841.01412 75   1  -3112771 78 41 15 858136.3 1914540.7 -19.4   270 104 1                   1T N/A 66063519 1 24805208411
A         24805.0 20841.014 2 75   1  -3122771 75 41 20 858147.6 1914534.0 -20.0   270 104 1                   1T N/A 66063519 1 24805208411
A         24805.0 20841.02412 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   270 10414                   1T N/A 66063537 0 24805208412
A         24805.0 20841.024 2 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   270 10414                   1T N/A 66063537 0 24805208412
A         24809.0 20701.011 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    43 10198                   1T N/A 66043643 0 24809207011
A         24809.0 20701.011 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    43 10198                   1T N/A 66043643 0 24809207011
A         24809.0 20701.021 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    43 10198                   1T N/A 66043821 0 24809207012
A         24809.0 20701.021 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    43 10198                   1T N/A 66043821 0 24809207012
A         24809.0 20701.031 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    43 10198                   1T N/A 66043904 0 24809207013
A         24809.0 20701.031 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    43 10198                   1T N/A 66043904 0 24809207013
A         24809.0 20701.041 1 75   1  -3235270 77 39 20 855056.1 1912883.4 -27.9    43 101 1                   1T N/A 66044009 0 24809207014
A         24809.0 20701.041 6 75   2   5287569 75 36 15 855057.4 1912869.7 -29.7    43 101 1             FP  E 1T N/A 66044009 0 24809207014
A         24809.0 20729.01412  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    90 10498                   1T N/A 66040010 0 24809207291
A         24809.0 20729.014 2  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    90 10498                   1T N/A 66040010 0 24809207291
A         24809.0 20729.02412 75   2   6299366 80 31 15 855669.8 1913235.0 -25.0    90 104 1             FP VE 1T N/A 66040033 0 24809207292
A         24809.0 20729.024 2 75   1   3112771 77 42 26 855684.0 1913242.6 -25.3    90 104 1                   1T N/A 66040033 0 24809207292
A         24811.0 21201.011 1 75   1  -4132770 76 41 22 865867.1 1919172.3   5.7   799 101 1                   1T N/A 66163815 0 24811212011
A         24811.0 21201.011 6 75   1  -4163871 80 32 22 865873.0 1919161.2   4.8   799 101 1              P    1T N/A 66163815 0 24811212011
A         24811.0 21201.021 1 75   2  -3163070 76 37 21 865889.5 1919134.8   5.4   799 101 1              P    1T N/A 66163859 0 24811212012
A         24811.0 21201.021 6 75   1  -3184370 78 33 21 865896.4 1919122.1   5.5   799 101 1              P    1T N/A 66163859 0 24811212012
A         24811.0 21201.031 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   799 10198                   1T N/A 66170004 0 24811212013
A         24811.0 21201.031 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   799 10198                   1T N/A 66170004 0 24811212013
A         24811.0 21201.041 1 75   1  -3142670 78 34 23 865874.0 1919160.9   4.8   799 101 1                   1T N/A 66170551 0 24811212014
A         24811.0 21201.041 6 75   1  -4183870 75 32 22 865867.5 1919173.3   5.6   799 101 1              P    1T N/A 66170551 0 24811212014
A         24813.0 20777.01310  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   135 10398                   1T N/A 66051230 0 24813207771
A         24813.0 20777.013 7  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   135 10398                   1T N/A 66051230 0 24813207771
A         24813.0 20777.02310 75   2  -5142669 75 32 25 856660.6 1913916.2 -22.7   135 103 1                   1T N/A 66051458 0 24813207772
A         24813.0 20777.023 7 75   1   4122571 81 36 29 856654.9 1913928.5 -25.0   135 103 1                V  1T N/A 66051458 0 24813207772
A         24813.0 20825.01310  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   207 10398                   1T N/A 66054756 0 24813208251
A         24813.0 20825.013 7 75   1  -3112671 77 47 24 857703.9 1914509.0 -22.0   207 103 1                   1T N/A 66054756 1 24813208251
A         24813.0 20825.02310 75   1  -5102770 75 41 23 857697.2 1914521.1 -22.6   207 103 1                   1T N/A 66055246 0 24813208252
A         24813.0 20825.023 7 75   1  -3112771 76 47 25 857703.9 1914509.1 -21.9   207 103 1                   1T N/A 66055246 0 24813208252
A         24813.0 20905.01412 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   327 10414                   1T N/A 66071838 0 24813209051
A         24813.0 20905.014 2 75   1  -3143170 74 34 25 859428.1 1915523.8 -19.5   327 104 1                   1T N/A 66071838 0 24813209051
A         24813.0 20905.02412 75   1  -3142671 77 42 17 859433.8 1915511.0 -19.8   327 104 1                   1T N/A 66071921 0 24813209052
A         24813.0 20905.024 2 75   1  -3132670 75 35 24 859427.7 1915524.7 -19.4   327 104 1                   1T N/A 66071921 0 24813209052
A         24813.0 21313.011 1 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   940 10114                   1T N/A 66193540 0 24813213131
A         24813.0 21313.011 6 75   1  -4142571 78 38 19 868255.7 1920625.4  14.1   940 101 1                   1T N/A 66193540 0 24813213131
A         24813.0 21313.021 1 75   1  -3132771 76 44 20 868264.8 1920633.5  14.6   940 101 1              P    1T N/A 66193622 0 24813213132
A         24813.0 21313.021 6 75   1  -3142671 79 41 22 868255.7 1920625.4  14.1   940 101 1                   1T N/A 66193622 0 24813213132
A         24817.0 20937.01412 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   376 10414                   1T N/A 66091632 0 24817209371
A         24817.0 20937.014 2 75   1  -3196469 74 36 21 860069.2 1916010.4 -16.2   376 104 1             F     1T N/A 66091632 0 24817209371
A         24817.0 20937.02412 75   1  -4122771 76 47 22 860076.5 1915998.9 -16.1   376 104 1                   1T N/A 66091751 0 24817209372
A         24817.0 20937.024 2 75   1  -3206869 75 34 21 860069.2 1916010.4 -16.2   376 104 1             FP    1T N/A 66091751 0 24817209372
A         24819.0 20729.01412 75   1  -3112571 79 38 24 855543.9 1913450.4 -27.4    66 104 1                   1T N/A 66032759 1 24819207291
A         24819.0 20729.014 2 75   1  -4153370 86 26 26 855553.3 1913440.4 -23.9    66 104 1                   1T N/A 66032759 1 24819207291
A         24819.0 20729.02412  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    66 10498                   1T N/A 66035348 0 24819207292
A         24819.0 20729.024 2  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0    66 10498                   1T N/A 66035348 0 24819207292
A         24819.0 20729.03412 75   1  -4112671 78 42 22 855544.2 1913450.6 -27.5    66 104 1                   1T N/A 66035736 0 24819207293
A         24819.0 20729.034 2 75   1  -5132670 79 30 27 855550.9 1913438.1 -28.5    66 104 1                   1T N/A 66035736 0 24819207293
A         24819.0 21021.01412  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   498 10498                   1T N/A 66120417 0 24819210211
A         24819.0 21021.014 2 75   1  -4122671 78 39 28 861865.6 1917104.1  -8.8   498 104 1                   1T N/A 66120417 0 24819210211
A         24819.0 21021.02412 75   2  -4122670 79 40 23 861874.2 1917099.4  -8.6   498 104 1              P    1T N/A 66120546 0 24819210212
A         24819.0 21021.024 2 75   1  -4112771 80 40 29 861865.8 1917104.1  -9.0   498 104 1                   1T N/A 66120546 0 24819210212
A         24821.0 21329.011 1 75   1  -4132571 79 38 22 868510.7 1920976.2  17.5   967 101 1                   1T N/A 66202310 0 24821213291
A         24821.0 21329.011 6 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   967 10114                   1T N/A 66202310 0 24821213291
A         24821.0 21329.021 1 75   1  -3122671 76 41 23 868510.8 1920976.6  17.6   967 101 1                   1T N/A 66202351 0 24821213292
A         24821.0 21329.021 6 75   1   5132571 80 39 22 868517.2 1920991.0  15.9   967 101 1                   1T N/A 66202351 0 24821213292
A         24823.0 21333.011 1 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   973 10114                   1T N/A 66202726 0 24823213331
A         24823.0 21333.011 6 75   1  -3152971 78 37 22 868556.0 1921079.2  15.9   973 101 1              P    1T N/A 66202726 0 24823213331
A         24823.0 21333.021 1 75   2   7163270 85 38 22 868569.4 1921074.0  17.8   973 101 1                   1T N/A 66202810 0 24823213332
A         24823.0 21333.021 6 75   1   4162771 78 37 22 868556.0 1921079.1  16.0   973 101 1                   1T N/A 66202810 0 24823213332
A         24829.0 20729.01412 75   2  -4264568 76 24 21 855417.0 1913671.2 -26.9   142 104 1              P VE 1T N/A 66031708 1 24829207291
A         24829.0 20729.014 2 75   2  -5295866 73 22 22 855423.4 1913659.8 -27.0   142 104 1              P V  1T N/A 66031708 1 24829207291
A         24829.0 20729.02412 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   142 10414                   1T N/A 66031726 0 24829207292
A         24829.0 20729.024 2 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   142 10414                   1T N/A 66031726 0 24829207292
A         24829.0 21007.02412 75   1  -5122671 81 34 27 861432.4 1917144.4  -6.8   557 104 1                   1T N/A 66111758 0 24829210072
A         24829.0 21007.024 2 75   2  -4122571 77 32 27 861443.4 1917135.4  -9.0   557 104 1                   1T N/A 66111758 0 24829210072
A         24829.0 21007.03412 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   557 10414                   1T N/A 66111842 0 24829210073
A         24829.0 21007.034 2 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   557 10414                   1T N/A 66111842 0 24829210073
A         24829.0 21007.04412 75   1  -4132571 81 35 26 861433.1 1917143.8  -6.8   557 104 1                   1T N/A 66114821 0 24829210074
A         24829.0 21007.044 2 75   1  -4112570 78 37 27 861442.6 1917135.1  -6.4   557 104 1                   1T N/A 66114821 0 24829210074
A         24833.0 21201.011 1 75   1  -3112571 74 47 18 865591.7 1919644.8   5.7   848 101 1                   1T N/A 66162501 0 24833212011
A         24833.0 21201.011 6 75   1  -3142671 77 40 18 865583.1 1919653.5   5.2   848 101 1              P    1T N/A 66162501 0 24833212011
A         24833.0 21201.021 1 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   848 10114                   1T N/A 66162519 0 24833212012
A         24833.0 21201.021 6 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   848 10114                   1T N/A 66162519 0 24833212012
A         24835.0 21177.011 1 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   810 10114                   1T N/A 66161706 0 24835211771
A         24835.0 21177.011 6 75   2   9245670 81 31 18 865045.7 1919394.7   1.8   810 101 1              P    1T N/A 66161706 0 24835211771
A         24835.0 21177.021 1 75   2   7162870 85 36 19 865033.7 1919388.2   3.1   810 101 1              P    1T N/A 66161751 0 24835211772
A         24835.0 21177.021 6 75   2   8235670 79 32 19 865045.7 1919394.7   1.8   810 101 1              P    1T N/A 66161751 0 24835211772
A         24835.0 21185.011 1 75   1   3153670 79 41 21 865212.3 1919485.1   4.8   825 101 1              P    1T N/A 66161941 0 24835211851
A         24835.0 21185.011 6 75   1   4207170 76 34 19 865223.7 1919493.0   4.6   825 101 1              P    1T N/A 66161941 0 24835211851
A         24835.0 21185.021 1 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   825 10114                   1T N/A 66161959 0 24835211852
A         24835.0 21185.021 6 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   825 10114                   1T N/A 66161959 0 24835211852
A         24835.0 21289.011 1 75   1  -4132671 77 41 20 867475.6 1920801.1  14.7   981 101 1                   1T N/A 66185751 0 24835212891
A         24835.0 21289.011 6 75   1  -4184370 74 34 20 867464.9 1920793.7  14.6   981 101 1              P    1T N/A 66185751 0 24835212891
A         24835.0 21289.021 1 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   981 10114                   1T N/A 66185828 0 24835212892
A         24835.0 21289.021 6 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   981 10114                   1T N/A 66185828 0 24835212892
A         24835.0 21305.011 1 75   1  -3112671 76 51 19 867829.3 1920982.7  15.0  1002 101 1                   1T N/A 66190208 0 24835213051
A         24835.0 21305.011 6 75   1  -3122571 75 39 21 867817.0 1920986.5  15.0  1002 101 1              P    1T N/A 66190208 0 24835213051
A         24835.0 21305.021 1 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0  1002 10114                   1T N/A 66190252 0 24835213052
A         24835.0 21305.021 6 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0  1002 10114                   1T N/A 66190252 0 24835213052
A         24863.0 20777.061 1 75   1  -4152771 81 33 26 856042.6 1914990.4 -25.4   130 101 1                   1T N/A 66005810 0 24863207776
A         24863.0 20777.061 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   130 10198                   1T N/A 66005810 0 24863207776
A         24863.0 20777.071 1 75   1  -4142771 78 35 26 856042.6 1914990.6 -25.5   130 101 1                   1T N/A 66005936 0 24863207777
A         24863.0 20777.071 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   130 10198                   1T N/A 66005936 0 24863207777
A         24863.0 20777.081 1 75   1  -3133271 75 43 23 856038.9 1914996.4 -25.4   130 101 1                   1T N/A 66010121 0 24863207778
A         24863.0 20777.081 6 75   1  -4162571 80 36 22 856030.4 1915006.7 -25.2   130 101 1                   1T N/A 66010121 0 24863207778
A         24865.0 20775.011 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   127 10198                   1T N/A 66011141 0 24865207751
A         24865.0 20775.011 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   127 10198                   1T N/A 66011141 0 24865207751
A         24865.0 20775.02310 75   1  -5143070 76 22 27 855967.6 1915013.0 -26.2   127 103 1                   1T N/A 66035258 0 24865207752
A         24865.0 20775.023 7 75   2   5173169 82 25 23 855954.2 1915017.2 -26.3   127 103 1              P V  1T N/A 66035258 0 24865207752
A         24865.0 20777.011 1 75   2  -3215767 78 36 19 856011.8 1915035.5 -25.8   131 101 1              P    1T N/A 66010240 0 24865207771
A         24865.0 20777.011 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   131 10198                   1T N/A 66010240 0 24865207771
A         24865.0 20777.021 1 75   1  -3216968 77 36 19 856011.1 1915037.2 -25.7   131 101 1              P    1T N/A 66010406 0 24865207772
A         24865.0 20777.021 6 75   1  -4152571 77 39 22 856005.6 1915049.8 -25.1   131 101 1                   1T N/A 66010406 0 24865207772
A         24867.0 20769.01410 75   1  -5112670 77 32 23 855814.8 1914981.1 -27.0   120 104 1                   1T N/A 66021007 1 24867207691
A         24867.0 20769.014 7  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   120 10498                   1T N/A 66021007 0 24867207691
A         24867.0 20769.02310 75   2  -5142569 75 23 22 855807.1 1914991.7 -26.4   120 103 1              P    1T N/A 66034445 0 24867207692
A         24867.0 20769.023 7 75   1   3122771 78 38 28 855814.4 1914980.7 -26.6   120 103 1                   1T N/A 66034445 0 24867207692
A         24867.0 20773.011 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   125 10198                   1T N/A 66011355 0 24867207731
A         24867.0 20773.011 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   125 10198                   1T N/A 66011355 0 24867207731
A         24867.0 20773.021 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   125 10198                   1T N/A 66011500 0 24867207732
A         24867.0 20773.021 6  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   125 10198                   1T N/A 66011500 0 24867207732
A         24867.0 20773.03410 75   1  -5 92671 77 40 26 855904.7 1915031.5 -27.8   125 104 1                   1T N/A 66014625 0 24867207733
A         24867.0 20773.034 7 75   1  -3152571 79 39 22 855893.6 1915041.9 -27.1   125 10411                   1T N/A 66014625 0 24867207733
A         24867.0 20779.021 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   134 10198                   1T N/A 66010531 0 24867207792
A         24867.0 20779.021 6 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   134 10123                   1T N/A 66010531 0 24867207792
A         24867.0 20779.031 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   134 10198                   1T N/A 66010636 0 24867207793
A         24867.0 20779.031 6 75   1   4184170 76 29 20 856030.2 1915108.5 -24.8   134 101 1              P    1T N/A 66010636 0 24867207793
A         24867.0 20779.041 1  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   134 10198                   1T N/A 66010826 0 24867207794
A         24867.0 20779.041 6 75   1  -4225769 77 28 20 855936.1 1915058.1 -25.2   134 101 1              P    1T N/A 66010826 0 24867207794
A         24867.0 20779.05410 75   1  -5195068 75 25 20 856027.7 1915110.6 -27.0   134 104 1              P    1T N/A 66014959 0 24867207795
A         24867.0 20779.054 7  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   134 10499                   1T N/A 66014959 0 24867207795
A         24867.0 20779.06410 75   2  -5132668 75 28 21 856027.0 1915111.5 -27.0   134 104 1              P    1T N/A 66015124 0 24867207796
A         24867.0 20779.064 7  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   134 10499                   1T N/A 66015124 0 24867207796
A         24867.0 20779.07410 75   1  -5142569 74 29 22 856027.1 1915111.4 -26.9   134 104 1              P    1T N/A 66015206 0 24867207797
A         24867.0 20779.074 7  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   134 10499                   1T N/A 66015206 0 24867207797
A         24869.0 20769.01410 75   1  -5102570 76 31 22 855784.9 1915024.7 -27.1   121 10411                   1T N/A 66020502 1 24869207691
A         24869.0 20769.014 7  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   121 10498                   1T N/A 66020502 0 24869207691
A         24869.0 20769.02410 75   2  -5102670 76 34 20 855790.5 1915020.8 -26.7   121 104 1                   1T N/A 66022830 1 24869207692
A         24869.0 20769.024 7  0   0   0 0 0 0  0  0  0      0.0       0.0   0.0   121 10498                   1T N/A 66022830 0 24869207692
A         24871.0 20749.01410 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0    75 10414                   1T N/A 66004626 0 24871207491
A         24871.0 20749.014 7 75   1  -5183170 79 27 27 855320.6 1914816.2 -28.0    75 104 1                V  1T N/A 66004626 1 24871207491
A         24871.0 20749.02410 75   2  -5112671 78 34 29 855333.4 1914825.4 -27.7    75 104 1                   1T N/A 66004708 1 24871207492
A         24871.0 20749.024 7 75   1  -4183771 77 29 27 855320.7 1914816.2 -28.0    75 104 1                V  1T N/A 66004708 1 24871207492
A         24871.0 20761.01410 75   1  -5133570 77 32 26 855593.1 1914973.8 -26.0   106 104 1                   1T N/A 66012104 0 24871207611
A         24871.0 20761.014 7 75   0   0 0 0 0  0  0  0      0.0       0.0   0.0   106 10414                   1T N/A 66012104 0 24871207611
A         24871.0 20761.02410 75   1  -5122771 76 37 27 855593.1 1914973.8 -26.0   106 104 1                   1T N/A 66012123 0 24871207612
A         24871.0 20761.024 7 75   1  -3102671 77 45 30 855589.3 1914962.3 -25.4   106 104 1                   1T N/A 66012123 0 24871207612

out

Code:
2458520825 index 2 has 2 times status 14
2458720673 index 2 has 2 times status 14
2458720675 index 2 has 2 times status 14
2459320745 index 1 has 1 times status 98
2459320849 index 2 has 1 times status 14
2459720785 index 2 has 2 times status 14
2465120615 index 2 has 2 times status 14
2478121001 index 2 has 2 times status 14
2479921001 index 2 has 2 times status 14
2480320697 index 2 has 2 times status 14
2480320841 index 2 has 2 times status 14
2480520841 index 2 has 2 times status 14
2482920729 index 2 has 2 times status 14
2483321201 index 2 has 2 times status 14
2483521185 index 2 has 2 times status 14
2483521289 index 2 has 2 times status 14
2483521305 index 2 has 2 times status 14
2486920769 index 2 has 1 times status 98

script used.
Code:
#!/bin/csh

awk '\
function pr() {\
        for(i = 1; i <= cn; i++) {\
                printf("%s index %d has %d time%s status %d\n",\
                        ID, INDEX, c[cc[i]], c[cc[i]] > 1 ? "s" : "",\
                        cc[i])\
                delete c[cc[i]]\
        }\
        cn = 0\
}\
{        nID = substr($0, 11, 5) substr($0, 19, 5)\
        nINDEX = substr($0, 26, 1)\
        if(nID != ID || nINDEX != INDEX) {\
                pr()\
                ID = nID\
                INDEX = nINDEX\
        }\
        STATUS = substr($0, 91, 2)\
        if(STATUS == 14 || STATUS == 98) {\
                 if(!(STATUS in c)) {\
                        cc[++cn] = STATUS\
                }\
                c[STATUS]++\
        }\
}\
END {\
        pr()\
}' eff | awk '{ a=substr($1,1,5); b=substr($1,6,5); print a".0", b".0"}' >eff9

grep -hFf eff9 eff | sort -k1.130,140bn > eff10

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Sum values of specific column in multiple files, considering ranges defined in another file

I have a file (let say file B) like this: File B: A1 3 5 A1 7 9 A2 2 5 A3 1 3 The first column defines a filename and the other two define a range in that specific file. In the same directory, I have also three more files (File A1, A2 and A3). Here is 10 sample lines... (3 Replies)
Discussion started by: Bastami
3 Replies

2. SCO

How to measure disk IO 5.0.7? (sar, return values ​​are not valid)

Hello I am analyzing disk performance OSR5.0.7 running inside VirtualBox. GUEST: osr5.0.7; 1GB ram; raw disk HOST: SLES11SP3, 4GB ram; 1 disc SATA2-7200rpm But I'm not sure how to do it right (the values ​​returned by sar not match the values ​​of the physical machine) The attributes... (0 Replies)
Discussion started by: flako
0 Replies

3. Shell Programming and Scripting

[Solved] Extracting information from DDL's

Dear Experts, I need your help here. I have lot of teradata DDL's as follows, i want to extract field names , field attributes and NOT NULL information from DDL.Could you please help here. Sample DDL: CREATE MULTISET TABLE APS_CALL_IN_PICKUP_CANCELED ,NO FALLBACK , NO BEFORE... (2 Replies)
Discussion started by: srikanth38
2 Replies

4. Shell Programming and Scripting

[Solved] How can I pull specific information from PS?

I need to grab information from the output of the ps command. For each line of ps output that contains _progres -b I need to get the word that follows -p. The "-p" can be anywhere after "_progres -b". Using grep to select the correct lines is no problem (e.g. ps -ef|grep "_progres \-b|grep -v... (3 Replies)
Discussion started by: Papa Lee
3 Replies

5. UNIX for Dummies Questions & Answers

[Solved] Variable defined in .bashrc not intializing in script

I have the variable defined in .bashrc BIN_DIR="/usr/local/dw" and in my shell script i am using below. #!/bin/bash echo "Bin Dir: ${BIN_DIR}" . "${BIN_DIR}"/dwh_Loadfuncs.sh Output: Bin Dir: /usr/local/dw/dwh_LoadXMLFileIntoStage.sh: line 7: /dwh_Loadfuncs.sh: No such file or... (3 Replies)
Discussion started by: Ariean
3 Replies

6. UNIX for Advanced & Expert Users

[Solved] Unable to fetch the UNIX variable information

I am having a file called variable_info.ksh in that file I am having following global variable information like… EMAIL_PATH=/var/mail TMP_PATH=/home/tmp And we are having another temporary parameter file abcd.txt, in that file we are having the following information like… EMAIL|EMAI_PATH I... (4 Replies)
Discussion started by: mesahammad
4 Replies

7. Shell Programming and Scripting

[Solved] Editing the alphabet's based on position information

I do have a file of the following format file 1 >SAM ATGCTCCTTAGCTACGTAGCAAGTAGAAAAAA AGCGCGAGCATTGAAGCGGAGGAGAGGAGGA TGAGATGATGACCCAGTATAAAGAGTGATGAT like this above file. file 1 has 1000's of lines. I would like to edit this file1 using the information from file2 (see below), by... (16 Replies)
Discussion started by: Lucky Ali
16 Replies

8. Shell Programming and Scripting

[solved] awk: placement of user-defined functions

Hi folks, is there any recommendation, especially from a point of performance, about where to place a user-defined function in awk, like in BEGIN{} or if it is only need once at the end in END{}? Or doesn't it matter at all since, awk is so clever and only interprets it once, wherever it is... (3 Replies)
Discussion started by: zaxxon
3 Replies

9. HP-UX

[Solved] processor type and bit information

Hi, I'm trying to download a compatible Oracle Client software for a HP-UX machine. I'd like to know if ... 1) HP-UX is 32 bit or 64 bit? 2) Processor type - Itanium or regular? when I execute uname -a I get HP-UX B.11.11 U 9000/800 728684161 unlimited-user license Based on the... (7 Replies)
Discussion started by: luft
7 Replies

10. Shell Programming and Scripting

Awk to extract lines with a defined number of characters

This is my problem, my file (file A) contains the following information: Now, I would like to create a file (file B) containing only the lines with 10 or more characters but less than 20 with their corresponding ID: Then, I need to compare the entries and determine their frequency. Thus, I... (7 Replies)
Discussion started by: Xterra
7 Replies
Login or Register to Ask a Question