Re : help about read the content of a search query

Bou Aek <[email protected]> Sat, 5 Jun 2010 10:24:54 +0000 (GMT)
Newsgroups gmane.network.gnutella.devel
Message-ID <[email protected]>
--jW08auTRlYawDiEC-NH-zOBhiu6bcVm30hZ8hhF
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable



Hello=20
I am really sorry of this derangement that I caused to you=20
This explains exactly which my problem is=20
I am trying to use this method to read the content of QueryHit message,=20
But it never gives me the correct result.=20
The QueryHit content the shared files of the servents
=20
static void createMessage(short[] s) { //s[]                       contain =
the received message=20=20
                int i=3D0,
                    HIT=3D0;
                String type, PayloadSize;=20
                System.out.print("ID: ");=20
                while(i<16){
                        System.out.print(""+Integer.toHexString(s[i++]));
                                }
=20
                System.out.println();=20
                type=3DInteger.toHexString(s[16]);=20
                System.out.println("Payload : "+(type));=20
                i++;=20
                System.out.println("TTL:  "+String.valueOf(Integer.toHexStr=
ing(s[17])));i++;=20
                System.out.println("HOPs: "+String.valueOf(Integer.toHexStr=
ing(s[18]))+"\nPayloadSize");i++;=20
                PayloadSize=3DString.valueOf(s[19])+String.valueOf((s[20]<<=
8))+String.valueOf((s[21]<<16))+String.valueOf((s[22]<<24));=20
                System.out.print(""+(PayloadSize));i+=3D4;=20
                if(s[16]=3D=3D0x81){=20
                System.out.println("HIT: "+(HIT=3Ds[i++]));=20
                System.out.println("por: "+(s[i++]+(s[i++]<<8)));=20
                System.out.println("IP : "+s[i++]+"."+(s[i++]<<8)+"."+(s[i+=
+]<<16)+"."+(s[i++]<<24));=20
                System.out.println("SPEED : "+s[i++]+(s[i++]<<8)+(s[i++]<<1=
6)+(s[i++]<<24));=20
                int j=3D0,idxFile,SizeFile;=20
                LinkedList<FileRecord> ResultSet=3Dnew LinkedList<FileRecor=
d>();=20
                while(j<HIT){=20
                    System.out.println("FileIndx : "+(idxFile=3Ds[i++]+(s[i=
++]<<8)+(s[i++]<<16)+(s[i++]<<24)));=20
                    System.out.println("FileSize : "+(SizeFile=3Ds[i++]+(s[=
i++]<<8)+(s[i++]<<16)+(s[i++]<<24)));=20
                    String nameFile=3D"";=20
                       while(s[i]!=3D0){
                                nameFile.concat(String.valueOf(s[i++]));
                        }
=20
                System.out.print("File: "+nameFile);=20
                ResultSet.add(new FileRecord(idxFile,SizeFile,nameFile));=20
                j++;=20
                }=20
                }                 }

________________________________
De : Arne Babenhauserheide <[email protected]>
=C3=80 : [email protected]
Envoy=C3=A9 le : Sam 29 mai 2010, 8h 44min 51s
Objet : Re: [the_gdf] help about read the content of a search query

=20=20
On Donnerstag, 27. Mai 2010 12:53:34 Bou Aek wrote:
> Yes. I want to see the content of the queries wich I receive.

You already have that content. There=E2=80=99s no file attached to queries.=
 Downloads=20
are done on a seperate channel (standard HTTP + swarming extension).=20

Wishes,=20
Arne

[Non-text portions of this message have been removed]


=20


=20=20=20=20=20=20

[Non-text portions of this message have been removed]


--jW08auTRlYawDiEC-NH-zOBhiu6bcVm30hZ8hhF
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable




<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/htm=
l4/strict.dtd">
<html>
<head>
</head>







<body style=3D"background-color: #fff;">
<span style=3D"display:none">&nbsp;</span>

