Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Unix Operating Systems > Sco Unix

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-15-2008, 04:58 PM
E Arredondo
 
Posts: n/a
Default tr syntax

Do you know the right syntax for the TR command to strip characters from a
file ?


my file looks like this :

rfq=ADDRFQ%7ER-050427%3A033325%7ECARQUEST%7E9%7E1.1%7E2005-04-27T12%3A33%3A25.00
0-07%3A00%0D%0ARFQ%7ER-050427%3A033325%7ER-050427%3A033325%7E2005-04-27T12%3A33%
3A25.000-07%3A00%7E0%7E0%7E57603%7Etest%7E654654+test+ave%7 E%7E%7Esanta+ana%7ECA
%7E92704%7EUS%7E%28714%29+850-1544%7E32423%7ENew+York+DC%7E32+Apple+Lane%7E%7E%7
ENew+York%7ENY%7E10010%7EUS%7E%28212%29+212-2122%7E%0D%0ALINE%7ER-050427%3A03332
5%7E1%7ER-050427%3A033325%7EDF01%7EDF01%7E1.0%7EEA%7EFREGHT% 7E%0D%0A


and I want to change all the %7E for an ~

and I've tried

cat file.txt | tr "%7E" "~" but only changes the % for an ~ and leaves
the 7E.

Then I want to change the %0D%0A for a Line feed or carriage return.

cat file.txt | tr "%0D%0A" "/012"


Thanks


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-15-2008, 04:58 PM
Jean-Pierre Radley
 
Posts: n/a
Default Re: tr syntax

E Arredondo typed (on Wed, Apr 27, 2005 at 09:48:21PM +0000):
| Do you know the right syntax for the TR command to strip characters from a
| file ?
|
|
| my file looks like this :
|
| rfq=ADDRFQ%7ER-050427%3A033325%7ECARQUEST%7E9%7E1.1%7E2005-04-27T12%3A33%3A25.00
| 0-07%3A00%0D%0ARFQ%7ER-050427%3A033325%7ER-050427%3A033325%7E2005-04-27T12%3A33%
| 3A25.000-07%3A00%7E0%7E0%7E57603%7Etest%7E654654+test+ave%7 E%7E%7Esanta+ana%7ECA
| %7E92704%7EUS%7E%28714%29+850-1544%7E32423%7ENew+York+DC%7E32+Apple+Lane%7E%7E%7
| ENew+York%7ENY%7E10010%7EUS%7E%28212%29+212-2122%7E%0D%0ALINE%7ER-050427%3A03332
| 5%7E1%7ER-050427%3A033325%7EDF01%7EDF01%7E1.0%7EEA%7EFREGHT% 7E%0D%0A
|
|
| and I want to change all the %7E for an ~
|
| and I've tried
|
| cat file.txt | tr "%7E" "~" but only changes the % for an ~ and leaves
| the 7E.
|
| Then I want to change the %0D%0A for a Line feed or carriage return.
|
| cat file.txt | tr "%0D%0A" "/012"
|

Wrong tool. Use sed.

--
JP
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-15-2008, 04:58 PM
Brian K. White
 
Posts: n/a
Default Re: tr syntax


----- Original Message -----
From: "E Arredondo" <atk@sbcglobal.net>
Newsgroups: comp.unix.sco.misc
To: <distro@jpr.com>
Sent: Wednesday, April 27, 2005 5:48 PM
Subject: tr syntax


> Do you know the right syntax for the TR command to strip characters from a
> file ?
>
>
> my file looks like this :
>
> rfq=ADDRFQ%7ER-050427%3A033325%7ECARQUEST%7E9%7E1.1%7E2005-04-27T12%3A33%3A25.00
> 0-07%3A00%0D%0ARFQ%7ER-050427%3A033325%7ER-050427%3A033325%7E2005-04-27T12%3A33%
> 3A25.000-07%3A00%7E0%7E0%7E57603%7Etest%7E654654+test+ave%7 E%7E%7Esanta+ana%7ECA
> %7E92704%7EUS%7E%28714%29+850-1544%7E32423%7ENew+York+DC%7E32+Apple+Lane%7E%7E%7
> ENew+York%7ENY%7E10010%7EUS%7E%28212%29+212-2122%7E%0D%0ALINE%7ER-050427%3A03332
> 5%7E1%7ER-050427%3A033325%7EDF01%7EDF01%7E1.0%7EEA%7EFREGHT% 7E%0D%0A
>
>
> and I want to change all the %7E for an ~
>
> and I've tried
>
> cat file.txt | tr "%7E" "~" but only changes the % for an ~ and
> leaves the 7E.
>
> Then I want to change the %0D%0A for a Line feed or carriage return.
>
> cat file.txt | tr "%0D%0A" "/012"
>
>
> Thanks


