You are viewing a plain text version of this content. The canonical link for it is here.
Posted to httpclient-users@hc.apache.org by Hans Uhlig <hu...@uhlisys.com> on 2013/09/19 19:13:54 UTC

Having trouble getting data from server

I am connecting to an oddly configured server that sends CSV data both
chunked and compressed. Httpclient seems to only be decompressing the first
chunk and ignoring the rest. They are received but not available in the
response entity. How can I get access to the additional chunks?

Re: Having trouble getting data from server

Posted by Hans Uhlig <hu...@uhlisys.com>.
But they are not exposed to entity.getContent(), how do I access them?


On Thu, Sep 19, 2013 at 2:12 PM, Oleg Kalnichevski <ol...@apache.org> wrote:

> On Thu, 2013-09-19 at 13:56 -0700, Hans Uhlig wrote:
> > no, I am only getting the first of the 3 chunks of data. Which is the CSV
> > header. I should get 3 chunks of content, 1 header and 2 blocks of rows.
> > When I pull content via Entity.getContent() it only returns the CSV
> Header
> >
>
> I can clearly see at least two chunks (chunks in terms of HTTP chunk
> coding) making 14920 bytes of content. Given those chunks show up in the
> wire log they have been read and processed by HttpClient.
>
> Oleg
>
> >
> > On Thu, Sep 19, 2013 at 1:39 PM, Oleg Kalnichevski <ol...@apache.org>
> wrote:
> >
> > > On Thu, 2013-09-19 at 13:26 -0700, Hans Uhlig wrote:
> > > > They don't appear in the entity when I use getContent() is there
> another
> > > > way I should get the additional chunks?
> > > >
> > >
> > > What are you referring to as 'they'? Chunk headers? Chunk-coded content
> > > gets transparently decoded by HttpClient. Chunk headers are not
> supposed
> > > to appear in the content stream.
> > >
> > > Oleg
> > >
> > > >
> > > > On Thu, Sep 19, 2013 at 1:17 PM, Oleg Kalnichevski <olegk@apache.org
> >
> > > wrote:
> > > >
> > > > > On Thu, 2013-09-19 at 12:16 -0700, Hans Uhlig wrote:
> > > > >
> > > > > ...
> > > > >
> > > > > > 2013/09/19 12:14:59:908 PDT [DEBUG] wire - http-outgoing-0 <<
> > > "HTTP/1.1
> > > > > 200
> > > > > > OK[\r][\n]"
> > > > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > > > > "Content-Encoding: gzip[\r][\n]"
> > > > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > > > > "Transfer-Encoding: chunked[\r][\n]"
> > > > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > "[\r][\n]"
> > > > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > > > "6d[\r][\n]"
> > > > >
> > > > > ...
> > > > >
> > > > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > > > "39bd[\r][\n]"
> > > > >
> > > > > ...
> > > > >
> > > > > > 2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 <<
> > > "0[\r][\n]"
> > > > > > 2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 <<
> > > "[\r][\n]"
> > > > >
> > > > > As far as I can tell the server sends two chunks of data 0x6d +
> 0x39db
> > > > > in length and ten correctly terminates the stream. I also see
> nothing
> > > > > wrong in HttpClient's handling those chunks either.
> > > > >
> > > > > Oleg
> > > > >
> > > > >
> > > > >
> ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
> > > > > For additional commands, e-mail:
> httpclient-users-help@hc.apache.org
> > > > >
> > > > >
> > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
> > > For additional commands, e-mail: httpclient-users-help@hc.apache.org
> > >
> > >
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
> For additional commands, e-mail: httpclient-users-help@hc.apache.org
>
>

Re: Having trouble getting data from server

Posted by Oleg Kalnichevski <ol...@apache.org>.
On Thu, 2013-09-19 at 13:56 -0700, Hans Uhlig wrote:
> no, I am only getting the first of the 3 chunks of data. Which is the CSV
> header. I should get 3 chunks of content, 1 header and 2 blocks of rows.
> When I pull content via Entity.getContent() it only returns the CSV Header
> 

I can clearly see at least two chunks (chunks in terms of HTTP chunk
coding) making 14920 bytes of content. Given those chunks show up in the
wire log they have been read and processed by HttpClient.

Oleg

> 
> On Thu, Sep 19, 2013 at 1:39 PM, Oleg Kalnichevski <ol...@apache.org> wrote:
> 
> > On Thu, 2013-09-19 at 13:26 -0700, Hans Uhlig wrote:
> > > They don't appear in the entity when I use getContent() is there another
> > > way I should get the additional chunks?
> > >
> >
> > What are you referring to as 'they'? Chunk headers? Chunk-coded content
> > gets transparently decoded by HttpClient. Chunk headers are not supposed
> > to appear in the content stream.
> >
> > Oleg
> >
> > >
> > > On Thu, Sep 19, 2013 at 1:17 PM, Oleg Kalnichevski <ol...@apache.org>
> > wrote:
> > >
> > > > On Thu, 2013-09-19 at 12:16 -0700, Hans Uhlig wrote:
> > > >
> > > > ...
> > > >
> > > > > 2013/09/19 12:14:59:908 PDT [DEBUG] wire - http-outgoing-0 <<
> > "HTTP/1.1
> > > > 200
> > > > > OK[\r][\n]"
> > > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > > > "Content-Encoding: gzip[\r][\n]"
> > > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > > > "Transfer-Encoding: chunked[\r][\n]"
> > > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > "[\r][\n]"
> > > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > > "6d[\r][\n]"
> > > >
> > > > ...
> > > >
> > > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > > "39bd[\r][\n]"
> > > >
> > > > ...
> > > >
> > > > > 2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 <<
> > "0[\r][\n]"
> > > > > 2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 <<
> > "[\r][\n]"
> > > >
> > > > As far as I can tell the server sends two chunks of data 0x6d + 0x39db
> > > > in length and ten correctly terminates the stream. I also see nothing
> > > > wrong in HttpClient's handling those chunks either.
> > > >
> > > > Oleg
> > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
> > > > For additional commands, e-mail: httpclient-users-help@hc.apache.org
> > > >
> > > >
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
> > For additional commands, e-mail: httpclient-users-help@hc.apache.org
> >
> >



---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Having trouble getting data from server

Posted by Hans Uhlig <hu...@uhlisys.com>.
no, I am only getting the first of the 3 chunks of data. Which is the CSV
header. I should get 3 chunks of content, 1 header and 2 blocks of rows.
When I pull content via Entity.getContent() it only returns the CSV Header


On Thu, Sep 19, 2013 at 1:39 PM, Oleg Kalnichevski <ol...@apache.org> wrote:

> On Thu, 2013-09-19 at 13:26 -0700, Hans Uhlig wrote:
> > They don't appear in the entity when I use getContent() is there another
> > way I should get the additional chunks?
> >
>
> What are you referring to as 'they'? Chunk headers? Chunk-coded content
> gets transparently decoded by HttpClient. Chunk headers are not supposed
> to appear in the content stream.
>
> Oleg
>
> >
> > On Thu, Sep 19, 2013 at 1:17 PM, Oleg Kalnichevski <ol...@apache.org>
> wrote:
> >
> > > On Thu, 2013-09-19 at 12:16 -0700, Hans Uhlig wrote:
> > >
> > > ...
> > >
> > > > 2013/09/19 12:14:59:908 PDT [DEBUG] wire - http-outgoing-0 <<
> "HTTP/1.1
> > > 200
> > > > OK[\r][\n]"
> > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > > "Content-Encoding: gzip[\r][\n]"
> > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > > "Transfer-Encoding: chunked[\r][\n]"
> > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> "[\r][\n]"
> > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > "6d[\r][\n]"
> > >
> > > ...
> > >
> > > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > "39bd[\r][\n]"
> > >
> > > ...
> > >
> > > > 2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 <<
> "0[\r][\n]"
> > > > 2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 <<
> "[\r][\n]"
> > >
> > > As far as I can tell the server sends two chunks of data 0x6d + 0x39db
> > > in length and ten correctly terminates the stream. I also see nothing
> > > wrong in HttpClient's handling those chunks either.
> > >
> > > Oleg
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
> > > For additional commands, e-mail: httpclient-users-help@hc.apache.org
> > >
> > >
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
> For additional commands, e-mail: httpclient-users-help@hc.apache.org
>
>

Re: Having trouble getting data from server

Posted by Oleg Kalnichevski <ol...@apache.org>.
On Thu, 2013-09-19 at 13:26 -0700, Hans Uhlig wrote:
> They don't appear in the entity when I use getContent() is there another
> way I should get the additional chunks?
> 

What are you referring to as 'they'? Chunk headers? Chunk-coded content
gets transparently decoded by HttpClient. Chunk headers are not supposed
to appear in the content stream.

Oleg 

> 
> On Thu, Sep 19, 2013 at 1:17 PM, Oleg Kalnichevski <ol...@apache.org> wrote:
> 
> > On Thu, 2013-09-19 at 12:16 -0700, Hans Uhlig wrote:
> >
> > ...
> >
> > > 2013/09/19 12:14:59:908 PDT [DEBUG] wire - http-outgoing-0 << "HTTP/1.1
> > 200
> > > OK[\r][\n]"
> > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > "Content-Encoding: gzip[\r][\n]"
> > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > > "Transfer-Encoding: chunked[\r][\n]"
> > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 << "[\r][\n]"
> > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > "6d[\r][\n]"
> >
> > ...
> >
> > > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > "39bd[\r][\n]"
> >
> > ...
> >
> > > 2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 << "0[\r][\n]"
> > > 2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 << "[\r][\n]"
> >
> > As far as I can tell the server sends two chunks of data 0x6d + 0x39db
> > in length and ten correctly terminates the stream. I also see nothing
> > wrong in HttpClient's handling those chunks either.
> >
> > Oleg
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
> > For additional commands, e-mail: httpclient-users-help@hc.apache.org
> >
> >



---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Having trouble getting data from server

Posted by Hans Uhlig <hu...@uhlisys.com>.
They don't appear in the entity when I use getContent() is there another
way I should get the additional chunks?


On Thu, Sep 19, 2013 at 1:17 PM, Oleg Kalnichevski <ol...@apache.org> wrote:

> On Thu, 2013-09-19 at 12:16 -0700, Hans Uhlig wrote:
>
> ...
>
> > 2013/09/19 12:14:59:908 PDT [DEBUG] wire - http-outgoing-0 << "HTTP/1.1
> 200
> > OK[\r][\n]"
> > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > "Content-Encoding: gzip[\r][\n]"
> > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> > "Transfer-Encoding: chunked[\r][\n]"
> > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 << "[\r][\n]"
> > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> "6d[\r][\n]"
>
> ...
>
> > 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> "39bd[\r][\n]"
>
> ...
>
> > 2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 << "0[\r][\n]"
> > 2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 << "[\r][\n]"
>
> As far as I can tell the server sends two chunks of data 0x6d + 0x39db
> in length and ten correctly terminates the stream. I also see nothing
> wrong in HttpClient's handling those chunks either.
>
> Oleg
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
> For additional commands, e-mail: httpclient-users-help@hc.apache.org
>
>

Re: Having trouble getting data from server

Posted by Oleg Kalnichevski <ol...@apache.org>.
On Thu, 2013-09-19 at 12:16 -0700, Hans Uhlig wrote:

...

> 2013/09/19 12:14:59:908 PDT [DEBUG] wire - http-outgoing-0 << "HTTP/1.1 200
> OK[\r][\n]"
> 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> "Content-Encoding: gzip[\r][\n]"
> 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
> "Transfer-Encoding: chunked[\r][\n]"
> 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 << "[\r][\n]"
> 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 << "6d[\r][\n]"

...

> 2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 << "39bd[\r][\n]"

...

> 2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 << "0[\r][\n]"
> 2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 << "[\r][\n]"

As far as I can tell the server sends two chunks of data 0x6d + 0x39db
in length and ten correctly terminates the stream. I also see nothing
wrong in HttpClient's handling those chunks either.
  
Oleg


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org


Re: Having trouble getting data from server