<!--~-|**|PrettyHtmlStartT|**|-~-->
<div id=3D"ygrp-mlmsg" style=3D"position:relative;">
  <div id=3D"ygrp-msg" style=3D"z-index: 1;">
<!--~-|**|PrettyHtmlEndT|**|-~-->

    <div id=3D"ygrp-text" >
=20=20=20=20=20=20
=20=20=20=20=20=20
      <p><br>
<br>
Hello <br>
I am really sorry of this derangement that I caused to you <br>
This explains exactly which my problem is <br>
I am trying to use this method to read the content of QueryHit message, <br=
>
But it never gives me the correct result. <br>
The QueryHit content the shared files of the servents<br>
 <br>
static void createMessage(short[] s) { //s[]                       contain =
the received message  <br>
                int i=3D0,<br>
                    HIT=3D0;<br>
                String type, PayloadSize; <br>
                System.out.print(&quot;ID: &quot;); <br>
                while(i&lt;16){<br>
                        System.out.print(&quot;&quot;&#43;Integer.toHexStri=
ng(s[i&#43;+]));<br>
                                }<br>
 <br>
                System.out.println(); <br>
                type=3DInteger.toHexString(s[16]); <br>
                System.out.println(&quot;Payload : &quot;+(type)); <br>
                i&#43;+; <br>
                System.out.println(&quot;TTL:  &quot;&#43;String.valueOf(In=
teger.toHexString(s[17])));i&#43;+; <br>
                System.out.println(&quot;HOPs: &quot;&#43;String.valueOf(In=
teger.toHexString(s[18]))+&quot;\nPayloadSize&quot;);i&#43;+; <br>
                PayloadSize=3DString.valueOf(s[19])&#43;String.valueOf((s[2=
0]&lt;&lt;8))&#43;String.valueOf((s[21]&lt;&lt;16))&#43;String.valueOf((s[2=
2]&lt;&lt;24)); <br>
                System.out.print(&quot;&quot;+(PayloadSize));i+=3D4; <br>
                if(s[16]=3D=3D0x81){ <br>
                System.out.println(&quot;HIT: &quot;+(HIT=3Ds[i&#43;+])); <=
br>
                System.out.println(&quot;por: &quot;+(s[i&#43;+]+(s[i&#43;+=
]&lt;&lt;8))); <br>
                System.out.println(&quot;IP : &quot;&#43;s[i&#43;+]+&quot;.=
&quot;+(s[i&#43;+]&lt;&lt;8)+&quot;.&quot;+(s[i&#43;+]&lt;&lt;16)+&quot;.&q=
uot;+(s[i&#43;+]&lt;&lt;24)); <br>
                System.out.println(&quot;SPEED : &quot;&#43;s[i&#43;+]+(s[i=
&#43;+]&lt;&lt;8)+(s[i&#43;+]&lt;&lt;16)+(s[i&#43;+]&lt;&lt;24)); <br>
                int j=3D0,idxFile,SizeFile; <br>
                LinkedList&lt;FileRecord&gt; ResultSet=3Dnew LinkedList&lt;=
FileRecord&gt;(); <br>
                while(j&lt;HIT){ <br>
                    System.out.println(&quot;FileIndx : &quot;+(idxFile=3Ds=
[i&#43;+]+(s[i&#43;+]&lt;&lt;8)+(s[i&#43;+]&lt;&lt;16)+(s[i&#43;+]&lt;&lt;2=
4))); <br>
                    System.out.println(&quot;FileSize : &quot;+(SizeFile=3D=
s[i&#43;+]+(s[i&#43;+]&lt;&lt;8)+(s[i&#43;+]&lt;&lt;16)+(s[i&#43;+]&lt;&lt;=
24))); <br>
                    String nameFile=3D&quot;&quot;; <br>
                       while(s[i]!=3D0){<br>
                                nameFile.concat(String.valueOf(s[i&#43;+]))=
;<br>
                        }<br>
 <br>
                System.out.print(&quot;File: &quot;&#43;nameFile); <br>
                ResultSet.add(new FileRecord(idxFile,SizeFile,nameFile)); <=
br>
                j&#43;+; <br>
                } <br>
                }                 }<br>
<br>
________________________________<br>
De : Arne Babenhauserheide &lt;<a href=3D"mailto:arne_bab%40yahoo.de">arne_=
[email protected]</a>&gt;<br>
=C3=80 : <a href=3D"mailto:the_gdf%40yahoogroups.com">[email protected]=
om</a><br>
Envoy=C3=A9 le : Sam 29 mai 2010, 8h 44min 51s<br>
Objet : Re: [the_gdf] help about read the content of a search query<br>
<br>
On Donnerstag, 27. Mai 2010 12:53:34 Bou Aek wrote:<br>
&gt; Yes. I want to see the content of the queries wich I receive.<br>
<br>
You already have that content. There=E2=80=99s no file attached to queries.=
 Downloads <br>
are done on a seperate channel (standard HTTP + swarming extension). <br>
<br>
Wishes, <br>
Arne<br>
<br>
[Non-text portions of this message have been removed]<br>
<br>
[Non-text portions of this message have been removed]<br>
<br>
</p>

    </div>
=20=20=20=20=20

    <!--~-|**|PrettyHtmlStart|**|-~-->
    <div style=3D"color: #fff; height: 0;">__._,_.___</div>

=20=20=20=20=20=20=20=20
=20=20
=20=20=20
    <div id=3D"ygrp-actbar" style=3D"clear: both; margin-bottom: 10px; whit=
e-space: nowrap; color: #666; padding-top: 15px;">
      <div>
        <a href=3D"mailto:[email protected]?subject=3DRe : [the_gdf] help ab=
out read the content of a search query" style=3D"margin-right: 0; padding-r=
ight: 0;">
	  Reply to <span style=3D"font-weight: 700;">sender</span></a> |
        <a href=3D"mailto:[email protected]?subject=3DRe : [the_gdf] =
help about read the content of a search query">
	  Reply to <span style=3D"font-weight: 700;">group</span></a> |
        	  <a href=3D"http://groups.yahoo.com/group/the_gdf/post;_ylc=3DX3o=
DMTJxZWxpaGx2BF9TAzk3MzU5NzE0BGdycElkAzI2ODQyNTMEZ3Jwc3BJZAMxNzA1MDE2MDYxBG=
1zZ0lkAzIzNzQwBHNlYwNmdHIEc2xrA3JwbHkEc3RpbWUDMTI3NTc0MzY4MA--?act=3Dreply&=
messageNum=3D23740">Reply <span style=3D"font-weight: 700;">via web post</s=
pan></a> |
            	<a href=3D"http://groups.yahoo.com/group/the_gdf/post;_ylc=3DX=
3oDMTJlZGpmMmtlBF9TAzk3MzU5NzE0BGdycElkAzI2ODQyNTMEZ3Jwc3BJZAMxNzA1MDE2MDYx=
BHNlYwNmdHIEc2xrA250cGMEc3RpbWUDMTI3NTc0MzY4MA--" style=3D"font-weight: 700=
;">Start a New Topic</a>
      </div>

                <a href=3D"http://groups.yahoo.com/group/the_gdf/message/23=
731;_ylc=3DX3oDMTM2YmRzN2NqBF9TAzk3MzU5NzE0BGdycElkAzI2ODQyNTMEZ3Jwc3BJZAMx=
NzA1MDE2MDYxBG1zZ0lkAzIzNzQwBHNlYwNmdHIEc2xrA3Z0cGMEc3RpbWUDMTI3NTc0MzY4MAR=
0cGNJZAMyMzczMQ--">Messages in this topic</a>
          (<span style=3D"font-weight: 700;">9</span>)
          </div>=20
<!------- Start Nav Bar ------>

<!-- |**|begin egp html banner|**| -->
<div id=3D"ygrp-vital" style=3D"background-color: #e0ecee; font-family: Ver=
dana; font-size: 10px; margin-bottom: 10px; padding: 10px;">
      <span id=3D"vithd" style=3D"font-weight: bold; color: #333; text-tran=
sform: uppercase; ">Recent Activity:</span>

    <ul style=3D"list-style-type: none; margin: 0; padding: 0; display: inl=
ine;">
            <li style=3D"border-right: 1px solid #000; font-weight: 700; di=
splay: inline; padding: 0 5px; margin-left: 0;">
      <span class=3D"cat"><a href=3D"http://groups.yahoo.com/group/the_gdf/=
members;_ylc=3DX3oDMTJmNzdiODk0BF9TAzk3MzU5NzE0BGdycElkAzI2ODQyNTMEZ3Jwc3BJ=
ZAMxNzA1MDE2MDYxBHNlYwN2dGwEc2xrA3ZtYnJzBHN0aW1lAzEyNzU3NDM2Nzk-?o=3D6" sty=
le=3D"text-decoration: none;">New Members</a></span>
      <span class=3D"ct" style=3D"color: #ff7900;">1</span>
    </li>
                                              </ul>
=20=20=20=20
  <div style=3D"clear: both; padding-top: 2px; color: #1e66ae;">
    <a href=3D"http://groups.yahoo.com/group/the_gdf;_ylc=3DX3oDMTJlODVtM3F=
pBF9TAzk3MzU5NzE0BGdycElkAzI2ODQyNTMEZ3Jwc3BJZAMxNzA1MDE2MDYxBHNlYwN2dGwEc2=
xrA3ZnaHAEc3RpbWUDMTI3NTc0MzY3OQ--" style=3D"text-decoration: none;">Visit =
Your Group</a>
  </div>
</div>

              <div id=3D"ygrp-mkp" style=3D"border: 1px solid #d8d8d8; clea=
r: both; float: left; font-family: Arial; margin: 5px 0 10px 0; padding: 0 =
10px;">
      <div id=3D"hd" style=3D"color: #628c2a; font-size: 85%; font-weight: =
700; line-height: 122%; margin: 10px 0;">MARKETPLACE</div>
      <div id=3D"ads" style=3D"margin-bottom: 10px;">
                  <div class=3D"ad" style=3D"color: #628C2A; font-family: A=
rial; font-weight: 700; padding: 0 0;">
            <p><a href=3D"http://us.ard.yahoo.com/SIG=3D15ok560h9/M=3D49306=
4.13983314.14041046.13298430/D=3Dgroups/S=3D1705016061:MKP1/Y=3DYAHOO/EXP=
=3D1275750880/L=3D4ca1f0d0-70a4-11df-856b-4bc0550acf3f/B=3DDxF3n2KImoo-/J=
=3D1275743680709374/K=3DGU4yDdxltKpfeH1SZmjVNw/A=3D6060255/R=3D0/SIG=3D1194=
m4keh/*http://us.toolbar.yahoo.com/?.cpdl=3Dgrpj">Stay on top of your group=
 activity without leaving the page you're on - Get the Yahoo! Toolbar now.<=
/a></p> <script language=3Djavascript>
if(window.yzq_d=3D=3Dnull)window.yzq_d=3Dnew Object();
window.yzq_d['DxF3n2KImoo-']=3D'&U=3D13ci4617c%2fN%3dDxF3n2KImoo-%2fC%3d493=
064.13983314.14041046.13298430%2fD%3dMKP1%2fB%3d6060255%2fV%3d1';
</script><noscript><img width=3D1 height=3D1 alt=3D"" src=3D"http://us.bc.y=
ahoo.com/b?P=3D4ca1f0d0-70a4-11df-856b-4bc0550acf3f&T=3D1d92jp6ff%2fX%3d127=
5743680%2fE%3d1705016061%2fR%3dgroups%2fK%3d5%2fV%3d2.1%2fW%3dH%2fY%3dYAHOO=
%2fF%3d2954961858%2fH%3dY29udGVudD0iR3JvdXBzO1dlYnNpdGVfU2VydmljZXM7UG9sbHM=
7QnJpZWZjYXNlO0ZsaWNrcjtHZW9jaXRpZXM7UGhvdG9zO1lhaG9vX1RlY2g7TWVtYmVyX0Rpcm=
VjdG9yeTtQb2RjYXN0czsiIGRpc2FibGVzaHVmZmxpbmc9IjEiIHNlcnZlSWQ9IjRjYTFmMGQwL=
TcwYTQtMTFkZi04NTZiLTRiYzA1NTBhY2YzZiIgc2l0ZUlkPSIyNzk2MDUxIiB0U3RtcD0iMTI3=
NTc0MzY4MDcwMzQyNSIg%2fQ%3d-1%2fS%3d1%2fJ%3d3E5EC442&U=3D13ci4617c%2fN%3dDx=
F3n2KImoo-%2fC%3d493064.13983314.14041046.13298430%2fD%3dMKP1%2fB%3d6060255=
%2fV%3d1"></noscript>          </div>
                          <div class=3D"ad" style=3D"color: #628C2A; font-f=
amily: Arial; font-weight: 700; padding: 0 0;">
                          <hr style=3D"border: 1px solid #d8d8d8;">
                        <p><a href=3D"http://us.ard.yahoo.com/SIG=3D15onqtc=
j8/M=3D493064.13814537.14041040.10835568/D=3Dgroups/S=3D1705016061:MKP1/Y=
=3DYAHOO/EXP=3D1275750880/L=3D4ca1f0d0-70a4-11df-856b-4bc0550acf3f/B=3DEBF3=
n2KImoo-/J=3D1275743680709374/K=3DGU4yDdxltKpfeH1SZmjVNw/A=3D6078812/R=3D0/=
SIG=3D114ae4ln1/*http://dogandcatanswers.yahoo.com/">Get great advice about=
 dogs and cats.  Visit the Dog & Cat Answers Center.</a></p><script languag=
e=3Djavascript>
if(window.yzq_d=3D=3Dnull)window.yzq_d=3Dnew Object();
window.yzq_d['EBF3n2KImoo-']=3D'&U=3D13c9qp043%2fN%3dEBF3n2KImoo-%2fC%3d493=
064.13814537.14041040.10835568%2fD%3dMKP1%2fB%3d6078812%2fV%3d1';
</script><noscript><img width=3D1 height=3D1 alt=3D"" src=3D"http://us.bc.y=
ahoo.com/b?P=3D4ca1f0d0-70a4-11df-856b-4bc0550acf3f&T=3D1d9e0h993%2fX%3d127=
5743680%2fE%3d1705016061%2fR%3dgroups%2fK%3d5%2fV%3d2.1%2fW%3dH%2fY%3dYAHOO=
%2fF%3d1074641247%2fH%3dY29udGVudD0iR3JvdXBzO1dlYnNpdGVfU2VydmljZXM7UG9sbHM=
7QnJpZWZjYXNlO0ZsaWNrcjtHZW9jaXRpZXM7UGhvdG9zO1lhaG9vX1RlY2g7TWVtYmVyX0Rpcm=
VjdG9yeTtQb2RjYXN0czsiIGRpc2FibGVzaHVmZmxpbmc9IjEiIHNlcnZlSWQ9IjRjYTFmMGQwL=
TcwYTQtMTFkZi04NTZiLTRiYzA1NTBhY2YzZiIgc2l0ZUlkPSIyNzk2MDUxIiB0U3RtcD0iMTI3=
NTc0MzY4MDcwMzQyNSIg%2fQ%3d-1%2fS%3d1%2fJ%3d3E5EC442&U=3D13c9qp043%2fN%3dEB=
F3n2KImoo-%2fC%3d493064.13814537.14041040.10835568%2fD%3dMKP1%2fB%3d6078812=
%2fV%3d1"></noscript>          </div>
                          <div class=3D"ad" style=3D"color: #628C2A; font-f=
amily: Arial; font-weight: 700; padding: 0 0;">
                          <hr style=3D"border: 1px solid #d8d8d8;">
                        <p><a href=3D"http://us.ard.yahoo.com/SIG=3D15o4nur=
g7/M=3D493064.14012770.13963757.13298430/D=3Dgroups/S=3D1705016061:MKP1/Y=
=3DYAHOO/EXP=3D1275750880/L=3D4ca1f0d0-70a4-11df-856b-4bc0550acf3f/B=3DERF3=
n2KImoo-/J=3D1275743680709374/K=3DGU4yDdxltKpfeH1SZmjVNw/A=3D6093983/R=3D0/=
*http://us.lrd.yahoo.com/_ylc=3DX3oDMTFnaW51Y3EyBHRtX2RtZWNoA1RleHQgTGluawR=
0bV9sbmsDVTExMjc3MDUEdG1fbmV0A1lhaG9vIQ--/SIG=3D1219e5kan/**http%3A//toolba=
r.yahoo.com/tour%3Ftab=3Dwc%26.intl=3Dus%26.cpdl=3Dwc">Get real-time World =
Cup coverage on the Yahoo! Toolbar.  Download now to win a signed team jers=
ey!</a></p> <script language=3Djavascript>
if(window.yzq_d=3D=3Dnull)window.yzq_d=3Dnew Object();
window.yzq_d['ERF3n2KImoo-']=3D'&U=3D13c7u46as%2fN%3dERF3n2KImoo-%2fC%3d493=
064.14012770.13963757.13298430%2fD%3dMKP1%2fB%3d6093983%2fV%3d1';
</script><noscript><img width=3D1 height=3D1 alt=3D"" src=3D"http://us.bc.y=
ahoo.com/b?P=3D4ca1f0d0-70a4-11df-856b-4bc0550acf3f&T=3D1d8r39d55%2fX%3d127=
5743680%2fE%3d1705016061%2fR%3dgroups%2fK%3d5%2fV%3d2.1%2fW%3dH%2fY%3dYAHOO=
%2fF%3d515772043%2fH%3dY29udGVudD0iR3JvdXBzO1dlYnNpdGVfU2VydmljZXM7UG9sbHM7=
QnJpZWZjYXNlO0ZsaWNrcjtHZW9jaXRpZXM7UGhvdG9zO1lhaG9vX1RlY2g7TWVtYmVyX0RpcmV=
jdG9yeTtQb2RjYXN0czsiIGRpc2FibGVzaHVmZmxpbmc9IjEiIHNlcnZlSWQ9IjRjYTFmMGQwLT=
cwYTQtMTFkZi04NTZiLTRiYzA1NTBhY2YzZiIgc2l0ZUlkPSIyNzk2MDUxIiB0U3RtcD0iMTI3N=
Tc0MzY4MDcwMzQyNSIg%2fQ%3d-1%2fS%3d1%2fJ%3d3E5EC442&U=3D13c7u46as%2fN%3dERF=
3n2KImoo-%2fC%3d493064.14012770.13963757.13298430%2fD%3dMKP1%2fB%3d6093983%=
2fV%3d1"></noscript>          </div>
              </div>
    </div>
=20=20
<div id=3D"ft" style=3D"font-family: Arial; font-size: 11px; margin-top: 5p=
x; padding: 0 2px 0 0; clear: both;">
  <a href=3D"http://groups.yahoo.com/;_ylc=3DX3oDMTJkNmg3b3M0BF9TAzk3MzU5Nz=
E0BGdycElkAzI2ODQyNTMEZ3Jwc3BJZAMxNzA1MDE2MDYxBHNlYwNmdHIEc2xrA2dmcARzdGltZ=
QMxMjc1NzQzNjgw" style=3D"float: left;"><img src=3D"http://l.yimg.com/a/i/u=
s/yg/logo/us.gif" height=3D"15" width=3D"137" alt=3D"Yahoo! Groups" style=
=3D"border: 0;"/></a>
  <div style=3D"color: #747575; float: right;">Switch to: <a href=3D"mailto=
:[email protected]?subject=3DChange Delivery Format: Trad=
itional" style=3D"text-decoration: none;">Text-Only</a>, <a href=3D"mailto:=
[email protected]?subject=3DEmail Delivery: Digest" class=3D"m=
argin-rt" style=3D"text-decoration: none;">Daily Digest</a> &bull; <a href=
=3D"mailto:[email protected]?subject=3DUnsubscribe" style=
=3D"text-decoration: none;">Unsubscribe</a> &bull; <a href=3D"http://docs.y=
ahoo.com/info/terms/" style=3D"text-decoration: none;">Terms of Use</a></di=
v>
</div>

<!-- |**|end egp html banner|**| -->

  </div> <!-- ygrp-msg -->

  <!-- Sponsor -->
  <!-- |**|begin egp html banner|**| -->
  <div id=3D"ygrp-sponsor" style=3D"width:160px; float:right; clear:none; m=
argin:0 0 25px 0; background: #fff;">

<!-- Start Recommendations -->
<div id=3D"ygrp-reco">
     </div>
<!-- End Recommendations -->



  </div>   <!-- |**|end egp html banner|**| -->

  <div style=3D"clear:both; color: #FFF; font-size:1px;">.</div>
</div>

  <img src=3D"http://geo.yahoo.com/serv?s=3D97359714/grpId=3D2684253/grpspI=
d=3D1705016061/msgId=3D23740/stime=3D1275743680/nc1=3D6083913/nc2=3D5191953=
/nc3=3D4836039" width=3D"1" height=3D"1"> <br>

<div style=3D"color: #fff; height: 0;">__,_._,___</div>
<!--~-|**|PrettyHtmlEnd|**|-~-->

</body>

<!--~-|**|PrettyHtmlStart|**|-~-->
<head>
  <style type=3D"text/css">
  <!--
  #ygrp-mkp {
  border: 1px solid #d8d8d8;
  font-family: Arial;
  margin: 10px 0;
  padding: 0 10px;
}

#ygrp-mkp hr {
  border: 1px solid #d8d8d8;
}

#ygrp-mkp #hd {
  color: #628c2a;
  font-size: 85%;
  font-weight: 700;
  line-height: 122%;
  margin: 10px 0;
}

#ygrp-mkp #ads {
  margin-bottom: 10px;
}

#ygrp-mkp .ad {
  padding: 0 0;
}

#ygrp-mkp .ad a {
  color: #0000ff;
  text-decoration: none;
}
  #ygrp-sponsor #ygrp-lc {
  font-family: Arial;
}

#ygrp-sponsor #ygrp-lc #hd {
  margin: 10px 0px;
  font-weight: 700;
  font-size: 78%;
  line-height: 122%;
}

#ygrp-sponsor #ygrp-lc .ad {
  margin-bottom: 10px;
  padding: 0 0;
}

  a {
    color: #1e66ae;
  }

  #actions {
    font-family: Verdana;
    font-size: 11px;
    padding: 10px 0;
  }

  #activity {
    background-color: #e0ecee;
    float: left;
    font-family: Verdana;
    font-size: 10px;
    padding: 10px;
  }

  #activity span {
    font-weight: 700;
  }

  #activity span:first-child {
    text-transform: uppercase;
  }

  #activity span a {
    color: #5085b6;
    text-decoration: none;
  }

  #activity span span {
    color: #ff7900;
  }

  #activity span .underline {
    text-decoration: underline;
  }

  .attach {
    clear: both;
    display: table;
    font-family: Arial;
    font-size: 12px;
    padding: 10px 0;
    width: 400px;
  }

  .attach div a {
    text-decoration: none;
  }

  .attach img {
    border: none;
    padding-right: 5px;
  }

  .attach label {
    display: block;
    margin-bottom: 5px;
  }

  .attach label a {
    text-decoration: none;
  }
=20=20
  blockquote {
    margin: 0 0 0 4px;
  }

  .bold {
    font-family: Arial;
    font-size: 13px;
    font-weight: 700;
  }

  .bold a {
    text-decoration: none;
  }

  dd.last p a {
    font-family: Verdana;
    font-weight: 700;
  }

  dd.last p span {
    margin-right: 10px;
    font-family: Verdana;
    font-weight: 700;
  }

  dd.last p span.yshortcuts {
    margin-right: 0;
  }

  div.attach-table div div a {
    text-decoration: none;
  }

  div.attach-table {
    width: 400px;
  }

  div.file-title a, div.file-title a:active, div.file-title a:hover, div.fi=
le-title a:visited {
    text-decoration: none;
  }

  div.photo-title a, div.photo-title a:active, div.photo-title a:hover, div=
.photo-title a:visited {
    text-decoration: none;
  }

  div#ygrp-mlmsg #ygrp-msg p a span.yshortcuts {
    font-family: Verdana;
    font-size: 10px;
    font-weight: normal;
  }

  .green {
    color: #628c2a;
  }

  .MsoNormal {
    margin: 0 0 0 0;
  }

  o {
    font-size: 0;
  }

  #photos div {
    float: left;
    width: 72px;
  }

  #photos div div {
    border: 1px solid #666666;
    height: 62px;
    overflow: hidden;
    width: 62px;
  }

  #photos div label {
    color: #666666;
    font-size: 10px;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    width: 64px;
  }

  #reco-category {
    font-size: 77%;
  }

  #reco-desc {
    font-size: 77%;
  }

  .replbq {
    margin: 4px;
  }

  #ygrp-actbar div a:first-child {
   /* border-right: 0px solid #000;*/
    margin-right: 2px;
    padding-right: 5px;
  }

  #ygrp-mlmsg {
    font-size: 13px;
    font-family: Arial, helvetica,clean, sans-serif;
    *font-size: small;
    *font: x-small;
  }

  #ygrp-mlmsg table {
    font-size: inherit;
    font: 100%;
  }

  #ygrp-mlmsg select, input, textarea {
    font: 99% Arial, Helvetica, clean, sans-serif;
  }

  #ygrp-mlmsg pre, code {
    font:115% monospace;
    *font-size:100%;
  }

  #ygrp-mlmsg * {
    line-height: 1.22em;
  }

  #ygrp-mlmsg #logo {
    padding-bottom: 10px;
  }

  #ygrp-mlmsg a {
    color: #1E66AE;
  }

  #ygrp-msg p a {
    font-family: Verdana;
  }

  #ygrp-msg p#attach-count span {
    color: #1E66AE;
    font-weight: 700;
  }

  #ygrp-reco #reco-head {
    color: #ff7900;
    font-weight: 700;
  }

  #ygrp-reco {
    margin-bottom: 20px;
    padding: 0px;
  }

  #ygrp-sponsor #ov li a {
    font-size: 130%;
    text-decoration: none;
  }

  #ygrp-sponsor #ov li {
    font-size: 77%;
    list-style-type: square;
    padding: 6px 0;
  }=20

  #ygrp-sponsor #ov ul {
    margin: 0;
    padding: 0 0 0 8px;
  }

  #ygrp-text {
    font-family: Georgia;
  }

  #ygrp-text p {
    margin: 0 0 1em 0;
  }

  #ygrp-text tt {
    font-size: 120%;
  }

  #ygrp-vital ul li:last-child {
    border-right: none !important;=20
  }=20
  -->
  </style>
</head>

<!--~-|**|PrettyHtmlEnd|**|-~-->
</html>
<!-- end group email -->


--jW08auTRlYawDiEC-NH-zOBhiu6bcVm30hZ8hhF--