tr can not do that job, for that you want sed, or....

This is a good example of what we mean when we sometimes tell people "tell
us what you really want" instead of trying to abstract out the part you
think you need solved out of the real whole problem.

This appears to be url-encoded content, you may be interested to know there
are utilities and code snippets in various languages already designed just
for the purpose of url en/de-coding. There are a lot of other codes besides
the couple you asked about, and you should really be prepared to decode any
that might appear in the data, including ones that you haven't just happened
to encounter yet.

I found a couple of snippets of c code that do this and made them into bare
bones stand-alone executables.
http://www.aljex.com/bkw/sco/index.html#urlenc

Unfortunately, your data also includes "+" in place of spaces, which is
another common url hack, and unfortunately, it wouldn't be safe/sane in my
opinion to wholesale replace all + with " " (which tr can do) because surely
a "+" is a legitimate character that might appear in the data?

The spaces should have been submitted to the cgi as %20 instead of + in the
first place. By the time you recieve the data above, it's too late for you
to be able to reliably convert the +'s back to spaces without also
converting +'s that were supposed to actually be +'s in the data.

Here's a command to use the binary above and tr to decode all the url codes
and convert all +'s to spaces and just hope no + ever comes in as data.
deurl "$rfq" |tr "+" " "

My guess is you are ultimately getting this data into filepro. You could
leave off the tr and use xlate in filepro almost as easily. In that case,
you could decide to only xlate certain fields, leaving the possibility of
real data +'s in some fields. The tr command will convert every + in the
record and has no concept of fields.

Brian K. White -- brian@aljex.com -- http://www.aljex.com/bkw/
+++++[>+++[>+++++>+++++++<<-]<-]>>+.>.+++++.+++++++.-.[>+<---]>++.
filePro BBx Linux SCO Prosper/FACTS AutoCAD #callahans Satriani

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-15-2008, 05:03 PM
E Arredondo
 
Posts: n/a
Default Re: tr syntax


"Brian K. White" <brian@aljex.com> wrote in message
news:046501c54b96$18014080$6500000a@venti...
>
> ----- Original Message -----
> From: "E Arredondo" <atk@sbcglobal.net>
> Newsgroups: comp.unix.sco.misc
> To: <distro@jpr.com>
> Sent: Wednesday, April 27, 2005 5:48 PM
> Subject: tr syntax
>
>
>> Do you know the right syntax for the TR command to strip characters from
>> a
>> file ?
>>
>>
>> my file looks like this :
>>
>> rfq=ADDRFQ%7ER-050427%3A033325%7ECARQUEST%7E9%7E1.1%7E2005-04-27T12%3A33%3A25.00
>> 0-07%3A00%0D%0ARFQ%7ER-050427%3A033325%7ER-050427%3A033325%7E2005-04-27T12%3A33%
>> 3A25.000-07%3A00%7E0%7E0%7E57603%7Etest%7E654654+test+ave%7 E%7E%7Esanta+ana%7ECA
>> %7E92704%7EUS%7E%28714%29+850-1544%7E32423%7ENew+York+DC%7E32+Apple+Lane%7E%7E%7
>> ENew+York%7ENY%7E10010%7EUS%7E%28212%29+212-2122%7E%0D%0ALINE%7ER-050427%3A03332
>> 5%7E1%7ER-050427%3A033325%7EDF01%7EDF01%7E1.0%7EEA%7EFREGHT% 7E%0D%0A
>>
>>
>> and I want to change all the %7E for an ~
>>
>> and I've tried
>>
>> cat file.txt | tr "%7E" "~" but only changes the % for an ~ and
>> leaves the 7E.
>>
>> Then I want to change the %0D%0A for a Line feed or carriage return.
>>
>> cat file.txt | tr "%0D%0A" "/012"
>>
>>
>> Thanks