Posted by Hans Uhlig <hu...@uhlisys.com>.
Running com.aol.sophia.etl.parameter.source.DataManagerSourceTest
testDdmMlsFetch ==========================================================
2013/09/19 12:14:59:510 PDT [INFO] Channel MLS-DDM-TEST - Starting
Processing for hourperiod 383227
2013/09/19 12:14:59:518 PDT [INFO] Channel MLS-DDM-TEST - Reading Channel
data from
http://adl-ddm.advertising.aol.com:50000/ddm/ml?campaign_id=44461%2C56312
2013/09/19 12:14:59:537 PDT [DEBUG] RequestAddCookies - CookieSpec
selected: best-match
2013/09/19 12:14:59:549 PDT [DEBUG] RequestAuthCache - Auth cache not set
in the context
2013/09/19 12:14:59:550 PDT [DEBUG] PoolingHttpClientConnectionManager -
Connection request: [route: {}->http://adl-ddm.advertising.aol.com:50000][total
kept alive: 0; route allocated: 0 of 2; total allocated: 0 of 20]
2013/09/19 12:14:59:568 PDT [DEBUG] PoolingHttpClientConnectionManager -
Connection leased: [id: 0][route:
{}->http://adl-ddm.advertising.aol.com:50000][total kept alive: 0; route
allocated: 1 of 2; total allocated: 1 of 20]
2013/09/19 12:14:59:574 PDT [DEBUG] MainClientExec - Opening connection {}->
http://adl-ddm.advertising.aol.com:50000
2013/09/19 12:14:59:727 PDT [DEBUG] HttpClientConnectionManager -
Connecting to adl-ddm.advertising.aol.com/172.20.192.123:50000
2013/09/19 12:14:59:803 PDT [DEBUG] MainClientExec - Executing request GET
/ddm/ml?campaign_id=44461%2C56312 HTTP/1.1
2013/09/19 12:14:59:803 PDT [DEBUG] MainClientExec - Target auth state:
UNCHALLENGED
2013/09/19 12:14:59:804 PDT [DEBUG] MainClientExec - Proxy auth state:
UNCHALLENGED
2013/09/19 12:14:59:805 PDT [DEBUG] headers - http-outgoing-0 >> GET
/ddm/ml?campaign_id=44461%2C56312 HTTP/1.1
2013/09/19 12:14:59:805 PDT [DEBUG] headers - http-outgoing-0 >>
Accept-Encoding: gzip
2013/09/19 12:14:59:805 PDT [DEBUG] headers - http-outgoing-0 >> Host:
adl-ddm.advertising.aol.com:50000
2013/09/19 12:14:59:805 PDT [DEBUG] headers - http-outgoing-0 >>
Connection: Keep-Alive
2013/09/19 12:14:59:805 PDT [DEBUG] headers - http-outgoing-0 >>
User-Agent: Sophia v0.0.1
2013/09/19 12:14:59:806 PDT [DEBUG] wire - http-outgoing-0 >> "GET
/ddm/ml?campaign_id=44461%2C56312 HTTP/1.1[\r][\n]"
2013/09/19 12:14:59:806 PDT [DEBUG] wire - http-outgoing-0 >>
"Accept-Encoding: gzip[\r][\n]"
2013/09/19 12:14:59:806 PDT [DEBUG] wire - http-outgoing-0 >> "Host:
adl-ddm.advertising.aol.com:50000[\r][\n]"
2013/09/19 12:14:59:806 PDT [DEBUG] wire - http-outgoing-0 >> "Connection:
Keep-Alive[\r][\n]"
2013/09/19 12:14:59:806 PDT [DEBUG] wire - http-outgoing-0 >> "User-Agent:
Sophia v0.0.1[\r][\n]"
2013/09/19 12:14:59:806 PDT [DEBUG] wire - http-outgoing-0 >> "[\r][\n]"
2013/09/19 12:14:59:908 PDT [DEBUG] wire - http-outgoing-0 << "HTTP/1.1 200
OK[\r][\n]"
2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
"Content-Encoding: gzip[\r][\n]"
2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
"Transfer-Encoding: chunked[\r][\n]"
2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 << "[\r][\n]"
2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 << "6d[\r][\n]"
2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
"[0x1f][0x8b][0x8][0x0][0x0][0x0][0x0][0x0][0x0][0xff]%[0x89]Q[0xe]C![0x8][0x4][0xff]{[0x16][0xef]dx[0xb8]5$[0xa0]D[0xd1]^[0xbf][0xd5]~[0xed][0xec][0xc][0x93]9ImYJ[0xa2]RG_[0xfe][0xc7][0x89][0xb1][0x85]q[0x8e][0xa1][0x8][0x1d][0xf8][0xe0][0x99][0x12][0xd7]M[0xed]q[0x17][0xd5][0xd0].n[0xd2][0x85][0xc4][0xdd][0x8e]H[0x5][0x93][0x87]x[0xf4][0x91][0xc8]][0x85][0xe9]Q[0xe4][0x10][0xc3]/[0xbd]iiH[0xab]Y[0xb1][0xa1][0xaf]/T[0xd6][0xfc]<[0x85][0x0][0x0][0x0][\r][\n]"
2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 << "39bd[\r][\n]"
2013/09/19 12:14:59:910 PDT [DEBUG] wire - http-outgoing-0 <<
"[0x1f][0x8b][0x8][0x0][0x0][0x0][0x0][0x0][0x0][0xff][0xad][0x9d]K[0xae]e[0xb9][0xad]`[0xfb]5[0x96]|[0x80]~[0xfc][0xb5]k[0x2][0xd5][0xa8]~[0xcd][0x16]E[0x9d][0xb3][0xa5]}2m[0x3][0xef][0x5][0x97]md[0x18]qo.[0x88][0xdc][0x14]EQ[0x14]%:[0xfb][0xf8][0xab][0xfd][0xd5][0xff][0xea][0xdd][0x86][0xd9][0xfa][0xab][0x87][0xf4][0xbf][0xe2][0xaf][0x91][0xf5][0xbf][0xff][0xcf][0xff][0x1b][0xad][0xcf][0x16]=[0xfe]o[0x1f][0xb3][0xb5][0xfd]W[0xfd][0xfd][0xaf][0xf2]_[0xfd]_[0xf2][0x9f]
[0xbd][0xfb][0x84]8[0xab][0xc4]Y][0xdd][0xcb]R[0x1d]JY[0xac][0x1f]PM.s_u[0xb9][0xe][0xa5],[0xd7][0xf][0xa8]&[0xd7][0xe8]"[0x80]`[0xa3][0xeb]j[0x8b][0xc3][0xd4][0xb4][0xa3][0x9e]Dy4[0x17]S[0x1d][0xcd][0x1c][0x80]n.[0xa6]h9][0x96][0x8d][0xba]%w[0x89][0xd5]8L}F[0xfc][0x90][0x8a]S][0xc6][\n]"
2013/09/19 12:14:59:911 PDT [DEBUG] wire - http-outgoing-0 <<
"M[0xd2][0x8d][0xc6][0x80][0xdc][0xea][0x1c][0xab][0xeb][0xfa]`[0x0][\r][0xa9]-[0xc0][0x86][0xe][0xa6][0xfe][0xf1][0xc5]U[0x1][0xf7][0x9c][0x98][0xa8][0xaf][0xc9][0x17]S[0x97]K[0x9b][0xcc][0xba][0xeb]0[0xed][0xc3][0x0][0xf5][0x1c][0xc]
[0xd7]K*[0x9a]b[0x9a]P[0x0]~[0xe8]`[0xea][0xa2]Y[0x9f]s[0xfc][0xff][\n]"
2013/09/19 12:14:59:911 PDT [DEBUG] wire - http-outgoing-0 << "g@
[0xf9];R$[0xad]1[0x1][0xb3]>[0x18]@G/[0xa9][0xf8][0xf9]m[0x89][0xcb]G[0xdb][0xc1][0x80][0xf2]w[0xb4]H[0xb2][0xe5][0x83]X>[0xe][0xa8][0xba]|[0x98][0x8f]1[0x81][0xcf][0x1f]m[0x0]3[0xed]`[0x80][0x18][0xb8]Y[0xef][0x84][0xa2][0xbd][0x85][0x0][\n]"
2013/09/19 12:14:59:911 PDT [DEBUG] wire - http-outgoing-0 <<
":[0x18]B[0xb2]K[0xaa]n[[0xba][0xf7][0x85][0xe8][0xe8][0x1]U[0x8d][0xd1]ggf[0x87][0xaf][0x1e][0xc0][0xd2]x0[0xc0]G{I[0xd5][0x8f][0x96][0xbe][0x88][0xd8]l>[0x18]@[0xb4][0xc][0x1d][0x1d][0xf9]h[0xb2][0x88][0xc0][0xf1]`[0x8][0xc9][0xd6][0xc7][0xed]W[0x7][0xa4]F9[0xb5][0x97]T[0xb5]"[0xb5][0xc9][0xb8]G[0x8d][0x6][0xb8][0xc7][0xc8]_RDG?[0xa4][0xa2][0x8e][0xa2][0xeb][0xaa]'[\n]"
2013/09/19 12:14:59:911 PDT [DEBUG] wire - http-outgoing-0 <<
".[0x6][0x10]m[0xa8]#[0x1f][0xed][0x80][0xaa][0xfe]:[0xe6][0x92]@[0x6]4c!+[0xd1][0x1][0x95]%[[0xe]$[0x89],[0xa4]7[0xe5]0[0x80][0x9][0xe9][0x1a][0x88][0xb3]>[0xa0][0xb2][0xa2]u[0xcd][0x6][\r][0xe8][0x3][0xaa][0xf]([0x90]/[0xff]`[0x88]O[0x16][0xe]l[0xd0]"[0xb7][0xb1][0xc0]bv0[0x80]\/[0xa9][0xea][0xa8]s[0xce]3n[0xe8][0x1][0x95]m([0x9c][0xd8]T[0x1d]LY[0xd7][0xde]z[0xfa][0xfc][0xf2][0x80].[0x86][0x1b]P[0xf9][0xe3]{[0x1b][0xdf][0xe4]L5[0xa5][0xe2]-[0xe3][0xd8][0x9]X[0xd1][0x5][0x15][0xad][0xe8][0xc3][0xa9]ob.[0x6][0xf8]h/[0xa9][0xfa][0xd1]d[0xea][0x0]23[0x17]T[0xce][0xcc]$)[0x9c][0xd0][0xb6]N[0x1]1[0xc0]G{I[0xd5][0x8f][0xe6][0xcd][0xea][0xc1][0xcc][0xc5][0x0][0xa2][0xbd][0xa4][0xb2]h[0xb][0x8][0xf5]/[0x86][0x10][0xed][0x92][0x8a][0xa2][0xf5][0xd6][0x81][0xf0][0xe1]b[0xea][0xa2][0xf5]6[0x81][0x13][0xcf][0x8b][0xe1][0x6]D[0xe8]zE=7s1[0x84]h2[0x85]X[0xd3][0xe][0xa8][0xba][0xa6][0xed][0xff][0x83],[0xb2][0x7]D[0xc][0x88][0xb0][0xc6][0x7][0x3]|[0xb2][0x97]T[0xb5][0xc6]n[0x93][0xd2][0xf5]dt[0x1d]Z?$[0xb8][0x18]@[0xd7]::[0xf1][0xf1][0x1f][0xc]7
[0xe0][0xe3][0xab][0x1b][0x91]Q[0xb9][0xa0][0xf2][0xc7]ON}[0xff]y1[0x84][0xae][0x9d][0xd9]z[0xb7][0x86]d[0xc0]/[0xa8][0xac]ks[0xe0][0xcc][0xea]b[0x0]][0xbf][0xa4][0xaa][0xae][0xdd]'[0x10][0x84][0xf6][0x90]E[0x94][0xf1]\P[0xf5][0x93][0x8d][0xd6][0x80][0xb3][0x86][0x8b][0xa9][0xb2][0xd1][0x16]P[0xfb]w1[0xdc][0x80][0xea]64FS!R[0x6][0x7][0xd4][0xab]U[0x18]IZ[0x1d]q![0x7]T[0xb6]G[0x99]@%[0xe0][0xc5][0x0][0x9f]_T[0x91][0x1]}1[0xdc][0x80][0x0]{[0xd4][0xc][0xaf][0x91][0x8f][0xff][0x80][0xca][0x1f]_[0x89]c[0x8b][0x8b][0x1]t[0xfd][0x92][0xca][0xba]v1"[0xf3]t@
[0xbd][0x9c]y[0x1a][0xae][0xc0][0x89][0xc3][0xc5][0x0][0xda]v[0xa2][0xe4][0xe5]b[0x80][0x1][0xc5][0xa2][0xbc][0xc8]K*[0x1a][0xd2][0xec]K[0x90]I{@[0xd5]I;[0x87]0[0xf9][0xeb][0x3]"[0x6][0x4][0xec][0xae][0xe][0xa6][0xfe][0xf1]H[0xd5][0x8f][0xaf][0xb]([0xc2][0xb9][0x18]@4[0xb]"[0xa9]6[0xa3]90[0xf3][0xf][0x6][0x90][0xeb]%U?Y(R[0xec]vA[0xe5][0xe9][0x91][0x1c]
[0xe2]?[0x18]B[0xd7][0x97]T[0xd4][0xf5][0x92]>[0x88]C[0xfd][0xb][0xaa][0xea]zs[0x80]$[0xf8][0xc1][0x10][0x1a]Z[0x6]L[0xb4][0x83][0xa9][0xfc][0x1f]RU[0xb4][0xc7][0x15][0xd5]?[0xfe][0x3]*[0xfc][0xe4][0x0][0x13][0xed]`[0x0]][0xbb][0xf]FC[0xf][0xa8][0xac][0xa1][0xb0]E[0x14][0x96]][0x10]1
`[0xb3]'[0x1d]9[0xd6];[0x98][0xfa][0x97][0xff]![0x15]g[0x99]<[0xa5][0xd2]U[0xd1][0x1e][0xc]
[0xda]K[0xaa][0x8a][0xb6][0xbe][0x89][0xd9][0xb2]5[0x1e]P[0xd5][0x1a][0xb5]1[0x97]6\[0xc7][0x1a][0xc0]G[0xd3][0x99]?C[0xc6][0xf3][0x80][0xca][\n]"
2013/09/19 12:14:59:911 PDT [DEBUG] wire - http-outgoing-0 <<
"[0x9a]6[0x0][0xf]{0uc[0xfc]![0x15][0x8d]Q[0xf3][0xe3][0x3][0x81][0xf5][0xc1][0x0][0xa2][0xbd][0xa4][0xb2]h[0xd1][0x91]yv@e3[0x8a][0xc6][0xac][0x8b][0x7]D[0xc][0x88][0xb0][0xeb][0x7][0x3]|[0xfc][0x97]T[0xfc][0xf8][0xd6]f'j&/[0xa8][0xaa]k[0xeb][0xf9][0x97]u][0x1f]L][0xd7][0x9b][0x4][0x4][0xf][0x7][0xc3][\r][0x8][0xf8][0xf8][0xa3][0x13]v}0[0x80]h/[0xa9]*[0xda][0x9c]@[0xe7][0x94][0x8b][0x1]D[][0x81]\[0xfa][0xc1]p[0x3][0x2]t[0x9d][0xa4]z[0xeb][0x81][0x8b]aDC[0x9a][0x18][0xb8][0xa9]*[0xb2][0x14][0x1d]P[0xd9]=[0xc6]B[0xcc]([0xbe][0xa5]<E[0x8c][0xb7][0xa1][0xc8][0xf1][0xf9][0x1]U[0xd5][0xb3]9[0x80])[0xfa]0Er[0xe8][0x7]T[0x96]k[0x8d][0xe]|[0xf6][0x83][0xa9]O[0xb1][0x1f]Rq[0x8a]m[0x12][0xb0][0xbe][0x1e][0xc]#[0x1a][0xb3][0xbe][0xfa][0x9a][0x1d]8[0x1e]8[0x18]B[0xb4]K*[0x8b][0xb6][0x1c][0xa8][0xe1];[0x18]B[0xb4]K*[0x8b][0xa6]D}[0xfb][0xc1][0x10][0xa2])T[0xdf][0xee][0xd2][0x88]"[0xf0][0x83][0x1]D{Ie[0xd1]:[0xe2]F[0x1e][0xc]!Z[0xa7][0xdc][0x88][0x18]Q[0x82]u0[0x84]h[0x6][0x95]`[0xb9]8r[0xf][0xf5][0x82][0xca][0xb][0xad]x
9[0xb5][0x3]*[0xf]H[0xb5]#I[0xc7][0x3]"[0x6]D[0x84][0x8e][0xf][0x6][0xb0][0xc6][0x97]T[0xb5]Fu[0xa0]O[0xd4][0xc5][0x0][0x3][0xb2]A[0xdc][0xd7]<[0x18]@[0xd7]/[0xe9][0xf]E[0x1b]K[0xe7]zz[0x89][0xf6]?[0x15][0xec][0xef][0x90]?[0x17][0xeb][0xe1][0x98][}0[0xf][0x84][0x1a]LY[0xc3][0xdf][0xf6][0x9f]u[0xa9][0xbe][0x94][0x9a]LO[0x7][0xd1][0xea]`.[0xa6][0xac][0xe4]O[0x13][0xd1][0x9][0xc][0xe8][0xc1][0xd4]F[0xf3]i"[0xaa][0xe5][0xd1]\Ly4[0xb9]O
F[0xf3][0xc5][0x94]?[0xd6]/[0xa9]6'[0xd4]g[0x1b][0x3][0x10][0xed][0xc1][0x0][0xa2][0xbd][0xa4][0xa2]h[0xd1]V[0xd4][0xbd][0xd8][0xc5][0x14][0x9d]X[0xdb][0xed][0xc9][0xf2]/[0xfe]8l[0xf9]'[0xe8]O[0xc3][0x96][0xc3][0xe9][0x12][0x9f][0xe2][0xfc][0xa2];<[0x98][0xba][0x9b][0xff]![0x15][0x1d][0xfd][0xe8]s[0x2][0x9e][0xfe]`[0xea][0xa2][0x8d][0xd5][0x9c][0x18][0xd0][0x83][0xe1][0x6]T[0xd7][0xf5][0x8c][0x9d][0x1c]*[0x8b]v0u[0xd1]~Hu[0xd1][0x86]![0xa2]}0[0x88]h[0x87]T[0x14]m[0x8d][0xdd][0xa0][0xaa],[0xda][0xc1][0xd4]E[&[0x2][0xe8][0xfa]`[0xb8][0x1][0xd5]u[0xbd][0xdb][0x0][0x6][0xe1][0xf9]E[0x9a][0xed][0xbf][0xf8][0xe3][0xeb]Y[0xff][0x4][0xf5]?[0xbe][0x9e][0xf5]K[0x2]v[\n]"
2013/09/19 12:14:59:912 PDT [DEBUG] wire - http-outgoing-0 <<
"[0x7]SW[0xb6].[0xb][0xc0][0xb0][0xf][0xa6]nG?[0xa4][0xaa]h[0xb6][0x88]E[0xe4]`[0xea][0xa2][0xd9][0xea][0xe][0xe8][0xfa]`[0xb8][0x1][0xd5]u[0x9d][0xa8][0xcf][0xc6][0xa1]<g[0xf][0xa8][0x1a][0xad][0x99]/`[0xb][0x92][0x98][0xdd]D[0xa1][0xff][0xf9]-[0xaf][0x82][0xfa][0x1f][0xdf][0xf2][0xba][0xa4]PY[0x80]d[0xf][0x6]H7[0xb4][0xf9][0xf5][0xd7]U[0x1d]y[[0x3][0xf8]f[0x7]CHvI[0xd5]TJ[0xb]
[p1[0x84]h[0x97][0x4][0x88][0x6][0xec][0x8b][0xe][0x86][0x11][0x8d][0xd9][0x17]%)[0x16][0xe1][0xd5][0xe][0xa8][0xea][0xd5]6[0x87][0xd1]u`[0xba][0xe]H[0xd7][0xbd]E=[0xb1]r1[0x80]h/[0xa9]*[0xda][0xe8][0x84][0xc7][0xf6][0x91][0xda][0x6]0S:aC2&[0xb0][0x1]9[0x18][0xe0]{[0xbd][0xa4][0xea][0xf7][0x12][0x8d][0x86]L[0xfb][0x7]T[0x9e][0xf6]6>[0xfb][0x8f][0xf2][0xf9][0xc2][0x17]C[0x9c]0\RU[0xd7]I[0x2]6D[0x7][0xc3][0x88][0xc6]l[0xad][0xdc]c
[0xe7]'a[0xcc]"[0xf4][0x80][0xaa][0xd6][0x98][0xab]+[0xe1][0xce][0xe][0xa6][0xfe][0xc9]~H[0xc5]O[0xb6][[0xac]#I[0xe7][0x3]*[0xeb]:9[0xf5]s[0x9d][0x8b][0x1]t[0xfd][0x92][0xca][0xba][0xf6][0x6]8[0xb5][0x83]!D[0xbb][0xa4][0xaa]h[0x13]Y[0xf0]C[0xdb]'sU[0xb7][0xc6][0x7]T[0xb6]F[0xb5][0xcf][0x12][0xb][0xc][0xe8][0xb][0xaa][0xf](:3_[0x1f][0x10]1
b[0xbe]>[0x18][0xc0][0x14][0xcd][0x6]1
[0xef][0x13][0xc4][0x0][0x93]5[0xe6][0x0][0x82][0xe1][0x83]![0x6]$[\r]![0xa5][0x13][0x9a]V[0xcf][0x15]\[0xc]1
mDr[0xef][0x82][0x8a][0xb3][0xec][0xc3][0xa9][0xef]=.[0xa6]<[0xcb][0x92]d[0x1f]%[0x3][0x1a][0xfa][0x82][0xca][0x1a][0x9a][0xfb]nN]C[0xf][0x6][0xb0][0xa1][0x97]T[0xd5][0xf5][0xec]A|[0xfc][0x7][0x83][0x88][0x16][0x90][0x19]%[0xa9][0xee][0xd4].[0x86][0x11][\r]9
H[0xd2]RbO}A[0xf5][0x19][0xb2][0xb4][0xbe][0xf1][0xbc][0x18]B[0xd7][0x97]T[0xd6][0xb5][0x2]{[0xea][0x8b][0x1]D[[0x1d]8[0x8c]ILn[0xce]9[0xc]![0xd7]%U?Y[0x92]
[\r]Ak[0xfe]K[0xaa][0x8a]&[0x1d]8[0x1f][0xd8]o[0x86]|[0xac][0xb1][0xee]@[0x1e]P[0xd9][0x81]$[0x87][0xb0][0xc6][0x7][0x3]|[0xb2][0x97]T[0xfe]dS[0x89]S[0xcf][0xb][0xea][0xd5]S[0xcf][0xcf]+[0xac][0x84][0x15]=[0x18]@[0xdb]/[0xa9][0xaa]m[0x9b]L[0x99][0xab]7[0x1f]N[0x84]F[0xf][0x86][0x18][0x10]qdq1[0xdc][0x80][0x80][0xaf][0xe6][0xfb][0x81]@@[0xb4]/[0x86][0x10][0xed][0x92][0xea][0xa2])4[0xa6][0xf8]V[0xb7][0xd7][0x9d]v[0xc8][0x7]Q[0xd5][0xf6][0x83]!$[0xbb][0xa4][0xa2][0xb6]{[0x1f][0xcc][0xde][0xf1][0x80][0xaa][0xb][r[0x82][0xa8][0xbf][0xbb][0xa0][0xfa][0x80]lB[0x3][0xfa][0x82][0xca][0x3][0x1a]B[0xf8][0xd9][0x83][0xa9][[0xe3][0xf][0xa9]j[0x8d]S'0[0xd1][0xe][0x6][0x10][0xed]%[0x95]E[0xb3][0x5],F[0x7][0x3][0x88][0xb6][0xba]1[0xc1]H[0x92][0x1c][0xd8]>[0x1c][0xc]7
[0xe0][0xab][0x89][0x10];[0xa3][0xae]][0x81][0xe5][0xfa]`[0x0][\r][0xbd][0xa4][0xaa][0x86]4m[0x92][0x10][0xed][0x8b]!D[0xbb][0xa4][0xaa]h[0xd6][0x1b]q[0x2]vAe[0xcf]o[0x6]\;[0xbd][0x18]@[0xd7]9[0xd5][0x88]#[0xb9][0xb]*k[0xc8][0x17]p[0x2][0xe6]=[0x1a][0xb2][0xe]=[0x18]@[0xd1]/[0xa9]j[0xd4]I"[\n]"
2013/09/19 12:14:59:912 PDT [DEBUG] wire - http-outgoing-0 <<
":.[0xa8][0xfc][0xc9]b[0xf6][0xc6][0xc][0xe8][0xb][0xaa][0xf]hE[0xbd]r[0xe6][0xf3][0xa4][0x12][0xa4][0xe8]/[0xa8].[0x97][0x7]b[0xd4]_L[0xdd][0xa8]Gk[0x6]dU[0xe][0x86][0x18]P[0x10][0x99][0xe2][0x83][0xe1][0x6]T[0x9f][0xf6]#[0x88][0xec]b[0xe][0xa8]j[0x8d][0xc9]Y[0x80]5[0x1e][0xc][0xa0][0xeb][0x97]T[0xd5][0xf5]R[0xc4][0x8c][0x1e][0xc]
[0xda]K*[0x8b][0x16][0x9f][0x2][0xac][0xea][0xa5][0xb6][0xb][0xea][0xd5]Km>d[0x1][0xe5][0xa9][0x89][0x9]G[0x82][0xbd][0x3]*O[0x90][0xe4][0x0][0x1b][0xc6][0x83][0x1][0xac][0xe8]%U[0xad]H[0x1b]p[0x91][0xe0]b[0x0][0xd1]^RU4kJ[0xcc][0xfd][0x7][0x3][0x88][0xf6][0x92][0xca][0xa2][0xe9][0xe7][0x84][0xa7]>C[0xbc][0x1][0xbd][0xc].[0x6][0xd0][0xd1]K[0xaa][0xea][0x88][0x89][0x1d][0xf][0x6][0x10]-[0xa2]#;[0xb4][0x3]*[0xbb][0xb5][0xe4]
[0x1a][0xfa]b[0xea][0x1a][0xca][0x9f](0[0xa0][0x83][0xe1][0x6]T[0xb7][0xc6][0xd9]l
A[0xdf][0x94][0x6][0xdc][0x8d][0xbc][0x18]@G/[0xa9][0xaa]#[0x99][0xab]#:[0xd2]e[0x84][0x1d]=[0x18]@G/[0xa9][0xaa]#[0x8b]F[0x88][0xf6]`[0x0][0xd1]<[0x98][0xcc][0xdc][0xea]a([0xa8][0xea][0x1e]7[0x7][0x88][0xfa][0xe][0xa6][0xae][0xea][0x1f]R[0xd1][0x8a]v[0xfb][0x11]$!r@e
][0xf][0x19]@:uMm[0x88][0x97]=[0xa0][0xb2]\S;[0xb0]#Z[0xd3][0x1a][0x88][0x1]L[0xf1]%UMqA[0xb][0xe3][0x1][0x95]?[0xd9]2"[0xe1]|0[0x80][0xae]_RU[0xd7][0xd2][0x7]R[0xbf]@e]'[0x7]8??[0x18]@[0xd7]/[0xa9][0xac][0xeb]e[0x88]h_[0xc]![0xda]%[0xfd]S[0xb4][0xb6][0xf2]_[0x1b]#}[0xfe][0xea]?[0x92][0xc][0xb8][0x3]t1[0x80]h6[0x88]K[0xe][0x7][0xc3][0xc][0x88][0x9][0xaf]~HU[0x83][0xf4]F[0x4][0xc5][0x7][0x3][0x88][0x96]$"[0xbe]z0[0xc4][0x80][0x6][0xd0][0xfd][0xf0]b[0xb8][0x1][0x11][0x1f]?[0x84][0xf1][0xfc][0xf][0xa8][0xec][0xf9][0xc3][0x99]d[0xc8][0x1]U[0x7][0xb4];[0xbb]!q[0xc8][0x1][0x1][0x3]"B[0xc7][0x83][0xa9][[0xe3][0xf][0xa9]h[0x8d][0xf2][0xd4][0x3]VE{0[0x80]h/[0xa9]*[0xda][0x98][0x8a][0xd8][0xb5][0x8c][0xd5][0x90][0x14][0xef]~F[0x15]X[0x1c][0xf][0x6]P[0xf6]t&[\n]"
2013/09/19 12:14:59:913 PDT [DEBUG] wire - http-outgoing-0 <<
"[0x95]5[0x1a][0xb2][0x8b]=[0xa0][0xf2][0x94]][0xee]H[0x2][0xeb][0x80][0xca][0x3]2#V[0xb4][0x83][0x1][0xbe][0xbd]yg>[0x99]9[0x11]<[0x1c][0xc]"[0x19][0x94][0x9c][0x91][0xf4][0xb4][0xcc][0xfc]x@e+[0xda][0xae][0x1f][0xd0][0xf5][0x83][0x1]t[0xfd][0x92][0xca][0xba][0x8e][0x6]T[0x83][0x1e][0xc]![0xda]%UE[0xb]a[0xaa][0xf7][0xf][0xa8]lF[0xa1]D[0x12][0xeb]`[0x0]][0xbf][0xa4][0xb2][0xae][0x1d][0xf1][0xb3][0xf][0x86][0x10][0xcd][0xa1][0x9d][0xc3]&[0x11][0x8e][0xf6][0xc1]0[0xa2]1[0x8e]V[0xdb]d6E[0x7]T[0x9d]![0x9b][0x3]8[0xda][0x83][0xa9][0xeb][0xfa][0x87]T[0xd5]u[0x1f][0x8d]h[0xd0]sAe]'[0x7][0x8][0x8b][0xf][0x6][0xd1][0x10]1[0xd1][0xe][0x6][0xf8][0xf8]/[0xa9].[0x1a]Q`[0xb8]1[0xc0][0xd1][0xf7][0xc1]
[0x1a][0x82][0x8a][0xf9][0xb4]kCv[0xe][0x7]T[0x9f][0x1e][0xda][0x80]K[0xed][0x7][0x3]hh(S5{@e
[\r][\r]E[0x8c][0xfa][0xc1][0x0][0xd6][0xf8][0x92][0xaa][0xba][0x9e][0xad]3[0xba]~@e][0xcf]F[0xdc][0xfa]=[0x18]BCJ[0xd4][0xcd][0xe9][0xfc][0x1e][0x81][0x0][0x8a][0xfe][0x82][0xea][0x8a]6[0xa0][0x99][0xef][0xc5][0x0]F[0xfd][0x92][0xaa][0x9f]L&[0xf2][0x8e][0xd4][0x5][0x95]u[0x9d][0x1c]"[0x2]y0[0x80][0x86]l-$9s@e[\r][0xd9][0xb7]/[0x1b]0[0xa0]/[0xa8]<
_J[0xac][0x8a][0x1e]H?[0xcf][0xb][0xaa][0xcb][0x15]DB[0xfe]`[0xea][0xa6]h[0xf9][0x13]`@[0x7]S[0xf7]C?[0xa4][0xb2]h[0xda][0x11][0x9f]@[0xd5][0x8f][0xbf]9[0x80][0xcf]?[0x18]B[0xd7][0x97]T[0xd7][0xf5]'$[0xaa][0xeb][0xba][0xaf][0xe]L[0xfc][0x83][0x1]t[0xf4][0x92][0xaa]:[0xea]"@[0xee][0xea]`[0x8][0xd1].[0x9][0x10][0x8d][0xf0]"[0xf][0x86][0x11][\r][0xf2]"[0xa3];r<x@e/2[0x90][0xce][0x13][0x7][0x3][0xe8][0xfa]%Uu=[0x9b]#a[0xc8][0x1][0x95]u=[0x9d])[0xdf]=[0xa0][0xf2][0x80][0xd6]"[0xf6]g[0x7][0x3]|[0xfc][0x97]T[0xfd][0xf8][0x82][0xb4]b=[0x18]@4[0x19]D[0x97][0xf][0x93]I[0x1c][0xea][0x1d][0xc]![0xd7]$[0xee][0xc4][0x1f][0xc]7
[0xc2][0x86]V0[0xe][0xe4][0x1][0x95][0xe7][0xab][0xc8]D6
[0x7]T[0x1f][0x90]O$[0xff]i[0xb9][0x1d]FAe[0xc9][0xac]!/[0x13]\[0x10]1
 [0xed]p0[0xc0]<{I[0xd5]yf[0xdf][0xab]h[0x84][0xae][0x7][0xd1]A[0xcf][0xa2][0xb][0xb1]mx0[0x80][0xae]_RU[0xd7][0xf1][0xed][0xe3]^[0xd7][0xf5][0x3][0xaa][0xeb][0xda][0x90][0xd7][0x82]}[0xdf]@F[0xac][0xe8][0x80][0xaa][0x92]m[0xe]P[0xa4]r0u+[0xfa]![0x15][0xad][0xc8][0x9b]8bE[0x7]T[0xd7][0xb5]3[0xed][0xe9][0xf][0xa8]>[0xa0][0x98]@[0xb8]w0[0xc0][0xc7][0x1f]jH0s@e[\r]M[0x15]$[0x98]9
b@[0xc0][0x96][0xe1]`[0x80]O[0xf6][0x92][0xaa][0xf3]u:R[0xb][0xe6]k[0x10]9[0xc7][0x83][0x1]T[0xf4][0x92][0xaa]*J[0x12][0x90]O;[0x18]F4&[0x9f][0xb6][0xaf][0xfb][0x2][0xe1][0xcc][0xc1]
[0xa2][0x11]-^[0xe][0x86][0x18][0xd0][0x1c][0x88]O[H[0x7][0x83][0x83]![0x4][0xa3]:[0x18]$[0x89][0xb8][0x8f]p0[0x88]h[0xce][0xec]?[0x92]D[0xe4][0x8a][0xe][0x86][0x18][0x90][0xec][0x1f][0xd5][0x7][0xf4][0xc5][0x10][0xba][0xbe][0xa4][0xb2]h*[0xc8][0xd4][0xff]b[0x8][0xd1].[0xa9]*[0x9a]|[0xbb]([0x96][0x9d][0x88][0x8c]
T[0xa4][0x9d][0xb9][0xa1]@e[0xb9][0xb4][0x13]7[0xf4][0xf][0x6][0xf8][0xf4]/[0xa9][0xfa][0xe9]u)[0xe1]A[0x1e][0xc]![0xda]%[0xfd][0xa1]h3[0xda][0x1a])[0xcf][0x90][0xbf][0xc6][0xfc]S[0xc1][0x1e][0x88][0xfa]l[0xb9][0xbe][0x12][0x9c][0xee][0xbd][0xce][0xb1][0xd6][0xdd][0x81][0xf1]X[0xf3][0xb6]>[0xfa][0xf9][0xe3][0x97]v[0xe]il[0x14]0[0xa2][0xb1]zS[0x82]#][0x9][\r][\r][0x9]D[0xae][0xbd][0x81][0x19][0x0]'[0x83][0x86]h[0x4][0xc7]|[0x2]3[0xe3][0xe5][0xfc][0xf9][0x9c][0xff]w[0xa8][0xda][0xa4]7[0x99]k[0x8b]V[0x96].9[0xdf]y[0xf6][0xc7][0xdd]NIN[0x8c]h_cE8;l[0x0]8[0xda]f[0x10][0x1c][0x93][0xf6][0xf1][0x8c][0xbc][0xdc]_Rt%|[0xac][0xf6][0xe3][0x1b][0xab]#[0xd2]n[0x1a][0xcc][0x1c][0xd1][0xf4]k[0x86]8[0xec]M"[0xc]R[0x87]9[0xf3][0xe1]6[0x89]0m[0x1d][0xae][0x3][0x1a][0x91]+1It[0xce][0xef]$)[0xbb][0x11]M/[0x2][0x19][0xe5][0xda][\r][0xf4][0x0][0xd9]dMb[0xc1]V[0x91]@t[0xad][0xfb]R[0x1c][0xa2]!U[0x87][0xec][0xc8][0x7][0x12]D[0xa8][0xb]3C<[0xff][0x7]I[0xf6][0xb8][0xb6][0xea][0x88]b[0xe7][0xc0][0x11][0xbf][0x16];[0xe9]\[0x1f][0x91]51[0xc2][0xae][0xad][0xd9]"[0xbe][0x99][0xf5][0xc7];[0x96]5d[0xb9][0x7]![0x16]H[0xcb][0x90]f2#[0x9a]n[0xc4][0xfc][0xb0][0xd5][0x91]mQF[0xd9][0xc2][0xcc][0x8f][0x9c]
[0xc8][0xfc][0xc8][0xff]tDCa[0x93]Y[0xad]7[0x89][0xb0][0xeb][0xfd]>/[0x13][0xd1]x[0xd3]gm[0xac][0xae][0xb2][0xde]\[0x8];[0xf2][0xc][0xfc][0x98][0x15]d[0x93][0x88][0xd5]qs[0x18][0xcb][0xce]%[0xcd])R[0x9f][0xf6][0xef]I[0xff][0xcd][0xe][0x81]/iwV@liXw[0xc6][0x96][0x86][0x9][0x11]gy[0xfe][0xca]b[0xf4]=[0xf7][0xcb]o[0xc4][0x88]v[0x5][\r][0xc1][0x99][0x83][0xd1][0x90]A^{[0x93][0x8][0xaf][0xed]3[0x8c][0x89][0xd6]}5$q[0xe8][0xab][0xcf][0x9][0x8d][0xa8]O[0xc8][0xdb][0xae][0x1e][0xcc][0x9a][0xb4]I[0xc8][0x9a][0xb4][0xc][0xd9][0x8b][0xf8][0xce][0x8e]
[0x9c]}[0xc1][\r][0xe0]ho[0x90]=[0xaa]vd[0x85][0xb4][0x8e][0xa4][0x8f]v9[0x1f]2[0x9e][0xd8][0xad][0x15][0x10][\r][0xc5][0xfc]~3[0x80][0xe4]A[0xa4]j=B[0x8]N[0xb4]6[0x9][0xab][0x8e]&H[0xb4][0x1e][0xcd][0xbe][0xfb][0x99][0xf2][0xaa][0xbf]I[0x84][0xff][0x88][0xb6];[0xe6][0x83][0x9c]z[0xe2][0xf0][0x17]UL[0xae]'[0xca][0x89]#[0x88][0xcb]A[0xa4][0xbb][0xa8][0xaa]t}[0x4][0x11][0x1d]E[0x9f][0xb][0x99]m=&[0x11][0x1d]m[0xe]b[0x93]=[0xa0][0xb8]?>W[0x0][0x81][0x11]%[0x7][0xd1][0xf4][0xe1][0x0][0xf6][0xf8][0x83][0xaa][0xda][0xe3][0x98][0x8b][0xd2][0xf7]\[0x88][0x5][0x8c][0x5][0xc5]k1U[0x10][0xb]X[0x1d][0xd9]c[0xc5]Rg[0xf6]X[0xb1]b1[0xab][0xae][0xd9][\r]Z[0xdd][0x92][0x84]h[Wc2[0xec][0x9b][0x84]D[0x0]j[0xd0]Q[0xdd]&[0x11]{[0xda][0xd0][0x10]b[0xbf][0x96][0x1c]C[0xd6]Zk[0x81][0xc8]e[0x13][0x8a][0x8f]7[0x9]Ygm"[0x19][0xd6]05[0xe6][0x8c].IL|[0xb4][0xaf][0x83]1#[0xf2][0xde]
o[0xe4][0xb]9[0xc9][0xba][0x1c]`[0xad][0xfd]AU[0xd7]Z_HQLDW[0xc8][0x1f]e[0xd0][0x86][0xf8][0x91][0xe4]
[0xbe]?[0xf6][0x83]Y[0x88]M[0x6][0x93][0x1b][0xb9][0x1c][0xc0][0x92]~P5K[0xf2][0xfc]A[0x0][0x11]Ir[0x16][0xb1][0x1e]%G:[0xe0]%7g@
[0x9c][0x9][0xf8][0xc8][0xe4]([0x91][0x19][0xf3][0xd6][0x1b]q[0xe2][0x93][0x1c][0xa4]<+92[0x90][0x93][0xa3][0xf][0x9][0x98]g[0xc9][0x9]"[0xc6][0xf6]6[0xe6]@v[0xf][0xde][0xe6]`[0xf2][0xfd][0x1f][0x12]bEsv$:J[0x92]wd'[0xf2]!![0x1e]d:[0x91]a[0xdd][0x1c][0xa6][0x82][0xc9][0xf3][0x9f][0x1d][0xb2][0xa4]5[0xe2]?[0x9c]@[0xfe][0x8f]IK[0x1b]F[0x2]V[0xfe][0xcd]a<R[0xe][0x7][0x99]#K[0x7][0xe2][0xf9][0x93][0xc3][0xc8][0xe5][0x1d][0xf1][0x8f]2[0x1a][0xf2][0xbd][0x92][0x83][0xc8]e[0x9d][0x91]+9[0xc8]w[0xb7]N[0x9c][0xf2][0xfa].[0xa7][0x2]b[0xf4][0xcd]1[0xc8]W[0xef][0xe2]n[0x8c][0x84][0xc8][0xe6]1[0xa1][0xe8]!A[0xc0]~[0xef][0xc3]A[0xbe]~8[0x93]}[0xce][0x1d]q[0x17]B[0xb2][0xde][0x9e][0xed]'0"Qf[0x15][0xea]}[0xc]b[0xcd]O[0xf]Bd2[0x92][0x3]U[0x9d]%[0xc9]O[0x85]Om[0xff][0xf9]![0x11][0xfe]:[0xc6][0xd8][0xd1][0xe1][0x94][0xf7][0xb1]C[0x15][0xf7][0xb1][0x1b][0x5][0xcd][0xb7][0xd9][0x8c][0x88][0x1f][0xfb][0xec]H[0x1c]z9[0x80][0xbe]PU}[0xcf]E[0xe4]i[0x93][0xa3]D[0xbe]'9[0xce][0xdc][0xee][0xf8][0x90][0x90][0x11][0xad][0xee]H.3Ic"[0x96][0xb4][0xa6]A:[0x92]ATy&'[0x16]rf[0xf4]!!_m[0xdf][0x81][0x82]8[0xc8]7[0xd3][0xf1][0xad][0xf4][0x0]f[0xff][0xf][0xaa]:[0xfb]u@
[0x91]dW![0xce][0x8d]r[0xcb][0xdf][0x16]4[0xa2]}[0xd9][0x98][0x19][0x11][0xe3]![0xf7][0xf9][\n]"
2013/09/19 12:14:59:914 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xc1][0xf1]a[0x90][0x86][0x1c][0xa9]<[0xf9]p[0x88]]D[0xce][0xc][0xa2][0xf2]$9*[0xc8][0x97]we[0xaa]i[0x93][0x14][0xf2]D[0x91][0x9d]"ac[0xaa]j)[0x1a]q[0xbb]'9[0x90][0xc7][0x8e]I[0xed][0x8f][0xc2][0x89];0[0x1f][0xe]2[0xf3][0xc3]'[0xa3][0xe9][0x87][0x3][0xac]E?[0xa8][0xe2]Z[0x94][0xbf][0x84][0x9c][0x1b][0xec]_""[0x88][0xfc]%[0xc4]_[0x8f]6[0x6][0xb3][0xcb][0x1e]muf[0xee][0x8f]&[0x13][0xb9]m[0x92]$C[0xb2][0x87][0xe3][0xf3][0xe8]:#[0x9b]Ob[0xd6]f[0x90][0xc5]T[0x9e]l[0x12]Qw[0xbc][0xaf]-[\r]f=[0x1a][0xdd][0x10][0x9f]=[0xc6]B<[0xe4][0x18][0xcf]iq][0xb2]!D[0xad]xr[0xb4][0x13]1M[0xce]}d[0xcf]w9u[0x9f][0xfd][0x8b][0xaa][0xfa][0xec][0xc]E[0x19];z8[0x88]t[0x8b]Z[0x91][0x86]}[0xef]/[0xe4]/I[0x19][0x15][0x90]3[0x19][0xc1][0x94]Vm[0x12]t[0x9c][0x99]?"[0xae]/%g[0x10][0xe5][0x99]/[0x7][0xb0][0x81]9[0x88][0xae]%/[0x87][0x18][0x92]C[0x87]-I[0x82]6[0x13]c[0x19]q[0xa1]>9[0x8e][0x94][0x1f][0x8d][0x15][0xb][0x92]L[0x6][0xb3][0xa0][0xc8]@[0xd2][0x91][0xb9][0xbe][\r][0xc4][0xe5][0xca]bB[0x0]Q[0xe2]Rnrl0[0x89][0xff]M"[0xe][0x90][0x87]8R[0xea][0x95][0x91][0x4][0xd1]A-9T[0xe2]g[0x93][0x90][0x82][0xfa][0xf][0x9][0xf1][0xd8]:[0x90][0xe3][0x83][0xa1][0xab]C[0xbe]Q[0x17]q[0xc9]'9[0xda]![0xbb]V[0x17][0xa4]w[0xa2][0x8f][0xfd][0x1e][0x16]3[0xa6]$![0xb3][0xdf][0xd6]B[0xec]h[0xf7]+D8J\]J[0x8e][0x11]W`?[0x1c]D[0xcf][0xde][0x90][0x14][0xd2][0xd8][0x87]P[0x8c][0x5][0xf9]B[0x92][0xbe][0xc3]O+[0x8e][0xfa][0x88][0x94][0xe8][0x8][0xba]9[0x94]/[0xda][0x8d]w[0x91][0x11]9q[0xfd]m[0x1f][0x1b]t[0x82][0x93]?[0xf9]z[0xfd]?[0xed][0x94][0xfc][0x82]z0[0xe]m[0x93][0x88][0x8f]?[0xdb]D&[0xec]l[0x86][0xd4]C[0xe5]o@
[0xb9][0xa3]MB[0xfa]'[0xf9][0xec][0x8b][0xb8][0x91][0xb5]9[0xc1]L[0xfd]M"[0xdc][0xe3][0xe6][0x10][0xcb][0xd9][0xec][0xd2][0x88][0xd0]19[0xc8]2=[0xf7]Q[0x1f][0xc1][0x19][\r][0xaa][0xa9]H[0x12][0x12]\[0xe7][0xa6][\n]"
2013/09/19 12:14:59:915 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xa9];[0x98][0x83][0xd9][0x9e][0xcd][0x11][0xc8]"4[0xe7]@6[0xd4]s[0xba]A_l[0x6][0xd1][0x8][0xd8][0xe7]z[0xca]
[0xca]g[0x18]s-[0xc6]W/[0x81]${[0xfa][0x94][0xd4]u[0xbd][0x14][0xc9]>'[0x87][0xb8]][0x9c][0x1c]{<uy[0xed]H[0x12]2"Az[0xcb]$g>i[0xd9][0xb2]d[0xa2][0xcc][0xaa][0x98][0x1c]b[0xeb][0x91][0x1c][0x81][0xac]Q[0x14][0xb9][0xd1]5[0xc5][0x91][0xbb][0x8e]S[0x98][0x8a][0x9c][0xa9][0xcb][0x91]/[0xa6][0xd0][0xea][0xba][0x9f][0x8f]
8[0xd6][0xa1]J[0x8a][0xb9][0x9b][0xc9]B$[0x85]R[0xd6]sw][0xa5]HL[0xb4][0x97][0x1c][0xc4][0xae]}-[0xe4][0xfb][0xbb][0x12]=[0x0][0x93]cP[0xe2]rFg[0xa2][0x99][0xe8][0x8e]tN[0x92]0qZ[0x8][0xd3]u[0xe7]CB[0xbc]H([0x94][0xe2]Y[0xad]![0xf6][0xb8][0xa0];[0xee][0xab][\r][0xe2]i[0x8c][0xe4]L[0xc4][0xef][0xaf]&DT_[0xbd]!7[0xe7][0x92][0x3]y[0xeb][0xd5][0xb5]1#b[0xee]^[0xae][0xdc][0xbf][0x12][0xb3]u[0xed]"CHCO#[0xb9][0xb2]'[0xda]$[0xc2][[0xe7][0xb6][\n]"
2013/09/19 12:14:59:915 PDT [DEBUG] wire - http-outgoing-0 <<
"I[0xc8][0xae][0xb1][0x90]:[0xbc][0xcd]!"[0xf4]5[0xac][0x11][0xf1][0xf0][0x1a][0x8e]T[0x4]$[0x87][0xb1][0xe9][0xd9][0x84])[0xe3]H=[0xfd]G5[0x1d][0xbb]2[0xd2]GT4[0x15]9[0xa3]N[0xe][0x92][0xd4]][0xd3][0x88]fD[0x1f][0xe][0xa3][0x1f][0xa6][0xd4]q[0xad][0x81]l[0xa6][0xd7][0x9a][0x8c]~[0xf2]?[0xc8][0xd4]X[0x2]m][0xd7]r[0xa2]y[0xd0][0xe7][0x9]V[0xc4][0x12][0x17][0xf2][0x1e][0x9f]/[0xe9][0x9d][0xa9][0x4][0xd8]$hD[0x8b]95[[0xc2]4YY[0xa2][0xc1]\n[0xdb]$[0xc4][0xae][0xc5][0x91][0xf3][0xb7][0xe4]@U[0x89][0x9b][0x84][0xcc]|EZ[0xfc][0xfb][0xee][0xf9]1[0x99]o[0xa6][0x82]$[0x89][0x96]*T[0x91][0xb6]I[0x88][0xb7][0xd6]'[0xdd]PN[0xa0]/SFG[0xfb][0xf1][\n]"
2013/09/19 12:14:59:915 PDT [DEBUG] wire - http-outgoing-0 <<
"FG[0xe6]P[0x85][0xd3][0xce]XC$o[0xcc]fh[0xb7][0x12][0x80]F4[0x90]+`[0xcb][0xad]![0x16][0xe9]OH[0xc]H[0xf6]<[0x84]Q[0x1e]Q
[0x97][0xd2]V[0xf4][0x6]y[0xda][0xe8][0x83]I[0xa6]m[0x12][0xa2][0xa3]`[0x1a][0x9b][0xac]X[0xc8][0xf1]@r[0xa0]t[0xe3]&1[0x1a][0x12]&[0x1][0x96][0x1c]d[0x9e][0xc5][0xb3][0xa6][0x1][0x1a]R[0xc8][0x86]T[0x19][0x8e][0x9d]u[0xbf][0xba][0xa6][0x85]![0x17][0x80][0x92][0x83][0x1c][0xc1][0xae]@[0xde][0xbb][0xfe]p[0x98][0x83][0xfc]$1[0xbb][0xea][0x8][0xe8]2[0xe2]&[0x11]+[0xec]>[0x13]&[0xbe][0xd9][0xe5][0xd4][0xaf]5[0xfd][0xa2][0x8a][0xf7]G[0x12][0xb5][0x88][0xbd][0xec][0xe5]0C"L[0xe9]r[0x98]!A[0xb6][0xb4][0x98]wP6[0xea][0x1b][0xae][0x11][0xa8][0x85][0x1c]9H[0xa3][0xaa]n7[0x89]X[0xdb][0x92][0x83][0xb4][0xb4]K[0xe][0xd2][0xa0][0xf7]r[0x8][0x1f][0xf0][0xa2][0xca][0xdf][0x1f]y[0xb4][0xf6][0xe5]0[0xd2]a[0x13][0xc5][0x91][0xa8]][0xda]S[0xaa]V[0xb7][0xee][0xc][0xff][0x11]k[0xea][0xc8][[0xf3][0x1f][0xe][0x91]A[0xda][0xc9]:[0xc4][0x8e][0xe][0x7][0xb0][0xa3][0x1f]T[0xd5][0x8e][0xfa]b[0x9e]gI[0x92][0xfc][0xfb]5[0xf7][0xf6][0xe0]hr[0x94]y[0xe4]-I[0xd6][0x88]=Ir[0x98][0xa7]P6[0x9][0xb2]I#[0x1e]CK[0x8e];5[0xfb][0x1d])[0x14][0x90][0x1e][0xc8][0x91][0xe1][0xee][0xf8][0xb]I6:[0x94]A[0x96]1[0xa0][0xbc][0xbf][0x8c][0x89][0xec]K[0xf6][0x85]][0x88][0xc3]<[0xca][0x9c][0xa4]`b[0xa4]9[0x91][0xbd][0xed][0xe6]
[0x1a][0x9a]s@
^m.[0xca][0xb2][0xa7]B[0xb9][0xc8]$!w[0x0]e[0xba]0[0xb9][\r]Y[0x8a][0xb4]m[0x91][0xe5]PKk1[0xe4][0x1][0xe4][0xcd]a"[0xbf][0xfd]H4$[0x19]sF[0x9f][0x1c][0xa4][0xc8]ts[0x88],[0xab][0x9c][0x7]p[0xeb][0xd6]h[0xa7]yhY[0xd7][0xbb][0x99]=![0x9b]S[0xad][0x9f][0xc4][0x5][0xc9][0x8d]o[0xe]S[0xb0][0xba]I[0xc8]L[0xcb][0xff]"v[0xe4][0xcc]Y[0xb6]D[0xa3]2[0x11]A[0x95]?Jt[0xa4][0x10]?9P[0x1d][0x8b][0xc4]D[0xee][0xd9]K,[0xa8]-[0xbe][0x84]01[0xed])[0xa0].s[0xc][0xb9][0xc0]'P[0xbe]^"[0x90][0x87][0xc].[0x7][0xd8]a[0xff][0xa0][0x8a];lmLKlm[\n]"
2013/09/19 12:14:59:916 PDT [DEBUG] wire - http-outgoing-0 <<
"E[0x90]z[0x1a][0x1a]"$"[0xcf][0xbe]9DL[0xa3][0xcd][0x91][0xd3]L[0xed][0x3][0xa9]c[0xd0]>[0xa1][0x18]k[0x93][0x88][0xb9][0x96][0x1c][0xe6][0x19][0xc5]$Qg[0xd0][0xda][0xc5][0x11]m[0x8f][0x6]U[0xc4]$[0xc9][0xa1][0x19][0xb2]{u2[0xb2]A[\r][0x0]6[0x89][0xf0][0xfe][0xbb][0xaf]:d[0xdb][0xe3]<[0xf0]U[0x8d][0xb3]u([0x92][0xab][0xd5]a[0x3][0xf9]j[0xf9]#&[0xaa][0xd1]9[0x90][0x8c]_r[0x90][0x96][0xf1]:'T3[0xa6]s!g[0xb5]:[0x15][0xda]c[0xe9]4$w[0x90][0x1c][0xe4][0x8e][0x80]N[0x9f][0x94][0x15][0x5][0xb2][0xa3][0xd1][0xfc]'S[0xcf][0xa0][0x8b]9[0xa5]M[0xe][0xb3][0xf2]'[0x7][0x89]D[0x16]sirs[0x90][0xe8]1],[0xb4]Z'[0x89][0xd1][0xb4]!uU*[0x13]9/[0xdc][0x1c]b[0x97][0xa6][0xb2][0x98]//[0x82]t[0xc4][0xda][0x1c]f<>[0x99][0xfd][0xb0][\n]"
2013/09/19 12:14:59:916 PDT [DEBUG] wire - http-outgoing-0 <<
"s[0xc6][0xa3][0xfa][0xe4][0xc2][0xea]#R[0xea][0xc1][0xb9]$AW[0xd5][0x92][0x4][0xb5][0xa3]Qe:[0xfd][0xa9][0x1a][0x15][0x15]'[0x9][0xb1]m[\r][0xa8][0xe6]8I[0xcc]l[0xd3]@[0xae]rjn[0xac][0x91]u[0xd1][0x1a][0xd4]Lb[0x93][0x10]?k[0xcd][0xa8][0x11]u&[0xfb][0x90][0x1c][0xc4]C[0x1e]N=[0xff][0xf4][0x8b][0xaa][0xe6][0x9f][0x12][0x5]E[0x8f][0xd6][0x91][0xbb]][0x9a][0xb]?4kM[0xa8]lF:$[0x8a][0x14]HU[0x9d]zC[0xee][0x89][0xe9]~&[0x98][0x91],I[0xc8][0xf7][0xdf]OX0[0xbb][0x87]}[0x1e][0x86][0x8c][0xe8][0xe1][0x0][0xd3][0xcd][\r]i?[0xab][0xce][0x14][0xd4][0xa8][0x7][0x13][0xd6][0x1e][0xe][0xe0][0xdc]~Pem[0x7][0x95][0x16]K[0x12][0xf2][0xdd][0xb0][0x83],[0x8d][0xd1][0xa1][0xa0]4&r[0x0][0xa9][0xb1][0x90][0xc3][0xbe][0xe4]0)[0x9f][0xe4]
.2[0x16][0xb3][0x85]L[0xe][0xb4][0x88]$[0x89][0x92][0xc][0xda]D[0x4][0xf3][0xe2]`r[0x1c]J[0x1c][0x86]![0x17][0xaa]4[0xa8][0x12][0x9f]$![0x85]'[0xd6]:[0x92]b[0xb1][0x16]Hs[0x11][0xeb][0xcf][0xfb]nu[0xe][0x12][0x1a]Y[0x9f]H[0x2][0xc1][0xfa][0x82][0x92][0xd8][0x9b][0xc4]H[0xc6]x[0xd8][0xe4]
[0x9e]19[0xc8][0x85]U[0xeb][\n]"
2013/09/19 12:14:59:916 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xf9]![0xeb][0x86]<[0xc4][0x94]{[0x19][0xa8]-H[0x92][0x90][0x87][0x81]l4[0xe8]]p;[0xc7][0x97][0xc0][0x88]([0xc9][0x10]k<=[0xb5][0xcb][0x9c][0x8e][0xbc][0xe8][0x98][0x1c][0xe4][0x98]09[0x93][0xfa][0xf2]][0x99][0xb5][0xcc][0xc6][0x80]d[0x13]L[0xb6][0xd3][0xcc][0xa3]Nr$I[0x97][0x1c][0x81][0xbc][0xda]lP[0xe4][0xb8]I[0xc8]\K[0xe]2[0xd7]f[0x83][0xae][0x98][0xe4][0xbe][0x9a][0xf1]"[0x87]S[0xdf][0xc9][0xfe][0xa2][0x8a];[0xd9][0x8d]B"[0x88][0xc3]a[0xa4][0x83].c&[\n]"
2013/09/19 12:14:59:916 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xd9]]_[0xe]"[0xdd]E[0x1][0xd2]![0xf1][0xfa][0xe1]0[0xd2][0x9]%[0xdd]@[0xe][0x10][0x93][0xc3]D%sA-[0x94]6[0x9][0x89]n'[0x14][0xb5][0xcf][0x15][0xcc][0x1][0x9b]M{Z`[0xf4][0xfc][0xb7][0x18]TY8[0xa6][\n]"
2013/09/19 12:14:59:916 PDT [DEBUG] wire - http-outgoing-0 <<
">9H[0x87][0x98][0xcd]a&-[0x93][0xa8][0xb5][0x19]L[0xf2]`5[0xe8][0xcd][0xdb]MB[0xbe]X[0xce]2[0xc4][0x81][0xe4][0x9e][0x16][0x9][0xdb][0xe][0x7]p[0xb3]?[0xa8][0xaa][0x9b][0x85][0x9e]VI[0x8e]![0xce]H:r[0x90]q9[0x80][0xb6]PUm[0xcb]Ph[0x96][0x8][0xf3][0xa0][0x96][0xe5][0xe7]g[0xd2][0xfd]IBn[0x7][0x9b]0][0x18][0x93][0x3][0x9d]@Z[\n]"
2013/09/19 12:14:59:917 PDT [DEBUG] wire - http-outgoing-0 <<
"[0x86][0xf8][0xda][0xc3]!l[0xf2]E[0x95]m2[0x14][0xd9][0x2][0x1c][0xe]#[0x1d][0xb5][0x5][0xd0][0xd6][0xa1][0xb0]-I[0xc8]J[0xa9][0x1d][0xea]4a:[0x98]M[0xb7]*[0xd2]P~7+Ef[0xee][0xe1][0x0][0x96][0xf4][0x83]*[[0x92]AGH[0xa6]L[0xad]Fr[0x14]Ys[0xf][0x87][0xd0][0xf7][0x8b][0xaa][0xea][0x1b]{$[0xc9]L[0x18][0xfb]6a[0xec][0xdb][0x14][0xe9][0xc2]n[0xd0][0xf3]H[0x89][0xe9]L9[0x83]ycv7[0x87][0x3]X[0xe4][0xf][0xaa]j[0x91][0xde][0x14]ZK[0x92][0x84][0xac]%[0xde][0x91]J$s[0xa6][0x14][0xc1][0xf6]]([0x84]cL,y8[0x84][0x1d][0xbd][0xa8][0xaa][0x1d]EG[0xee][0x8a]_[0xe]
[0xdd][0xf][0xaa].[0x1d][0xd2][0x99][0xe1]r[0x10][0xe9][0x84][0x8a][0x96][0x13][0x85]x[0xb8][0xc3]a[0xa4][0xa3]<\L[0xa6][0x4]$[0x16]R[0xb3][0xb9]9[0xcc]LY[0xd4]!^[0x92][0x90][0xbc]d[0x8][0xb3][0x9b][0x8]a<w@1I[0x98]![0xf9][0xa4]0g[0x8e]&[0xbd][\r]e[0xe2][0xc8]M"fGr[0xa0];[0xec]I[0xe2][0xb4][0x84]dK[0xbd]M[0xe4]P"[0xa3]6$/[0xed][0x8d][0xb9][\r][0xeb][0x9d]z=g[0x93][0x18]_[0xb4]I[0x84]/[0xf2]>[0x90][0xce],[0x97]S_[0xd3]~Q[0xc5]5[0xcd][0xa1][0x1e][0x16][0xde][0x17][0xd2]Q[0xc5][0xbb][0xe]f<[0x8a][0x94][0x93]l[0xe]4[0x1e]$[0x1b]q9[0x84][0x15])[0x95][0x8d][0xd8](FKO[0x8f][0x7]`[0xf6];[0xf2],[0xa5][0xf7]@[0xca][0xd2][0x92][0x83][0xdc]e[0xbc][0x1c][0xe2][0xfb][0xbf][0xa8][0xf2][0xf7][0xf][0xa4];[0xc3][0xe5]0[0xd2]A[0xbb][0x1a][0x1f][0xbd]!s[0x17]*q[0xf4]1[0x91][0xe8]89[0x83][0x91][0x8b]yr59LT3[0xe4][0xfb][0xbd][0xaa][0xf][0x8a][0xfa][0xb0][0xef][0xf6][0xa1][0xe]r[0xe4][0x14][0xc9]'[0xd3][0xb9]hs[0x90]xv2Oc[0xfb][0xec][\r][0x8a][0xfa]f[0x87]4=[0x90]>z[0xc9]Av[0x8e]>[0x17]R[0xd0][0xee]S[0x90][0xf7]2[0x93][0x83]\f[0xd8][0x1c]$J[0x9f]L[0xa5]Fr[0x90]S[0xc3][0xcb][0x1]V[0xb2][0x1f]Tu%[0x9b]L[0xd7][0x9][0x9f][0xc6][0xec]c[0xa7][0x19][0xe3]?[0x1c]y[0x81]))[0xcc]^[0xef]p[0x88][0xaf][0x1f][0xd8]^o5&[0x6]=[0x1c]@[0xba][0x1f]T]:[0xe8]=[0xaf]$-[0xe6],;I[0x8c]7Yc[0xa2][0x1c][0xe2][0xcb][\r][0xe4][0xbe][0xf0][0xe5][0x80]C"[0x8c]i
m}/[0x87][0x91][0xe]j[0x9b]([0xe4][0xde][0xf0][0xe5]
[0xd2]Q[0x8f][0x8c]m[0x14][0x12][0xe2][0xac][0x81]ti[0xb8][0x1c]D[0xb4]oF[0xbb][0xbc]![0x81][0xca]/[0x7][0xb1][0x0][0xea][0xde][0xce]F![0xe1][0xc0][0xe1]0[0xd2]A[0xcf]C%*[0x98][0xd2][0xcd]M[0x82],[0x1c][0xb9]k[0xb3]9[0x8c]UN&as8[0xc4]G[0x9b]H?[0xab][0xcb]!LrR[0xfd][0xac][0x12][0xc5]d[0xed][0xf][0x7][0x91]nP[0xf9][0xbf][0x5][0x9d][0x91]$[0x87]qK[0x13][0xb9]sq9[0x88][0xb6][0xa9];[0x17][0x1b][0x5][0xcd][0x14]l[0x7][0xfe][0x83][0xaa]K[0x7][0xb9][0xca]I]K[0xfc]E[0x95][0xa5][0x83]2[0xc1][0xc9]af[0xca][0xc3]![0xb4][0xf4][0xa2][0xea]Zb*%[0xe][0x7][0x91]N9[0x1b]@[0xba]5_[0xe]"[0x9d]a[0xf3]W[0x1a][0xb3]1|8[0x84]t/[0xaa].[0x1d][0x94]![0x12].C$\[0x86]H[0x6]$[0x1d][0x93]k>[0xb7][0x2][0xeb][0xbb]9a[0xe][0x7][0xe][0x7][0xf9]l[0x86][0x85]_[0x12][0xd0][0xa6]W[0x91][0xd6][[0xc9][0xf9][0xbe]h[0x1][0xc][0x88]I[0xa3][0x1f][0xe][0xf1][0xdd]^T[0xf9][0xbb]=O[0xa2][0x13]jbV[0x14][0xe5][0xb2][0x9f]/[0xaa][0xae][0xa6][0xc5][0x1c]2/[0x85][0xb6][0x5][0xaa][0xd4]wc[0xce]b[0x97]~[0xab]f[0x81][0x1]A~R9?[0xa9][0x9c][0x9f]T[0xa7][0xd4][0x84]tO[0xb8][0x1c]DM[0x8e][0xa9][0xc9][0x98][0x93][0xfd][0xc3]![0xa4]{Qu[0xe9][0xbe]w[0x8c][0xea]F`[0xd0]V[0xee][0xe1]
j[0x9a]X"[0xdd][0xa0][0x13][0x10][0xe3]N@
[0x8c];[0x1][0xa1][0xea][0x96][0x96]!/[0xf8]\[0xe][0xa2]&[0xc3]v[0xaa][0x8e][0x9d][0xf3]:SG8[0x84][0x9e]^T]O[0x90][0x15]8g[0x5][0xe]Z[0x1]rK49[0xc1][0xac]+[0xf][0x7][0xd1]R`[0xeb]J@
[0xe7][0x17][0xc1][0x9d]_[0x4]w~[0x11]PV'[0xb8][0xac]NpY[0x9d][0xe7][0x6]{][0xba][0x8e]-v/[\n]"
2013/09/19 12:14:59:917 PDT [DEBUG] wire - http-outgoing-0 <<
"[0x90][0x8e][0x99]w\[0xed][0xf9][0xe2]j[0xcf][0x13][0x5]Yf[0xe7],[0xb3]s[0x96][0xc9]T[0xa0][0x1f][0xe]"[0xdd][0xe0],[0x13]:[0x15][\r][0xee]T4[0xb8]SQ[0xe6][0x85][0xf0][0xcb]a[0xa4][0xe3],[0x13]:[0xf3]}8[0x88]t[0x93][0xfb]v[0xd0][0xcb]JIb[0xa2][0x1e]iHg[0xbb][0xcb][0x1][0xf4][0xfd][0x83][0xaa][0xea];QH[0x4]-[\r]z[0xdf]y[0x93][0x90][0xdc][0x9c]4[0xa6][0xd8][0xee]p[0x90][0xef]&P[0xb7][0x8e]D![0xfd][0x3].[0x7][0x91]N9[0xab]D[0xda][0x89]'[0xc7]![0xeb]vj[0xf8][0x83]*k[0x89][0xea][0xb4][0x95]$h[0xce]A7[0xd2][0x85][0xbb][0x91].[0xdc][0x8d]t[0x99][0xcc][\r][0xa5][0xc3]![0xa4]{Qu[0xe9][0xa0]o7[0x99][0x2]ua[0x9e][0xfd][0xba][0x1c]B[0xdb][0xb]+[0xe3][0x17]an[0xdc][0x1e][0xe]![0xdd][0x8b][0x2][0xa4]cl[0x80][0xab]E[0x11][0xae][0x16]E[0x4]iM9[0x88]t[0xce]};g[0xbe][0x9d][0xf6][0x81][0xa4][0xfa][0x13][0xc4],[0xe2][\n]"
2013/09/19 12:14:59:917 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xb9]o[0xe5][0xdc][0xb7]r[0xee][[0xa1]p[0x17]j[0x7]"[0xc6]\[0xc3]=[0x1c]B[0xdb]/[0xaa][0xac]m[0xe8][0x94].[0xa7]-[0xe3]J[0x1c][0xd2][0xb6]s[0xda]vN[0xdb][0xce][0x94][0xa5][0x8a]#[0x8d]`7[0x87]I-[0xb8]1[0xdb][0x1c][0x87]\[0xb6]3[0xb7][0x93][0x4]j)#\K[0x19][0xe1]Z[0xca]$[0x8a][0xb1][0xc6][0x87][0xc3]H[0x87]m*[0x3]Z%[0x83][%[0x83][%[0x3][0xf2][0x93][0xc1][0xf9][0xc9][0xe0][0xfc]d@
[0xdb][0xf8][0xa0][0x1a][0xd4][0xfe][0xa2][0x0][0xe9][0x18]/[0x17][0xd8][0xcd][0xe7][0x1f]T]:[0xa4]A[0xed][0xe5]0C[0x82]&[0x8b]p[0x93]E[0xb8][0xc9][0x2][0x5][0xcc][0xc1]%u[0x9f][0xb7]a[0xcb][[0xa6][0xdc]zA[0xa7](IBl@[0x99][0xee][0xd2][0x97][0x3][0xd8][0x92]b[0xdd][0xa5][0x13][0xc5]l[0x9a][0xe][0x7][0x91][0xe][0xeb][0xa1][0x98][0x9b]T$[0x9c];[0x1c]D:[0xa3][0xc2][0xb9]D!A[0xef][0xe1]0[0xd2]Q7[0xfa][0xb4]3'
[0x87][0x83]H[0x87][0x9d][0x80]([0xf3]P[0xe8][0xe5]
[0xd2]Q[0xf][0x85]n[0x14][0xb2]B[0x1d][0xe]#[0x1d][0xb5][0xd8][0xe9]h[0x8c]Wy8[0x84]t/[\n]"
2013/09/19 12:14:59:918 PDT [DEBUG] wire - http-outgoing-0 <<
"[0x90][0x8e][0xf1]*[0xf][0x87][0x91][0xe][0xf3]*[0x83][0xd9][0x2][0x1f][0xe]"[0x1d][0xb6][0x5][0xd6][0xc1][0xdc][0xa2][0xd4]9[0xa0][0x9a][0x8][0x9d][0xcc][0xb6][0xf5]p[0x8]%Ma\[0xef]D^[0xb2][0xbe][0x1c][0xc2][0x94]&[0xf5][0x92]u[0xa2]
[0x17]>9[0x17]>9[0x17][0xbe][0x1a][0x13][0xf6]>[0x1c]dHL[0xea][0xf1]p[0x90]!1[0x5]d[0x87]C[0xd8][0xc0][0xc2][\n]"
2013/09/19 12:14:59:918 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xc8][0x12]E9[0xb9][0x5]9[0xb9][0x85][0xe5][0xe6]~Pu=A[[0xc4][0xc5]m[0x11][0x17][0xb7]E\[0xcc]E[0x9c][0xc3]A[0xa4][0xc3].[0xe2][0xe8]b[0x9a][[0x1f][0xe]"[0x9d]s[0xfe])[0xbe]f[0xb0][p[0x16]Q[0x2][0xc5][0xf4][\n]"
2013/09/19 12:14:59:918 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xbd]l[0xb8]I[0x8c][0xf3][0x85]n[0xfa]+w[0xd3]_[0xb9][0x9b][0xfe][0x89]BR[0xeb][0x87][0xc3]HG[0xa5][0xd6]U[0x5]9d?[0x1c]D:[0xa1][0xea]uT[0x91][0xb7][0xd6]\m0[0xef][0x1b]'[0x89]i[0x1e][0x92][0x82]19c[0xc3][0x9a]"[0xfc][0xa0][0xca][0xdf][\r][0xba][0xc1][0xac][0xdc][0xb5]c5[0xa6][0xb0][0xed]p[0x10][0x85]c[0x85]m[0x89][0x82][0xcc][0x9]k[0x1e][0xf1][0x83][0x2][0xa4][0x83][0xcc][0x89]K[0xf4][0x1a][0x97][0xe8][0xb5][0x80]\J`[0xd1][0xf3][0x8b][0x2][0xa4]c[0x82][0x14][0xe3]r[0xcf][0xc6]4[0xe0]=[0x1c]fHL[0x90][0xf2]p[0x88]![0xb9]15[0xae][0x1a]L[0xe1][0xc3]![0xec];[0xa8][0x87][0x93][0xdd][0x1a]s[0xb5][0xc0][0xa0]+][0xc6]][0xe9]2[0xee]JW[0xa2][0x10][0xfb]"
2013/09/19 12:14:59:919 PDT [DEBUG] headers - http-outgoing-0 << HTTP/1.1
200 OK
2013/09/19 12:14:59:919 PDT [DEBUG] headers - http-outgoing-0 <<
Content-Encoding: gzip
2013/09/19 12:14:59:919 PDT [DEBUG] headers - http-outgoing-0 <<
Transfer-Encoding: chunked
2013/09/19 12:14:59:922 PDT [DEBUG] MainClientExec - Connection can be kept
alive indefinitely
Header: Transfer-Encoding = chunked
org.apache.http.client.entity.GzipDecompressingEntity
media_id,website_id,slot_id,segment_id,hourperiod,parameter,campaign_id,adgroup_id,adservice_id,value,descriptor,comment,applicableTime,defaultingLevel
2013/09/19 12:14:59:936 PDT [DEBUG] wire - http-outgoing-0 <<
">[0x1c]F:j[0xaa]X[0xfb][0xf7]=[0xc0][0xda]ne=[0xfe][0xc6][0xf9][0xfc][0xd5][0xe4]@O[0x9e][0x1d][0xe][0xa1][0xa5][0x17]U[0xd6]RoP[0xe3][0x17][0xeb][0x3]z[0xb8][0xca]:S[0xeb]|8[0x88][0xc6][0xb1][0x8e]D[0x89]b|[0xd3][0xc3]a[0xa4][0xa3][0x96][0xf1]D![0xcb][0xf8][0xe1]0[0xd2]Q[0x11]A[0xa2][0x90]t[0xd3][0xe1][0x10]C[0x1a]L[0xa0]jPW~[0xe3][0xba][0xf2][0x1b][0xd7][0x95][0xdf]f[0xf1][0xf6][0xf2][0x8c][0x9c]"[0xd6][0xbc][0xad][0x1c]J[0xfb][0xeb][0xbf]"[0xaa][0xa4]}*[0xb6][0x93][0x8e]5N[0x9f][I[0x0]'[0xc2]&[0xc0][0x99][0xa9][0xf0]Np[0xa6][0x5]![0xd7][0x94]XAp|ww[0xa8]s[0xd6][0xf4][0xf9][0xb5][0xa0]?_&[0xbf]$[0x19][0xa2][0x84][0xa6]Ew[0xd7]/[0x80]c;[0x17]OH[0xa6]=2[\n]"
2013/09/19 12:14:59:936 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xac][0x8f]H[0xc7][0xb0][0x8f][0xae]+[0xe][0xe4]A-o[0xc4][0xf4][0xd0][0xf5][0x98]Q]I&[0xb]R[0xb7][0xaf]5[0x10][0xa7][0xa6][0xb1][0xef][0xf2]Q$[0xc2][0xb8][0xad][0xd9]"[0xbe][r[0x94][0x98][0xfe][0xe9][0xf7][0xc3][0x91][0xaf]f}[0x8d][0xa0]HA8[0x0][0x1b]-[0x98][0xaf]os[0x4][0xe1][0xb4]m.E[0xbe][0xfe][0xea][0x86]|[0xfd][0xc]F[0x94][0xf9]fI"[0xc2][0x7][2[0x7][0xc1][0xb1][0xf5][\r]g[0xea][0x92][0xed]`[0x8d][0xb1]"[0xf][0x15]fLa[0xcf]\+[0x8f])[0xf6]Q[0x15][0xa0][0xef][0x88]F|o][0x18]/[0x92][0x91]qg<[0x9b]bv@
[0xb6].[0x88][0xcf][0xf6][0x9e][0x96][0xc4]H[0xd6][\r][0xf1][0xb4]>[0x9a][0x12][0x1][0x92]_[0x8f]][0x96]l[0xac][0xc5][0xcc][0xb5]M"[0x2][0xff][0xe4]XgF4[0x1f][0xaf]][0x1d][0xd1]d|[0xf6]~*[0x1a][0x92]l[0xb5][0x85][0xd8][0xe3]2$`O[0xe][0xb2][0xc9][0xf2][0x15][0x8e]|1I[0x5]1[0x1c]G[0xbe][0xbc][0x8e][0x6][0xcd]2[0x13]A[0xbe]|[0xaa][0x1a][0xd1][0x90][0xef][0xe7][0xcf][0x1]N8[0x92]6[0x88][0xd6]&[0x11][0x81]F[0x13]a[0xc6][0x13][0x88]~.[0xa7][0x92][0x9e][0xfb]WTqw[0x9d][0xa8]'z[0xfc][0xf3][0x7][0xcb]_[0x12][0xa2][0xa7][0xbe]:[0xf2][0xfd][0xc7]<[0x9][0xc3][0xaa]dc[\n]"
2013/09/19 12:14:59:937 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xb3][0xbb][0x8a][0xa9][0x83]Y?b[0xe6]*Kh)9[0xca]h)I[0x84][0xa7][0x8d][0xdc][0xf1][0x11][0xfe]1V
[0xfb][0xab][0x90][0xd1][0x99][0x9d]c[0xc8]I[0xd3][0x95][0xed](I[0xc8][0xd7][0x17]AR[0xc6][0xa1]![0xc4]n?[0xac]C[0x99][0xb5]MB4d[0xd3][0x10][\r][0x99][0x1a]%[0x99]7[0xc4]?z[0xa7]|[0xd1]I[0xd0][0xd7][0xed]:[0xba]N[0xc6][0x1b][0xed]?[0x9]-[0xed])[0x82]p[0xb4]1[0xe3]y8@
[0x14][0xf1][0x83][0xaa]F[0x11][0xb1]K[0xef][0x11][0xe9][0xbe][0x1c]D[0xba][0x8b][0xaa]I[0xe7][0xad]I[0x7][0xbe][0xdd][0xe6],[0x86][0xa3][0x13][0x99]oI:[0xfb][0xd9][0xe2]|K[0x92][0x13][0xfb][0xd0][0x9d][0x14][0x1b]H.[0xeb]C[0x2][0xfc][0xa4][0xb7][0xb1][0x2][0xf0][0x0][0x1f][0xe][0xb0]Fz[0x9b][0x93][0x98]k[0x1f][0xe]"[0xd7][0xf4][0x86]|[0xf9][0x19][0x86][0xec][0xb0]?$`[0xe7][0xe7]m[0xb5][0x86]D~I[0xda][0xd7][0xc3][0x19][0xd2][0x1a]@t[0x9c][0x1c]'"[0xc8][0xcd][0xe9]@[0xd4][0xef]-Cc[0x84]c[0x9d][0xc8][0xf2]'g[\n]"
2013/09/19 12:14:59:937 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xe2][0xab][0xed]9[0xe5][0xa9][0xf9]$![0xfe][0xc3][0xf4][tP[0x1f]QLA[0xbe]Y[0xf8]"8=]>1[0xef]{[0x1f][0x86][0x9c][0xa8]%i2Y[0xc3]$A[0xe7]`[0x19][0xf5]3[0x96]}9[0xe5]X[0xed]o[0xa8]b[0xac][0x96]?S[0xa4][0xca][0xc3]{.[0xb3]D[0xfc]p9[0x80][0x9e]~PU=[0xcd]n[0x88][0x15][0xcc][0x15]D4[0x92][0xff][0x87]91[0xf6][0xae][0x9f][0xbb][0xcd][0x8]i[0x9][0xe3][0xbb][0xbb]:[0xb2][0xba][0xf5][0xcf]%[0x14][0x80]cmA[0x92]Yc[0xf6][0xfe][0xde]}0[0xb9][0x9f]M2[0xc8][0x2]\&d[0x95][0xe][0xe5][0xbc]G[0xeb]D[0x84][0xb3]9D<[0x91][0x1c]([0xc2][0xe9]1[0x89][0xc]rrd1[0x11][0xce][0xc8][\r][0x0][0x13][0x9][0xe4]/![0xab]I[0xfe][0x92]`#[\n]"
2013/09/19 12:14:59:937 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xc6][0xb6]G[0x9b][0xd8][0x98]&[0x92]E[0x18]M[0x7]c[0x93][0xa3][0x19][0xb2]O[0xda][0x1c]F[0xb2][0x18]([0xa7][0x1e][0x95][0xfc][0xa2][0x8a]Q[0xc9][0xc8][0x1f][0x12][0xd1][0xc4][0xe6][0x10][0xeb]dr[0x16][0x92]#[0xdf]$[0x87]f[w[0xc4]o'[0xe7]Y[0xdb][0xaa]+[0xf7]&[0x11][0xfb][0xae]A[0xd5][\r]}H[0xc8][0xf7][0x1f][0xc1][0x14][0xd6]o[0x12][0x92][0x97][0xc8][0x1f][0x11][0x97]E[0x92][0xd3][0x89]:[0xdf][0x97][0x3][0xf8][0x91][0x1f]T[0xd5][0x8f][0xcc]g[0xde]V[0xa5][[0x93][0xa9][0xad]K[0x92]6f_[0x9a][0xa6][0xcd][0xd8][0xb6][0xf4]o[0x96][0xe3][0xcf]/[0xb4][0x1f][0xd0]dB[0x1b]Y[0x8c]cK[0xe][0xe2][0x8e][0xc4][0x7]3[0x9e]P[0xa4][0x88][0xd5][0x87]6A[0x82][0x11][0xed][0xc4][0x95][0x9a][0xe4],[0xe4]@[0xeb]r[0x0]'[0xf2][0x83][0xaa]:[0x11][0xc5][0x82]Hue[0xf4][0xe4][0xce]|7'[0xe][0xc7][0x93][0xf3][0x94][0xc2][0xd7]5dM[0x10][0x1f]b[0xc8][0x9d][0xcc][0x97][0x3]X[0xe4][0xf][0xaa]j[0x91]6[0x1d][\n]"
2013/09/19 12:14:59:937 PDT [DEBUG] wire - http-outgoing-0 <<
"G[0x92][0x84]x[0x12][[0xc4][0x1d][0xcf][0xcd]![0x8a]b}xC[0xe]}[0xc7]^[0xd5][0x98][0xe0][0xd8][0x95][0xb8][0xc0][0x94][0x9c]
[0xee][0x8a][0xfa][0x8]5DCa[0xca][0x1c][0xd4]o[0x12]1[0xa2][0x8c][0x8c][0x89][0xcb]+[0xc9]A.[0xf8]|8[0xc4]V=c"EQ>[0xfb]s[0xdd][0xb4]:[0xa2][0xdc][0xf1]![0x1a][0xca]8[0x9d][0xb0][0xe9]9[0x4][\n]"
2013/09/19 12:14:59:938 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xd3]7[0x89]X?[0xe6]x[0xbe]=0[0xa2]
[0xca][0xfd]|N[0xe4][0x1a]mr[0x1c]*[0xd3][0x98][0xab][0x11][0x85][0xf5][0xbe]o[0x9a][0x12][0xd1]Lr[0x88]"[0xd6][0xe4][0x18][0x92]|[0xda][0x1c]h<[0xc1][0xc4][0xb1][0x9b][0x84][0x8c]H[0x1a]R[0xc2]4eB[0xf1][0xe7][0xdc]][0x6][0x88][0x11][0xa9]2[0x17][0xb1]?$DG[0xfa][0x94][0xe5][0x3]:r$[0xf5]<[0xad]C[0xc7]s[0xd3][0x84][0xb8]l[0xe6][0xe9][0xd2][0xbe]W[0xe][0xea]#[0xca]"v[0x14][0x82][0x94][0xc4][0xcc]P([0x81][0xbd]Z#[0xae]w}[0xee]=2+[0xe3]j[0x8a][0xec][0x86]W_[0x8f][0x17][0xa9][0xce][0xd9]M"fHr[0x90]c[0x90][0xcd]![0xac]huAV[0xd8][0xcd]Al[0xa8]+q[0xf9]is[0x8c]I[0xca]n[0x12][0xa2][0xa1][0xd1][0x19][\r][0x8d][0x81][0xc4][0xe]+[0x97]!HC[0xd3][0x1a][0x13][0x85]l[0x12]#[0x9b]!y[0xe2][0xcd]Af[0xfd][0x1a]ND[0xfa]kMF?[0x9]B[0xf4]#[0x1d]*[0xc7][0xd8]$D[0xd3]2[0x88][0xd6]D[0xc9]aJ)[0x97]@[0x16][0xa4][0x13]:dZ[0xfa][0xf4][0x80]+[0xe7][0x1c][0x96][0xf9]s}[0xb2][0xbc][0xba][0x1a]Sj[0x9e][0x9c][0xc1][0xec]`s;[0x84][0x14]@/[0x1f][0x8c]][0xfb][0xa0][0xd6]3w$3s9[0xf5]<[0xfa]/[0xaa][0x98]G_[0x1e]TT[0x9c]$b[0xaf][0xbf][0xa2]7hD[0xa1][0xc8]u[0xa5][0xdc][0xa2]#[0xf9]"i[0x3][0xd9][0xc7]Jc[0xae]=%[0x87][0xb8][0x18][0xfc]r[0xea][0xe6]([0xcd][0xc]:[0xb3][0x94][0xe6][0xc4]u[0xe5][0xe4][0x4][0x92][0x7]M[0x8e]0v-[0xbd]w[0xe6][0xec]+I[0xc8]Ycr[0x94][0xf0][0x91][0x9b][0x83][0xe8]:9[0xc4]j$][0x98][0x99][0xd6][0x99][0xeb][0xae][0xbb]N[0x85][0xd1]O
[0xbb]F[0x19][\r]Y[0x1b]e<[0xd1]l[0xdd][0xa2][0xc7]DN[0xbe][0x92]C[0xb4][0x14]J[0x8e][0x11]m%[0x92][0xf3][0x1f][0x9a][0x9c][0xfc][0xb7][0x1f][0x12]x8s"[0x95]E[0x9b][0x83][0xe8]g[0x1a][0x14][0x81]n[0x12]27[0xd6]x[0xb2]r[0xff][0x12][0xef][0xff]Ou[0xbd][0x6]r^[0x95][0x1c]f[0x5]Z[0x82][0xe4]-w[0x1f]1h%3[0xa6][0xfa]fs[0x10][0xc9][0x9c]*r[0x16]_[0xd0]Y[0x83][0xb8]2qLt[0xe4],Nb![0x17][0x13]$[0x2][0xa9]O[0xb9][0x9c][0xfa][0xbe][0xea][0x17]U[0x8c]>[0xb5][\r][0xa8]b.IH[0xc6]99[0xc8][0xe]][0x9b]#e[0xd7][0xda]Gg[0xe6]Z[0x92][0x98][0xf6]=I[0x9a][0xd0]%[0xb7]M"<[0x92][0xf6][0x5][0x9d][0x10]j[0xa7][0x9a]Jl[0x12]"[0xdb]8[\r][0x1][0xaa][0x99]5[0xdd]E|[0x8c]l[0xb3]3[0xb2][0xcd][0xf5]=u[0xa8]{[0xa5]_T[0xd5]+M[0x9d]L[0xfd][0xb5]NCvj[0xc9]a[0xda][0x1a]'[0xc9][0xa1][0x93][0xeb][0xd4][0x11]rv[0xb9]9[0xc4][\n]"
2013/09/19 12:14:59:938 PDT [DEBUG] wire - http-outgoing-0 <<
"[0x97][0x1c][0x87]|@[0x92][0x90]5@&R[0xa7][0xa8]"[\r][0xfa][0xfa][0xf2]T[0x9]
$[0xe4][0xeb][0x8b]C[0x97][0xef]7[0x89][0xf9]j[0xfe][0xcd][0xd0]V[0xaf][0xb9]h[0xc6][0x80][0x8d][0x18][0x90]6[0x81][0xa6]l[0xae][0xb7]D[0x90][0xac][0xca][0xf4][0x14]R[0x85][0xdc][0xa3]:[0xd1][0xab][0xfd][0xc3]a[0xf4][0x13]Pr^[0xad]A[0x1d]%6[0x9][0x9]H[0xad]S.[0xc4]l1[0x87]Oj[0xe][0x1d]c[0xee][0x17][0xa5][0x11]K[0xf2]Et[0xfd][0xff][0xbc]![0x8b],![0xc1]$[0xb4]4[0xd6]D[0xe4][\n]"
2013/09/19 12:14:59:938 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xe6]"Xr[0x90][0xb]n[0xc9]Qb[0xdb][0xaf][0xa1][0xcc]+[\r]I2$9[0xaf][0xe1][0xc8][0x5]'k[\r])X[0xba][0x9c]z[0xc8][0xff][0x8b]*[0x86][0xfc][0xd6]:[0xd4]o[0xcf][0xda]@[0xe][0x8b]l[0xb7][[0x84]F[0x94][[0x8c]Dx[0x91][0xfd][0xd2][0x17]1k[0xad]Q=[0xa0][0xac]7[0xa4][0xb4][0xcb]v[0x3]7hD[0x83]y3[0xcc]w[0x83]CF6[0xe6][0x9a][0x82][0x8d][0x86]l[0xaf]l<%[0x10]u[0xe][0xa5][0xe9][0xd1][0x91][0x9e][\r][0xc9]Qh[0xee][0x8f]S[0x96]U'[0xb9]B[0x1e]r8t)5c#[0xc6][0xd7][0xce][0x86]\&[0xbd][0x1c]`m[0xfb]AU[0xd7][0xb6][0xd9][0x91][0xde][0x16]6[0xa9]N[0x89][0x9b][0x84][0xc4][0x12]sA[0xc7][0xa2][0x9b][0x84][0xf8][0xc8][0xe9]P[0x8a]u[0x93][0x18][0xdb]v$Uk[0xab]A[0xc7][0x7][0x9b][0x84][0xac]#kA[0xbd]v[0x92][0x84][0x94][0x1f][0xec];[0xe9][0x90][0xb7]]"[0xcc][0x88][0x94][0x99]i[0xc2][0xf4][0xc7][0xda][0x1c]d[0xed][0x97][0x1][0xf5][0xa3]4[0xe6][0xbd][0xaf][0xf][0x87][0xd8][0x19]'[0x7]9[0xec]7[0x11][0xa4]4[0xc7]D[0x99](K[0xa8]~[0x96]&[0xc1][0xf8]j[0x9]"
2013/09/19 12:14:59:939 PDT [DEBUG] wire - http-outgoing-0 <<
"d[0xcf]9[0xc0][0xaa][0xff][0x83][0xaa][0xae][0xfa][0x12][0xd0][0xcc]8[0x8c]t[0xd4]~=[0xdd][0x1a]5[0xaa][0x1f]TyT[0xd4][0x95]%[0xd3]`"[0xd2][0xc3]![0xf4][0x14]XD[0xca][0xbc][0xfe][0xf4]r[0x18][0xe9][0xa0][0xe3][0xe3][0x8d]B[0xfc][0xd3][0xe1]0[0xd2]A-[0x85][0xcc]:e[0xe3][0xd6][0x19][0xff]kc"+[0x9d][0x9][0xf1][0x8e][0xdc]~[0x1d][0x13][0xea]o[0x9c]$[0xa4][0xa8]m[0x1f][0x8f]
[0xf3][0xcd][0x1b][0x95]oK[0x12]2Gv[0xef]n[0x84][0xb3][0x90][0xf2][0xb1][0xe4]06[0xed][0xc6]D[0x81][0x87][0x3]L[0xfc][0xfc][0x5]h[0x3][0x18][0xcc][0xe1][0xd8][0xe6]
[[0xe4]X[0xcc][0xc4][0xcf][0x5][0x12][0x99][0xae]a[0x8d][0x19][0x8f]Q[0x89][0xb6]p[0xa8][0xe2][0xd7][0xdb]@t[0x94][0x1c]c[0x9c]l[0xfa]F[0xe4][0xeb]{3[0xe4][0x1e][0x9d]7G\[0xda]~[0xad][0x91]X[0x16]/[0xa7][0x1e][0x86][0xfc][0xa2][0x8a][0xde][0xe8][0xf3]j[0x7]"[0x9d]"[0xe][0xfb]r[0x8]-)[0xb5][0x9][0xdc](b[0x19][0xc9]U[0x16][0xb2][0xc9][0x87]Ch[0xe9]E[0x95][0xb5][0xe4][0xce]h)[0x90][0xd6][0xff][0xc9]A[0xee][0xd3]][0xe][0xa1][0xa2]@^[0xb4][0xbc][0x1c][0xc2][0x0]^TU[0xba][0xc1]4[0xa4][0xf6]![0x8d][0xb2][0xc9][0xc1][0xf4][0x85][0xba][0x1c]@[0xe1]?[0xa8][0xb2]t&[0xcc][0x91][0xab][0xf]w[0xa6][0xef][0xc4][0xa7]a*[0xa2][0xf1][0x87]Ch[0xfc]EU5>[0x99]n\>;t[0xc4][0xe1]s"[0xa5]d[0xbb][0xc9]
[0xb2]6[0x1d][0xe][0xf0][0xdd]~P[0xe5][0xef]&H[0xbf][0x88][0xcd]![0x8e]96[0x87][0xf9]j[0xc8]3[0xd9][0x9b][0x83]<K[0xb1][0x9b][0xc]"k[0xee][0xe1][0x10]Vd[0xd8][0xf2]=[\r]IIn[0xe]cE[0xc8][0x93][0xf4]/[0x87][0xd0][0xf6][0x8b]*k;[0x90]2[0xb9][0xcb]![0xa4]{Qu[0xe9][0x90][0xe3][0xfb][0xcb]A[0xa4][0x1b][0x98][0xbf][0x8d][0xef][0xaa]T[0xbd][0xfd][0xb1]A[0x8c][0x89]?[0x1c]DM[0x93]2[0xf1][0xd5][0xa0][0xda][0xfd]MBv[0x16][0x87][0x3][0xe8][0xe9][0x7]U[0xd7][0xd3]w/_[0xf]O[0x93][0x84]8[0x95][0xc3]A[0xf4][0xa4][0x94]SY[0x8d]IT[0xac][0x81]4[0x9c][0xf6]5[0x99]4[0xe5][0xe1][0x10]*[0x9a][0xcc][0x8e][0xf0]p[0x8][0x3]xQ[0x80]t[0xc8][0xe3]R[0x9]B[0xee][0xb8]][0xe][0xa2][0xa6][0xc9][0x19]A
[0x1][0xd8][0xe1]
[0xd2]]TY:[0xe6]V[0xd0][0xe5][0x10][0xd2]a[0xcf]Cm[0x14][0xb2]u:[0x1c]F:*[0xc1][0xb0][0x16][0xd2][0xdc][0xec]r[0x10][0xe9].[0xaa].[0x1d]r[0x12]9[0x88]t[0x86]y[0x15]([0x85][0xb2][0xb8][0x14][0xca][0xe2]R([0x89][0xc2]"[0x9e][0x17]U[0x1f][0x95]C[0xb][0xde]B.-_[0xe][0xa2][0xa6][0xe0]L[0x93]9U=[0x1c]F:[0xcc]4[0x85][0xc9][0x83][0x1c][0xe]![0x9d]`y[0x90][0xc5][0xf4][0x85][0xbc][0x1c]D:,[0xa7][0xb6][0x9b][0x8b]C[0xd2]Q[0xe7][0xeb]?[0xa8][0xba]t[0xc8][0x15][0xcd][0xcb]A[0xa4][0xa3][0x1a][0xe8]n[0x14][0x13][0x8a][0x9][0x17][0x8a][0x9][0x17][0x8a]1[0x97]G<[0xc3][0xa7][0xc9],Q:[0xa0][0xb5][0xee][0xe9][0xf2]G[0x80][0x98][0x9d][0x86]R[0xb7][0xd9]Qe[0x3]0({a[\r]s[0xbc]/[0xaa].[0xdd][0xb7][0xc9]k[0xdd][0x8][0xc][0xb9][0xae]{9[0x88][0x9a].[0xaa][0xae][0xa6]og%@MHw[0x9d][0xcb]A[0xd4][0x14][0x98][0x9a][0x1c]y[0xbc][0xf3]r[0x8][0xe9]^T]:[0xe4][0xf1][0xd6][0xfd]n[0x1][0x93]W}8[0x88][0x96][0x2][0xdb][0x8b][0x5][0xd4][0xf0]/IH[0xcf][0xaf][0xe4]@[\r][0xff][0x92][0xc4][0xcc]^iL[0xc1][0xa5]0[0xf]._[0xe]`I?[0xa8][0xaa]%I[[0xd0]w[0x93]F[0xdd]p[0xfb]E[0xd5][0xe5]C[0x9e][0xd0][0xbb][0x1c]D:[0xa7][0xfc][0x80]t[0xe6][0xcc][0xf6]p[0x8][0xe9]:vf[0x9b][0x9b]CH[0xba][0xc5]I[0xb7]8[0xe9][0x90][0xc7][0x81]/[0x87][0x18][0xd2]l[0x8c][0xeb]}8[0x84][0xc2]_T]:[0xa4][0xdf][0xbe][0x8b]0U[0xd3][0x87]Ch[0xe9]E[0x95][0xb5]$[0x93][0xd9][0xb1][0x8a]
[0xcf]+][0xe][0xa2]&[0xe5][0xd4][0x4][0xad]+[0x2]E;[0xfa][0x9d]'[0xc0]:[0xce]<[0x12][0xbe]9[0x8c]sL2G[0xfa]0l[0xe][0x95]D[0xfb]A[0x95]-[0xd2][0xb1]M[0xfd][0xf][0xaa]<[0xaa]`n*[0x1c][0xe]2$[0xc8][0xc][0x2][\n]"
2013/09/19 12:14:59:940 PDT [DEBUG] wire - http-outgoing-0 <<
"O[0x82][0xb]O[0x82][0xb]O[0x82][0xc9][0xc9][0x1e][0xe]3$[0xc6][0xa3]<[0x1c]D[0xe1][0x82][0xcd]_[0xa6]7[0xdc][0xe5]0[0xd2]q[0xe6][0xc4]T[[0x1c][0xe]"[0x1d]Vm!A][0xee][0x95]p&W[0x9c]
[0xe4][0xc0][0xe0]p[0x10][0x85];[0xb5][0xad][0xd7][0x86]4@[0xbb][0x1c]@[0xba][0x1f]T]:[0xe6][0xf6][0xc3][0xe1]
[0xd2]Q[\r]Y>[0xf][0xfb]
[0xd2]1[0xaf]\^[0xe][0xa1][0xa5][0x8e]9L[0xed]H[0xaf][0x88][0xe4]0[0x7][0x87][0x87][0x83]h[0x9];8[0xd4][0xee][0x8c][0x1f]x8[0x88]t[0x8e][0xf9][0x81][0x8e][0xb4][0xfa][0xbb][0x1c]F:[0xea][0xa8]G;s[0x13][0xee]p[0x10][0xe9][0x2][0x9b][0xbf][0xa3]1[0xf3][0xee][0xe1][0x10][0xd2][0xbd][0xa8][0xba]tL[0xa5][0xd4][0xe1]
[0xd2]a[0x95]R[0x89]b[0xe6][0xdd][0xc3]a[0xa4][0xc3][0xe6][0xdd]`[0xe][0xb4][0xe][0x7][0x91][0xe];[0xd0][0xd2][0xc1][0xdc][0x1b][0xd6][0xc9][0xec][0xee][0xf][0x87][0xd0][0xd2][0xc4]v[0xf7]:[0x99]{[0xb1][0x87][0x83]H'[0x98][0x85]O&Qp8[0x8c]tT[0xa2]@'[0x93]z>[0x1c]D:[0xec]H3Q[0xc8][0xb1][0xc1][0xe1]0[0xd2]Q[0xc7][0x6][0x89]b[0xa2][0x82][0x89][0xed][0xca]P[0x80]t[0xd0][0xbc]sn[0xde]97[0xef][0x98][0xa3][0x9a][0xc3]A[0xa4][0xc3][0xca][0xca][0xf6]#[0x92][0x90]t[0xdc][0xb7][0xc3][0xba][0xc9][0xe8]jL[0xbc][0xfa]p[0x8][0xe9]^T][0xba][0xce]dT[0x1e][0xe]"[0xdd]E[0xd5][0xa5]c[0xe][0x92][0x93][0xc3][0xc4]<[0xdc][0xf5],[0xe5][0xae]g[0xe9][0xd3][0xce]?I[0xab]([0x81][0xb6][0xae][0xc2]m][0x85][0xdb][0xba][0xea]`[0xca][0x8c][0xf5][0xb9]$PV[0xd3][0xc3]![0xd4][0xf4][0xa2][0xea]jB[0x9a]T_[0xe]"[0xdd][0xc4][0xe2]0C^[0xbb][0xbf][0x1c]B:[0xe3]|[0x81]!O[0xe8]\[0xe]#[0x1d]v~`[0xe]I[0xe7][0xd8][0x90][0x9c]9,?[0x1c]`H[0xfb]]GbH[0x87][0x3][0xd8][0xc0][0xf][0xaa].[0xdd]D[0xe6][0xef][0xe1]
[0xd2]Mj[0xfe]Z[0xa3][0xba]MZc[0xa2][0xfa][0xc3][0xa9][0x8][0xb7]v[0xa9][0xf9][0xe8][0x19][0xf7][0xd6][0x16][0x96][0xf][0xc7][0x9a][0x9f][0x8e]N;e_#U{[0x94]|9}V[0xdf][0xad]|8[0x11][0xc5][0xc5][0xe9][0xcb][0x19][0xcd][0xcb][0xb7]D[0x1e][0xd2]j^K[0x86]~9[0xb3]y[0xf1][0xb6][0xc9][0xc3][0x99]Vl[0xe][0xfa]p[0xca]%\[0xf][0xc7][0xa3][0xe8]l/[0xa7][0xf8][0x6][0xd6][0x97][0x93][0x9f][0xab][0xd8][0xfd][0xe3][0xe1]L[0x9f][0xd5][0xae]i_[0x92][0x9c][0x97][0xf][0x8b]#[0x12]u',HL[0xca]o[0xf1]}I[0xda][0xab]Ui[0xf]g[0xc]+G[0xb7][0xf]jy#[0x1c][0x88][0xae][0xc7][0x1c][0xeb]J[0x92]j;[0x9a][0xc3][0x89]bw[0x8d][0x87]c[0xb2][0xa0][0xcf][0xef][0xeb]y[0xd8][0xaf][0xba][0xc][0xed]G[0xa6][0x89][0xaf][0x96][0x9c]b[0xbe][0xe4][0xe1][0xf4]V~[0x8d][0xe3][0x90]V[0xf9][0xc1][0xe2]K*[0xe6]`[0x1f][0xce]x[0x1c]d}D[0xf3]y@[0x7]!![0xdf]uC[0xbe][0xff][0x1a][0xa3][0xda]9[0xfb]%[0x11][0x1][0x96]-)>[0xea]y8V[0xec]@[0xf4]pl}[0x3][0xc7][0xba][0x86]2[0xc2][0x9e][0xff][0xde][0x8b][0xb4][0x95][0xff][0xda][0xf8][0x1b][0xe9][0xf3]W[0xff][0x91]Tb[0xfe]![0x85]=[0xb3][0xb6][0xec][0xd9][0xa2][0xda][0xb7][0xe0][0xcb][0xf1][0xd6][0xbe]/[0xdf][0x94]e[0xf3][0xd6][0xcb];[0xac]CZ[0xbd][0xfa][0x80][0xf2]%[0x15][0xeb]"[0x1f]No[0xdf][0xba][0xe6][0xf2]w[0xf3]^[0xbd][0xc2]u8V[0xbe][0x1c]~I[0x88][0xff][0xf7][0xd1][0x2][0xb2][0xa4][0xf1][0xf4][DH[0xc4][0xa6]&9[0xd0][0xda][0xe6][0xc3][0xfa][0xe3][0x1][0xfe][0xb8][0x19][0xf0]C[0x9a][0xa3]x[0xe7][0xe6][0xe5][0x10]+[0x89]O[0xa3]t[0x94]
[0x16][0xb9][0xc6][0xf7]u[0x98][0xba][0xae][0xd3][0x8d][0x10][0xab][0x9b][0xaf][0xe7]j"0"C[0xb6][0xb5]^~[0xfa][0xfa][0xe1][0x9c]B[0xc8][0xfa][0xd7]O[0x12]b[0xd7][0xd6][0x8b][0xcf][0x8c][0x1f][0x8e][0x14][0x9f][0xe1]}9[0x88][\r][0xc5]([0xbf][0xc3]wH[0x8e][0xa4]|[0xa2][0xb5]b[0xcb][0x84][0xc3][0x91][0xe2][0x1d][0x8d][0xc3][0x89]b[0x1b][0x80]p*[0x99][0xec]E[0x15]3[0x11][0x89]z"[0xe4][0xaa][0xf][0xd9]$DO}[0x15]/[0xa4][0x1e][0xe][0x93]:[0xcc][0x9f]#[0x11]M[0x8c]9[0x98][0x88]&I'[0xb1]^[0xfd]fI"[0x92]~[0xc9][0x11]&[0xa2][0x8d][0xe1][0xc1]x[0xfe][0x98]:[0x18][0xcf][0x16][0xb9]_G,`[0xc5]`[0xf2]5IB[0xf6][0xd9]![0xa3]3[0x19][0x84][0x90][0x93][0xae]-[@[0xb9]{[0xc7][0xe5][0x14][0x1b][0x95]=[0x1c][0xb5][0x8e][0xac]#[0xe5]'[0xea]/[0xa7][0xf8][0xd6][0xf1][0xc3][0xb1][0xe]eX7[0x9][0xf9]b[0xa6][0xca][0xec]B[0x93]d[0x94]l[0xd5]w[0xa5][0x1e][0xce]~[0xa9][0x96][0x19][0xd1]9[0x82][0xaa][0xcf][0xb4][0xe8]:[0x99]ud[0x9f]B[0x13]Z[\n]"
2013/09/19 12:14:59:941 PDT [DEBUG] wire - http-outgoing-0 <<
"-[0x16][0xb6][0xfd][0x83][0x3][0xc4]Z?[0xa8]j[0xac][0x15]Z[0xbc][0x93][0xf5][0xf][0xe]"][0xfd]N[0xd6][0x7][0xe5][0xad]I[0xf1]A[0xd7][0xcb]!v6[0xc9]y[0x8a][0xd1][0xaa][0xf3]d'5[0x9f]\Dq[0x9e][0xec][0xa4][0xe6]@r[0x91][0x1f][0x12][0xe0][0x97][0xbc][0x8d]j7[0xfc][0x97][0x3][0xac]n[0xde][0xe6]$[0xe6][0xc8][0x87][0x83][0xc8]5[0xbd][0x1][0xab]mr[0xc2][0x90][0xb8][0xf6]C[0x2][0xe2][0x11]o[0xab][0x95][0xdf]]}I@n
$9[0x93][0x89][0x8f][0x93][0xe4]D[0xc][0xb9]9[0xc5]{[0xa6][0xf]'[0x83]c[0x84]c[0xa3]7[0xc6][0x13][0xd9][0x14][0xc4][[0xdb]s[0xe2]W[0xff]fIB<[0x88][0xe9][0xb7][0x0][0xa5]>[0xa2][0xdc]d!3-[0xbc]x[0xe3][0xf5][0xcb][0xe9][0xe9][0xf4][0x89][0xf1][0xf4]>[0x88][0xf3][0xe7][0xe4][0x18][0x13][0xd3]~H[0x84][0xb7][0xde][0x1c][0xe4]D4[0xa3]uf~\N9V[0xfb][0x1b][0xaa][0x18][0xab][0xe5][0xcf][0x14][0xa9][0x1b][0xf2][0x9e][0xcb]5[0x11][0x87]\[0xe][0xa0][0xa7][0x1f]TUO[0xf3]"
2013/09/19 12:14:59:941 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xa9][0xd4][0x0][0xf4]4[0x88]=[0xf2][0x87][0x83][0xd8][0xe5]\[0xe]I[0xc6]d[0xc7][0x92]3'[0x13]![0xf5][0xa5][0xc8][0xaa][0xdd]W0~R[0xc7]d"[0xad][0xae]K[0x98][0xd5][0xb6][0xab]#[0x11]I~[0xfb][0x5][0x8d][0xc8][0x1a][0x93][0xd7][0xf0][0xee][0xc8]Y]r[0x6][0x93]!K[0x92]P[0xb6][0x9d]$$[0x6]p(C[0xe6]=Z[0xf1]m[0xf2][0xcb][0x81]"[0xc9][0x1e][0xb3]Q$YL,[0x99][0xbf][0x84][0xac][0x93][0xf9]K[0x82]T[0xb4]m[0x12]s[0xd2][0x92][0xa4][0x89][0x8d][0xa9][0xda][0x17][0xe4]pt0[0x16]0[0x9a]!;[0xc9][0xcd]a$[0x8b][0x81]r[0xea][0xf1][0xd6]/[0xaa][0x18]o[0x8d][0xfc]![0x91][0xfd][0xd9][0x1c]b?[0x91][0x1c][0xa6]:b[0x93][0x1c][0x9a]m[0xdd][0x90]<[0xeb][0xd8][0xcb]$[0xc3]y[0xd6][0xb6][0xea][0xba][0xbd]I[0xc4][0xda]6[0xa8][0xfa][0xba][0xf][0x9][0xb1][0xa3][0xd9][0x88][0xb]c[0xc9][0xa9]v[0xe4][0xfb][0x7][0x7][0x98][0xfd][0x13][0xe8][0xc8]wP[0xbe][0x98][0xec]x[0xc6]mL[0xcd]g[0x92][0xb4]1[0xfb][0xa4]4%[0xc6][0x96][0xa4][[0xf1][0xe9][0xc3][0x3][0x9a]LH"[0x8b]q$[0xe2][0xc5][0xf7][0xa0][0xe]'[0x98]c[0xe4]MB[0xb6][0xb6]C;q[0xdd]+9[0xd5][0xd7][0xec][0xff][0xc1][0x1][0xa6][0xbf][0x2][0xaf][0xd9]_T[0xb1]m[0xda][0xe1]`[0xc1][0x9f]*Q[0x8a][0x98][0x1c]g$;[0xd7][0xce][0xcb][0x1c][0xe4][0x1e][0xf4][0xcb][0x1][0xec][0xe8][0x7]U[0xb5]#[0x9b][0xca]lm[0x93][0xc4]\[0xb0][0xfb][0x90][0x90]m[0x84][0xad][0xc5]X[0xc0]"[0xca][0x90][0x93]S[0xed]D[0xf4]p[0xbc][0xfa][0x86][0xdf][0xe1][0xc]A[0xca][0xd0][0x92][0xa4]H[0xf2]ox[0x10][0xf7][0xa1]}[0x84]N([0xa8]M[0x12][0x12][0x88][0x84])[0x14][0xae]%[0x89][0xf8][0xfa][0x19]e#[0xc7]H[0xf9][0x1b][0xc8][0x81][0xf6][0xe6][0x10][0x9b][0xf5][0xfc][0x8d][0x89][0x14]j[0xf9][0xec][0xcf]e[0xe8][0xea][0x88][0xfa][0xd3][0xcc][0xac][0xfc][0xed]7[0x9][0xf9][0xf6][0xa7][0xbc][0xba][0xcc][0x11]h[0xeb][0xb0]I[0xc4]*;[0xc7]cE[0xc0][0x88][0x82](f[0xf4]9[0x91][0xb][0xec][0xc9]q[0xa8](f[0xae]F\[0xd2]H[0xce][0x12]D[0xb2][0xf5][0x14][0x1f][0x3][0x92][0xe9]$V[0xd8][0xe4][0x10][0xe5][0xc7][0xc9]1d[0xf5][0xd8][0x1c]h<[0xc1]D[0xfb]Sfc[0xd2][0xd8]S[0xa4][0xd8][0xbc][0xfb][0xe1][0xec]>![0x8]G[0xcf]E[0xc1]bT[0xb4]ID[0x82]v[0xaa][0xf]H[0xd7][0xea]HB|j@
[0x7][0xe2][0xd3][0xba]1[0xc7][0xbd][0xd3][0x6]R[\n]"
2013/09/19 12:14:59:941 PDT [DEBUG] wire - http-outgoing-0 <<
";M[0x8a][\r][0xf9][0xe][0xc7][0x16]$[0x99][0x1b][0xd3]([0xc0]gt[0xa2])[0x8b][0xef]6j[0xc8]\[0xb][0x85][0x8e][0xc]Vk[0xc4][0x85]J_}=~[0xad]:[0xfb]7[0x89][0x98]k[0xc9]A[0xe][0xe8]W[0x17]dm[0xdc][0x1c]F[0xd3]:[0x88][0xe8]!9P[0xd9][0xd1]&![0x1a][0x1a][0x9d][0xd1][0xd0]N[0xce][0x10][0x9c]\[0x88]
[\r]M[0x83][0x8a][0x5][0x92]D\[0x14][0xfb]p[0x90]Y[0xb6]:T[0xe0][0x9d]{Fd[0x8f][0xb6][0xd6]D[0xf2][0xe0]+A[0x88][0xa6][0xa5]C[0xe5][0x1d][0x9b][0x84]|3a[0xca]N[0x97]>[0xfd][0x17][0xcb][0x19][0x83]e[0xfe]\[0x11]-[0xaf][0x1e][0xc6][0x14][0xd3]'g0[0xbb][0xc6][0xdc]:
qzF[0xe9][0x8d][0x88][0x1d][0x96][0xf][0xc6][0x8a]|P[0xeb][0x87]C3[0xdf][0x1d][0xc9][0xce]\N[0xfd][0xc4][0xe1][0x17]U<qH[0x14][0xd3][0xac][0xc8]W[0xf4][0x6]E[0x8f][0xa1][0xc8][0xc5][0xae][0x15][0x86][0x9c][0xee]&[0x87][0xe9]u[0xeb][0xd2]:[0x92]}[0x92]6[0x90][0xbd][0xac]4[0xe6][0xca]Zr[0x90][0x12][0xf1][0xcb][0xa9][0x1b][0xb6]4[0xab]?[0x4]zP[0x8e][0x9c][0xa7]H[0xb]$[0xab][0x9a][0x1c]af[0x9a][0xf4][0xea]3[0xb7][0x97]S|[0x81][0xfb][0xe5]
[0x1a]J[0xe][0xb1]:[0xee]z[0x15]d<[0xa3]!k[0x88][0x8c]I4[0xbb]J[0x8e]#[0xc5]X2[0x98]*[0x13][0x99][0x13][0xf1][0xd4][0x9b][0x83][0xe8]g[0xa7][0xaf][0x98][0x19][0x96]$[0xc4][0x82][0xd6]xNR[0xaa]Q[0xf1]&![0xdf]~i'V[0xe9][0xdd]w[\r][0xf2]ff[0xcc]*dN[0xb4][0x84][0xf8]p[0x90]o[0xef]T)o[0x92][0xa0]K8[0xb2][0xf3]![0xc]):[0xd1]R09HC([0xdf]][0xc0][0x91][0xf9]q8[0xf5]x[0xff][0x17]U[0x8c]e"
2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xb4][\r]$[0xef][0x98][0x1c]d[0xff][0x99]>[0xa4]3[0xb6][0x9d]$[0xe8]J[0xaf]v[0xea]:[0xdf]&[0x11][0x1e]@[0xfb]BNS[0x92][0x3][0x9d][0xef][0xe8].[0xb]cH[0xb3]#1[0x96][0xce][0x9][0xd5][0x1a][0xe8]\[0xf5][0x87]{[0xfe][0x15]U[0x9d][0xb9]S[0xa1]][0xa8]NC[0xa2][0xec][0xe4]0[0xad][0x97][0xf7]C[0xaa][0xd0][0x99][0xda]~[0xb4][0x94][0xc8]Cm[0xe][0xb1][\n]"
2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xec]gF[0xa1][0x19][0x97]$[0xc4][0xe3]f[0xfc]G[0xc4]m[0xba][0x14]:}[0xd8]$"[0xfa]W[0x99]H-[0x9e][0x8a]4[0xc8][0xae]E[0x16][0x13]%m[0x12]b[0xd7][0xe2][0xd0][0x85][0xee]MB[0xec]q[0x87][0x92][0x9b]S[0xbd][0x14][0xa2][0x12]D[0xb7]lWm[0x2]9#[0xed]Hr=9[0xc8][0xdd]B[0xdd]s[0x9f][0xe1],h[0x82]([0xb4][0x14][0xa9]A[0x9d]sT[0x9d][0xe8][0x99][0xfb][0xe1]0[0xdf],[0xa0][0xb4][0xfa][0xae][0x82]H[0xd6][0xa0]m[0xe4]&![0xae][0xdf]zg[0xae];$[0x89]r[0xd9]&[0xd0]e[0xe]=[0x89][\r][0x80][0xe4][0xd0][0x9d][0xc0]$u[0xc8][0x7][0x18]s[0xc0][0xa6][0xde][0x90][0xc3][0x95][0xcd][0x81]$[0xf3][0x86][0xa4]G[0xd5];Tl[0xac][0xbe][0x88][0xe][0xbc][0xc9]1$I[0xa2][0xee][0x8e][0x4][0xa3][0xd1][0x98][0xf7][0xa4]>$$[0xac][0x89]5[0x11]M[0x7]sq29L[0xc2]&[0x14]:0[0xb6][0xd6][0x90][0x2][0xaf][0xcb][0xa9]o[0xd7]Q[0xc5][0xed][0xba][0xb5][0xe]u[0x84][0xdc]/[0x1b][0x13]s[0xcd]zC[0x8a][0xbc][0xf6]R[0xb]Y@[0xef][0x88]M&[0x7][0xf2][0xd8][0xd6][0x7][0xf3][0x9a][0xe0]~t[0x5])[0xa8][0xcc]p[0x4]9Z[0xdd]/[0xf6]"[0xba][0x1e]O[0x99]G[0x9d]Cizte[0xe2]Z[0x1b][0x82][0x8d][0xe9][0x14][0xb1][0xd5]I[0x8e]l[0xfc][0x93][0x3]E[0xa3]I[0x82][0xae][0x16]g[0xc][0xc1]x[0xb6][0xd9][0x90]+[0xc1][0x97][0x3][0xac]$?[0xa8][0xea]J2[0xa9][0x8e][0x97][0x9b][0x84][0xac][0xb8]s1[0xf][0x1c]o[0x12]t[0xd0][0xbe]I[0xc8][0xea]6[0x9f]>[0x85]e[0x8e]B[0x89][0xdf]}[0x93][0x9f]9[0xd8][0xd8]$f[0xbe]9rd[0x93][0x1c]G[0xec]q5[0xe8][0xe8]o[0x93][0x90][0xaf][0xbf][0xb0][0x19][0xb2][0x16]r<nK[0x90][0xd2][0xfc][0xe4]
G[0x91][0xb6][0x94][0xf1]E2[0xa0].[0x9e]I[0xa2]VHa.[0x86]'[0x7][0xc9]En[0xe][0xa3]kA[0xca][0xcf]L[0xa8][0xe][0x9e]&[0xc1]x}[0x9]E[0xe6][0xfd][0xe1][0x0][0x11][0xc4][0xf][0xaa][0x1a]AH@s[0xed][0xe1]0[0xd2]Q;mU[0xe4]t$9T[0xbf][0xf3]_T]:[0xa4][0x18][0xde][0x94][0xba],f[0x19][0xd8]
[0xd6][0xa4][0xc1]D[0xed][0x87]C|[0xb7][0xc0][0xa2]v[0xe6][0xcd][0xb4][0x97][0xc3]H[0x7][0x15][0xa3]l[0x14][0xe2]w[0xf][0x87][0x91][0xe]j[0xc3]e[0xd6][0xa9][0xb9][0x92][.$[0xeb][0x92]K8[0xb2][0xf2][0x9a]
'[0x12][0xb6]_[0xcb][0x86]4[0xf4][0x94][0xff]VG[0xe4]mA[0x1c][0x85]v[0xa4]IB[0xe6][0xc8][0xee][0xe6][0x8e]p[0x16][0x13][0xe3][0xb8]BE[0x84][0x9b][0x84][0xcc][0xe]7*C[0xe2][0xc6]D[0xca][0x87][0x3]8[0xa3][0x98]L[0xc2]5[0x16]R[0x1d][0x95][0x1c][0xc6][0x85][0xe4]R[0xcb][0xc8]e[0xd0][0xfd][0x81][0xfd]b&[0xb4]-[0x9][0x87]*[0xf6][0xbd]u[0xe2]i[0xea][0xe4][0xc]D[0xdb][0xc9]Q[0xc6][0xf1]o[0x12][0x11]
%[0xc7][0xa8][0x11]1[0x96][0xbd][0xdf][0xf1]"fZr[0x10][0xc7][0x9f][0x1c]d[0xb][0xe1][0x9d]*[0x8c][0xd8]/[0xca][0x12][0xe1][0xcc][0xe5][0xd4][0xc3][0xc7]_T[0xd1]c^[0xcd]A[0xa4]Sd[0xc1][0xbe][0x1c]BKJ%%6[0x8a]Xj3:bf[0xc9][0xe1][0x10]ZzQe-[0x5][0xf2][0x88]Gr[0x90][0x9b][0xde][0x97][0x83][0x88][0x86][0xbc][0x6]q9[0xc4][0x87]{QU[0xe9][0x6][0xd3][0xa2][0xde][0x87]4[0xca][0x96][0x6][0xd3]'[0xec]r[0x0][0x85][0xff][0xa0][0xca][0xd2][0x99]@[0xab][0xd3]pg:[0xd0]|Z(#[0x1a]8[0x84][0xc6]_TU[0xe3][0x93][0xe9][0xf2][0xe6][0x93][0xea][0xf6][0x94]$[0xe4]8`s[0x88][0x8d][0xe9]n[0xf1][0x89][0xac]M[0x87][0x3]|[0xff][0x1f]T[0xf9][0xfb][0xb][0xd2][0x91]ys[0x18]m3wdv[0x13]TH.[0xa4][0xcb][0xc2]n[0xcb][0x89][0xac][0xdd][0x87]CX[0x91]aa[0xc0]4c[0xb4][0xe4][0xc8][0x8d][0xbd][0xcb]![0xb4][0xf4][0xa2][0xca]Z[\n]"
2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xa4]C[0xc6][0xe5][0x10][0xd2][0xbd][0xa8][0xba]tH[0xd9][0xc5][0xe5]
[0xd2][\r][0xcc]O[0xc6][0xb7][0x80][0xa7]z[0xc3]m[0x83][0x18][0x13]8[0x88][0x9a]&e[0xe2][0xf9][0x7][0x93][0xc5][0xdd]$dgq8[0x80][0x9e]~Pu==)[0xb8]rx[0x9a]$[0xc4][0xa9][0x1c][0xe][0xa2]'[0xa5][0x9c][0xca]jL[0x82]a[0x8d]`[0xb4][0xc4]$[0xf2]/[0x87]P[0xd1]dv[0x84][0x87]C[0x18][0xc0][0x8b][0x2][0xa4]C[0x9e][0x9b]K[0x10]Rar9[0x88][0x9a]&g[0x4][0x81][0x84][0xdf][0x87][0x83]HwQe[0xe9][0x98][0xfb]S[0x97]CH[0x87]=<[0xb7]Q[0xc8][0x96][0xe7]p[0x18][0xe9][0xa8][0x4][0xc3]b[0xee][0xbe]\[0xe]"[0xdd]E[0xd5][0xa5]C*[0x1f].[0x7][0x91][0xce]0[0xaf][0x2][0xa5]>[0x16][0x97][0xfa]X\[0xea]#QX[0xc4][0xf3][0xa2][0xea][0xa3]rh[0xc1][H[0xf3][0x82][0xcb]A[0xd4][0x14][0x9c]i2[0xe7][0xa1][0x87][0xc3]H[0x87][0x99][0xa6]0y[0x90][0xc3]![0xa4][0x13],[0xf][0xb2][0x84][0xc9][0x85][0x1d][0xe]"[0x1d][0x96][0xb][0xdb][0xcd][0xf8]![0xe9][0xa8]s[0xf1][0x1f]T]:[0xa4][0x88][0xf1]r[0x10][0xe9][0xa8][0x86][0xd3][0x1b][0xc5][0x84]b[0xc2][0x85]b[0xc2][0x85]b[0xcc][0xb5][0x1f]?[0xbd][0xbe][0xea]K[0x94][0xe]h[0xad][0xd3]o[0xcc]C[0x80][0x98][0x9d][0x86]R[0xfd][0xc]~Qe[0x3]0({a[\r]s[0xbc]/[0xaa].[0xdd][0xf7][0xb6]~[0xdd][0x8]l2[[0x96][0x87][0x83][0xa8][0xe9][0xa2][0xea]j[0xfa]v[0x8f][0x3][0xd4][0x84][0xdc]l[0xbb][0x1c]DM[0x81][0xa9][0xc9][0x91]Gx/[0x87][0x90][0xee]E[0xd5][0xa5]c[0xe][0xec][0x96]Cy[0xd5][0x87][0x83]h)[0xb0][0xbd]X@[0xed]Z[0x93][0x84][0xf4]5L[0xe][0xd4][0xae]5I[0xd0][0xec][\r]f[0x9b])[0x8d])[0xb8][0x14][0xe6])[0xf7][0xcb][0x1],[0xf2][0x7]U[0xb5]H[0xd9]
[0xdf]_[0x1a]uS[0xf2][0x17]U[0x97][0xcf]!+p[0xca][0x9f][0xfc][0xa0][0xca][0xd2]Qw[0xd2][0x92][0xc4][0x9c]"[0x1f][0xe][0xa1][0xa7][0x8e][0x9d]"[0xe7]v[0x15][0x92]nq[0xd2]-N:[0xe4][0xb1][0xf0][0xcb]![0x86]4[0xa0]i7[0x1b][0xb2][0xa8][0x1c][0xe][0xf1][0xe1]^TYK[0xc2][0xd4]q[0x1f][0xe]![0xdd][0x8b][0xaa]K7[0x99]=[0xb4][0x8][0xd2][0xc3][0xf3]r[0x10]5)[0xa7]&h[0xaa][0x8][0x13][0x89]~[0xed][0x1b]XS[0x14][0xe9]-[0x98][0x1c]a[0xfc][0x9b]"[0x9d][0xc5]\[0x1c][0xd3][0x90]3[0xa5][0xc9][0xf2]<[0x1a]OX[0xf6][0x8b]*[[0xb6]c[0xe9][0x8a][0x1f]TyT[0xc1][0xdc][0xc1]8[0x1c]dH[0x90][0x19][0x4][0x14][0xe6][0x4][0x17][0xe6][0xbc][0xa8][0xba][0x96][0x98]l[0xf3][0xe1]0Cb<[0xd3][0xc3]A[0x14].[0xd8][0xfc]e:1^[0xe]#[0x1d]gNL[0x1d][0xc9][0xe1]
[0xd2]au$[0x12][0xd4][0x5]h[0x9]g[0xb2][0xe0][0x9]B[0x8e]B[0xe][0x7]Q[0xb8]S[0x89][0x6]mHK[0xbe][0xcb][0x1][0xa4][0xfb]A[0xd5][0xa5]CZ[0xfb]\[0xe]"[0x1d][0xd5][0xda][0xc7][0x95]y[0xf1][0xf6]r[0x8][0xe9]:[0xe6][0xe8][0x94]y?ws
-1G[0xa2][0x87][0x83]h[0x1b];[0x12][0xd5][0xee][0x8c][0x1f]x8[0x88]t[0x8e][0xf9][0x81][0x8e]4[0xc][0xbf][0x1c]F:[0xea][0x10]K;s7[0xef]p[0x10][0xe9][0x2][0xf3][0x3][0xa3]1[0xf3][0xee][0xe1][0x10][0xd2][0xbd][0xa8][0xba]tL[\r][0xd8][0xe1]
[0xd2]a5`[0x89]b[0xe6][0xdd][0xc3]a[0xa4][0xc3][0xe6][0xdd]`[0x8e][0xd8][0xe][0x7][0x91][0xe];b[0xd3][0xc1][0xdc]d[0xd6][0xc9][0xec][0xee][0xf][0x87][0xd0][0xd2][0x8b]*ki"[0xcf]~\[0xe]"[0x9d]`[0x16]>[0x99]D[0xc1][0xe1]0[0xd2]Q[0x89][0x2][0x9d]L[\n]"
2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xfb]p[0x10][0xe9][0xb0]C[0xd6]D![0xc7][0xf][0x87][0xc3]HG[0x1d]?$[0x8a][0x89][\n]"
2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 <<
"&[0xb6]+[0xff]A[0x1][0xd2]A[0xf3][0xce][0xb9]y[0xe7][0xdc][0xbc]c[0x8e]|[0xe][0x7][0x91][0xe]+[0x98][0xdb][0x8f][0x1b]C[0xd2]q[0xdf][0xe][0xeb][0x93][0xa3][0xab]1[0xf1][0xea][0xc3]![0xa4]{Qu[0xe9]:r[0x9b][0xe6]p[0x10][0xe9].[0xaa].[0xdd][0xf3](D[0xf9][0xb2][0xbd]rW[0xc6][0x94][0xbb]2[0xa6][0xeb]qQcW[0xf6][0xd6]P[0x2]m:[0x85][0xdb]t[\n]"
2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 <<
"[0xb7][0xe9][0xd4][0xc1][0x94]>[0xab]2[0xbd][0xa5][0xe][0x87]P[0xd3][0x8b][0xaa][0xab]i2[0x11][0xd4][0xc3]A[0xa4][0x9b]X[0x4]e[0xc6]D[0xbf][0xc6][0xf9][0x2][0xe3]|[0x81]![0xcf]:][0xe]#[0x1d][0x96][0xf9]7[0x87][0xa4]slH[0xce][0x1c]s[0x1f][0xe]0[0xa4][0xfd][0xda](1[0xa4][0xc3][0x1]l[0xe0][0x7]U[0x97]n"[0xf3][0xf7]p[0x10][0xe9]&5[0xad]1Q[0xf4][0xe1][0x10]C[0xea][0xf2][0xde][0xf8][0xff][0x7][0x6]l[0xf]x[0x9d][\r][0x4][0x0]"
2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 << "[\r][\n]"
2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 << "0[\r][\n]"
2013/09/19 12:14:59:983 PDT [DEBUG] wire - http-outgoing-0 << "[\r][\n]"
2013/09/19 12:14:59:984 PDT [DEBUG] PoolingHttpClientConnectionManager -
Connection [id: 0][route: {}->http://adl-ddm.advertising.aol.com:50000] can
be kept alive indefinitely
2013/09/19 12:14:59:984 PDT [DEBUG] PoolingHttpClientConnectionManager -
Connection released: [id: 0][route:
{}->http://adl-ddm.advertising.aol.com:50000][total kept alive: 1; route
allocated: 1 of 2; total allocated: 1 of 20]
2013/09/19 12:14:59:984 PDT [INFO] Channel MLS-DDM-TEST - Completed
Processing for hourperiod 383227 in 471ms
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.119 sec


On Thu, Sep 19, 2013 at 11:17 AM, Oleg Kalnichevski <ol...@apache.org>wrote:

> On Thu, 2013-09-19 at 10:13 -0700, Hans Uhlig wrote:
> > I am connecting to an oddly configured server that sends CSV data both
> > chunked and compressed. Httpclient seems to only be decompressing the
> first
> > chunk and ignoring the rest. They are received but not available in the
> > response entity. How can I get access to the additional chunks?
>
> Please post a full wire / context log of the session.
>
> http://hc.apache.org/httpcomponents-client-4.3.x/logging.html
>
> Oleg
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
> For additional commands, e-mail: httpclient-users-help@hc.apache.org
>
>

Re: Having trouble getting data from server

Posted by Oleg Kalnichevski <ol...@apache.org>.
On Thu, 2013-09-19 at 10:13 -0700, Hans Uhlig wrote:
> I am connecting to an oddly configured server that sends CSV data both
> chunked and compressed. Httpclient seems to only be decompressing the first
> chunk and ignoring the rest. They are received but not available in the
> response entity. How can I get access to the additional chunks?

Please post a full wire / context log of the session.

http://hc.apache.org/httpcomponents-client-4.3.x/logging.html

Oleg


---------------------------------------------------------------------
To unsubscribe, e-mail: httpclient-users-unsubscribe@hc.apache.org
For additional commands, e-mail: httpclient-users-help@hc.apache.org