>
> tr can not do that job, for that you want sed, or....
>
> This is a good example of what we mean when we sometimes tell people "tell
> us what you really want" instead of trying to abstract out the part you
> think you need solved out of the real whole problem.
>
> This appears to be url-encoded content, you may be interested to know
> there
> are utilities and code snippets in various languages already designed just
> for the purpose of url en/de-coding. There are a lot of other codes
> besides
> the couple you asked about, and you should really be prepared to decode
> any
> that might appear in the data, including ones that you haven't just
> happened
> to encounter yet.
>
> I found a couple of snippets of c code that do this and made them into
> bare
> bones stand-alone executables.
> http://www.aljex.com/bkw/sco/index.html#urlenc
>
> Unfortunately, your data also includes "+" in place of spaces, which is
> another common url hack, and unfortunately, it wouldn't be safe/sane in my
> opinion to wholesale replace all + with " " (which tr can do) because
> surely
> a "+" is a legitimate character that might appear in the data?
>
> The spaces should have been submitted to the cgi as %20 instead of + in
> the
> first place. By the time you recieve the data above, it's too late for you
> to be able to reliably convert the +'s back to spaces without also
> converting +'s that were supposed to actually be +'s in the data.
>
> Here's a command to use the binary above and tr to decode all the url
> codes
> and convert all +'s to spaces and just hope no + ever comes in as data.
> deurl "$rfq" |tr "+" " "
>
> My guess is you are ultimately getting this data into filepro. You could
> leave off the tr and use xlate in filepro almost as easily. In that case,
> you could decide to only xlate certain fields, leaving the possibility of
> real data +'s in some fields. The tr command will convert every + in the
> record and has no concept of fields.
>
> Brian K. White -- brian@aljex.com -- http://www.aljex.com/bkw/
> +++++[>+++[>+++++>+++++++<<-]<-]>>+.>.+++++.+++++++.-.[>+<---]>++.
> filePro BBx Linux SCO Prosper/FACTS AutoCAD #callahans Satriani
>


I can't sed my file because I found out that, after I receive the data from
a http call and then *cat*ing it to a file from a cgi-bin script it makes a
file like this whit the message "Incomplete Last line" and neither *tr* or
*sed* would work unless I *vi* the file and then save the file to get rid of
that message "Imcomplete last line", then tr and sed will work fine:

------------- start ---------------------
rfq=ADDRFQ%7ER-050523%3A020823%7ECARQUEST%7E9%7E1.1%7E2005-05-23T11%3A08%3A23.00
0-07%3A00%0D%0ARFQ%7ER-050523%3A020823%7ER-050523%3A020823%7E2005-05-23T11%3A08%
3A23.000-07%3A00%7E0%7E0%7E283642%7EATK+North+America%7E321 0+S.+Croddy+Way%7E%7E
%7ESanta+Ana%7ECA%7E92704%7EUS%7E%28714%29+850-1544%7E343992%7EJBS+Logistics%7E2
00+Regency+Dr%7E%7E%7EGlendale+Heights%7EIL%7E6013 9%7EUS%7E630-924-2000%7E%0D%0A
LINE%7ER-050523%3A020823%7E1%7ER-050523%3A020823%7EDF01%7EDF01%7E1.0%7EEA%7EFREG
HT%7E%0D%0A
~
~
~
"cq18821.txt" [Incomplete last line] 1 line, 491 characters
----------- cut here ------------------------

Here's what my cgi script does :

car.cgi----------------------------------
#!/bin/ksh
umask 0
.. ./fpsetenv.bat
FILE=/usr2/appl/fpmerge/cq$$.txt
cat > $FILE

echo Content-type: text/plain
echo

......etc (script keeps doing more things)
----------------------------------------------------


How can I fix this issue with the "Incomplete last line" ?

Thanks so much in advance


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-15-2008, 05:03 PM
John Schmidt
 
Posts: n/a
Default Re: tr syntax

E Arredondo wrote:

> #!/bin/ksh
> umask 0
> . ./fpsetenv.bat
> FILE=/usr2/appl/fpmerge/cq$$.txt
> cat > $FILE


echo >> $FILE


> echo Content-type: text/plain
> echo




JS
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-15-2008, 05:03 PM
John DuBois
 
Posts: n/a
Default Re: tr syntax

In article <9wGle.2067$rY6.354@newssvr13.news.prodigy.com>,
E Arredondo <atk@sbcglobal.net> wrote:
>I can't sed my file because I found out that, after I receive the data from
>a http call and then *cat*ing it to a file from a cgi-bin script it makes a
>file like this whit the message "Incomplete Last line" and neither *tr* or
>*sed* would work unless I *vi* the file and then save the file to get rid of
>that message "Imcomplete last line", then tr and sed will work fine:
>How can I fix this issue with the "Incomplete last line" ?


tr should work fine. sed does insist on a trailing newline. You can do:

{ cat file; echo ""; } | sed ...

to append a newline to its input. Or use awk, which doesn't have this problem;
replace

sed 's/foo/bar/'

with

awk '{sub(/foo/,"bar")}1'

John
--
John DuBois spcecdt@armory.com KC6QKZ/AE http://www.armory.com/~spcecdt/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-15-2008, 05:03 PM
E Arredondo
 
Posts: n/a
Default Re: tr syntax


"John DuBois" <spcecdt@armory.com> wrote in message
news:119ejq3b7mr18c6@corp.supernews.com...
> In article <9wGle.2067$rY6.354@newssvr13.news.prodigy.com>,
> E Arredondo <atk@sbcglobal.net> wrote:
>>I can't sed my file because I found out that, after I receive the data
>>from
>>a http call and then *cat*ing it to a file from a cgi-bin script it makes
>>a
>>file like this whit the message "Incomplete Last line" and neither *tr* or
>>*sed* would work unless I *vi* the file and then save the file to get rid
>>of
>>that message "Imcomplete last line", then tr and sed will work fine:
>>How can I fix this issue with the "Incomplete last line" ?

>
> tr should work fine. sed does insist on a trailing newline. You can do:
>
> { cat file; echo ""; } | sed ...
>
> to append a newline to its input. Or use awk, which doesn't have this
> problem;
> replace
>
> sed 's/foo/bar/'
>
> with
>
> awk '{sub(/foo/,"bar")}1'
>
> John
> --


My script is working now but I was just wondering if there's a way to
compress the sed into 1 line to make it simpler to save some milliseconds or
maybe seconds of processing time, Does it accepts semi colons or commas
between searches ?, here's what my final script looks like, :

-------------begin here --------------------
FILE=/usr2/appl/fpmerge/cq$$.txt
FILE2=/usr2/appl/fpmerge/cqa$$.txt
cat > $FILE
echo >> $FILE

sed -e "s/%7E/\~/g" < $FILE > $FILE2
sed -e "s/%3A/\:/g" < $FILE2 > $FILE
sed -e "s/%0D%0A/\|/g" < $FILE > $FILE2 # this will let tr down below
change all |'s for LF's
sed -e "s/+/ /g" < $FILE2 > $FILE
sed -e "s/%28/\(/g" < $FILE > $FILE2
sed -e "s/%29/\)/g" < $FILE2 > $FILE
cat $FILE | tr "|" "[\012*]" > $FILE2

------------cut here-------------




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 02-15-2008, 05:03 PM
Tony Lawrence
 
Posts: n/a
Default Re: tr syntax

E Arredondo wrote:
> "John DuBois" <spcecdt@armory.com> wrote in message
> news:119ejq3b7mr18c6@corp.supernews.com...
>
>>In article <9wGle.2067$rY6.354@newssvr13.news.prodigy.com>,
>>E Arredondo <atk@sbcglobal.net> wrote:
>>
>>>I can't sed my file because I found out that, after I receive the data
>>>from
>>>a http call and then *cat*ing it to a file from a cgi-bin script it makes
>>>a
>>>file like this whit the message "Incomplete Last line" and neither *tr* or
>>>*sed* would work unless I *vi* the file and then save the file to get rid
>>>of
>>>that message "Imcomplete last line", then tr and sed will work fine:
>>>How can I fix this issue with the "Incomplete last line" ?

>>
>>tr should work fine. sed does insist on a trailing newline. You can do:
>>
>>{ cat file; echo ""; } | sed ...
>>
>>to append a newline to its input. Or use awk, which doesn't have this
>>problem;
>>replace
>>
>> sed 's/foo/bar/'
>>
>>with
>>
>> awk '{sub(/foo/,"bar")}1'
>>
>>John
>>--

>
>
> My script is working now but I was just wondering if there's a way to
> compress the sed into 1 line to make it simpler to save some milliseconds or
> maybe seconds of processing time, Does it accepts semi colons or commas
> between searches ?, here's what my final script looks like, :
>
> -------------begin here --------------------
> FILE=/usr2/appl/fpmerge/cq$$.txt
> FILE2=/usr2/appl/fpmerge/cqa$$.txt
> cat > $FILE
> echo >> $FILE
>
> sed -e "s/%7E/\~/g" < $FILE > $FILE2
> sed -e "s/%3A/\:/g" < $FILE2 > $FILE
> sed -e "s/%0D%0A/\|/g" < $FILE > $FILE2 # this will let tr down below
> change all |'s for LF's
> sed -e "s/+/ /g" < $FILE2 > $FILE
> sed -e "s/%28/\(/g" < $FILE > $FILE2
> sed -e "s/%29/\)/g" < $FILE2 > $FILE
> cat $FILE | tr "|" "[\012*]" > $FILE2
>
> ------------cut here-------------
>
>
>
>


You can do multiple operations by separating sed commands with ";"

Just watch the order as each section sees the results of the previous:

date | sed "s/2005/2004/;s/May/June/;s/2004/2003/"

works as you think it would.



--
Tony Lawrence
Unix/Linux/Mac OS X resources: http://aplawrence.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 02-15-2008, 05:03 PM
Jean-Pierre Radley
 
Posts: n/a
Default Re: tr syntax

Tony Lawrence typed (on Tue, May 31, 2005 at 12:36:17PM -0400):
| E Arredondo wrote:
| >
| >My script is working now but I was just wondering if there's a way to
| >compress the sed into 1 line to make it simpler to save some milliseconds
| >or maybe seconds of processing time, Does it accepts semi colons or commas
| >between searches ?, here's what my final script looks like, :
| >
| >-------------begin here --------------------
| >FILE=/usr2/appl/fpmerge/cq$$.txt
| >FILE2=/usr2/appl/fpmerge/cqa$$.txt
| >cat > $FILE
| >echo >> $FILE
| >
| >sed -e "s/%7E/\~/g" < $FILE > $FILE2
| >sed -e "s/%3A/\:/g" < $FILE2 > $FILE
| >sed -e "s/%0D%0A/\|/g" < $FILE > $FILE2 # this will let tr down below
| >change all |'s for LF's
| >sed -e "s/+/ /g" < $FILE2 > $FILE
| >sed -e "s/%28/\(/g" < $FILE > $FILE2
| >sed -e "s/%29/\)/g" < $FILE2 > $FILE
| >cat $FILE | tr "|" "[\012*]" > $FILE2
| >
| >------------cut here-------------
|
| You can do multiple operations by separating sed commands with ";"
|
| Just watch the order as each section sees the results of the previous:
|
| date | sed "s/2005/2004/;s/May/June/;s/2004/2003/"
|
| works as you think it would.
|

I find it easier to read (and *much* easier to edit) if you
write each 'sed' command on its own line:

sed '
s/2005/2004/g
s;May;June;g
s-2004-2003-g
'
--
JP
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 02-15-2008, 05:03 PM
Tony Lawrence
 
Posts: n/a
Default Re: tr syntax

Jean-Pierre Radley wrote:
> Tony Lawrence typed (on Tue, May 31, 2005 at 12:36:17PM -0400):
> | E Arredondo wrote:
> | >
> | >My script is working now but I was just wondering if there's a way to
> | >compress the sed into 1 line to make it simpler to save some milliseconds
> | >or maybe seconds of processing time, Does it accepts semi colons or commas
> | >between searches ?, here's what my final script looks like, :
> | >
> | >-------------begin here --------------------
> | >FILE=/usr2/appl/fpmerge/cq$$.txt
> | >FILE2=/usr2/appl/fpmerge/cqa$$.txt
> | >cat > $FILE
> | >echo >> $FILE
> | >
> | >sed -e "s/%7E/\~/g" < $FILE > $FILE2
> | >sed -e "s/%3A/\:/g" < $FILE2 > $FILE
> | >sed -e "s/%0D%0A/\|/g" < $FILE > $FILE2 # this will let tr down below
> | >change all |'s for LF's
> | >sed -e "s/+/ /g" < $FILE2 > $FILE
> | >sed -e "s/%28/\(/g" < $FILE > $FILE2
> | >sed -e "s/%29/\)/g" < $FILE2 > $FILE
> | >cat $FILE | tr "|" "[\012*]" > $FILE2
> | >
> | >------------cut here-------------
> |
> | You can do multiple operations by separating sed commands with ";"
> |
> | Just watch the order as each section sees the results of the previous:
> |
> | date | sed "s/2005/2004/;s/May/June/;s/2004/2003/"
> |
> | works as you think it would.
> |
>
> I find it easier to read (and *much* easier to edit) if you
> write each 'sed' command on its own line:
>
> sed '
> s/2005/2004/g
> s;May;June;g
> s-2004-2003-g
> '


Funny - I dislike that type of thing strongly. If I'm going to do that,
I'll put the commands in a file and call it with -f, but I just won't do
that on the command line - no reason, no rationality, just for some
reason I don't like it :-)



--
Tony Lawrence
Unix/Linux/Mac OS X resources: http://aplawrence.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 02:44 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702