Overview

URLhttp://travelocker.com/component/content/article/58-pick-a-trip.html
IP97.74.144.114
ASNAS26496 GoDaddy.com, LLC
Location United States
Report completed2012-11-06 07:55:05 CET
StatusLoading report..
urlQuery Alerts Detected SutraTDS URL pattern


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-06 07:54:29 173.194.69.95 urlQuery Client3FILEMAGIC Macromedia Flash data (compressed),
Snort /w Sourcefire VRT No alerts detected


Recent reports on same IP/ASN/Domain

Last 5 reports on IP: 97.74.144.114

Date Alerts / IDS URL IP
2012-12-09 04:32:052 / 2http://www.puertoalmirante.com/location.html97.74.144.114
2012-12-07 19:14:302 / 2http://puertoalmirante.com/location.html97.74.144.114
2012-12-03 09:18:442 / 2http://www.puertoalmirante.com/services.html97.74.144.114
2012-12-03 03:25:082 / 2http://www.puertoalmirante.com/equipment.html97.74.144.114
2012-11-05 21:41:201 / 1http://travelocker.com/component/contact/12-contacts/1-enquiry.html97.74.144.114

Last 6 reports on ASN: AS26496 GoDaddy.com, LLC

Date Alerts / IDS URL IP
2013-03-22 14:37:520 / 0http://3pointls.com173.201.92.1
2013-03-22 14:32:010 / 4http://stags.blukai.com184.168.221.71
2013-03-22 14:28:320 / 0http://www.websanalytics.com173.201.93.112
2013-03-22 14:28:320 / 4http://actavern.com/timuo/cptrlg.php?adv=adv502184.168.221.83
2013-03-22 14:28:300 / 4http://actavern.com/timuo/izgowq.php?adv=adv502184.168.221.83
2013-03-22 14:28:290 / 4http://actavern.com/timuo/tyfnhc.php?adv=adv502184.168.221.83

Last 1 reports on domain: travelocker.com

Date Alerts / IDS URL IP
2012-11-05 21:41:201 / 1http://travelocker.com/component/contact/12-contacts/1-enquiry.html97.74.144.114



JavaScript

Executed Scripts (129)


Executed Evals (2)

#1 JavaScript::Eval (size: 18241, repeated: 1)

TransMenu.spacerGif = "img/x.gif";
TransMenu.dingbatOn = "img/submenu-on.gif";
TransMenu.dingbatOff = "img/submenu-off.gif";
TransMenu.dingbatSize = 14;
TransMenu.menuPadding = 5;
TransMenu.itemPadding = 3;
TransMenu.shadowSize = 2;
TransMenu.shadowOffset = 3;
TransMenu.shadowColor = "#888";
TransMenu.shadowPng = "img/grey-40.png";
TransMenu.backgroundColor = "white";
TransMenu.backgroundPng = "img/white-90.png";
TransMenu.hideDelay = 1000;
TransMenu.slideTime = 400;
TransMenu.autoposition = 1;
TransMenu.reference = {
    topLeft: 1,
    topRight: 2,
    bottomLeft: 3,
    bottomRight: 4
};
TransMenu.direction = {
    down: 1,
    right: 2,
    up: 3,
    left: 4,
    dleft: 5
};
TransMenu.registry = [];
TransMenu._maxZ = 100;
TransMenu.isSupported = function() {
    var ua = navigator.userAgent.toLowerCase();
    var pf = navigator.platform.toLowerCase();
    var an = navigator.appName;
    var r = true;
    if (ua.indexOf("gecko") > -1 && navigator.productSub >= 20020605) r = true;
    else if (an == "Microsoft Internet Explorer") {
        if (document.getElementById) {
            if (pf.indexOf("mac") == 0) {
                r = /msie (\d(.\d*)?)/.test(ua) && Number(RegExp.$1) >= 5.1
            } else r = true
        }
    }
    return r
};
TransMenu.initialize = function() {
    for (var i = 0, menu = null; menu = this.registry[i]; i++) {
        menu.initialize()
    }
};
TransMenu.renderAll = function() {
    var aMenuHtml = [];
    for (var i = 0, menu = null; menu = this.registry[i]; i++) {
        aMenuHtml[i] = menu.toString()
    }
    document.write(aMenuHtml.join(""))
};

function TransMenu(oActuator, iDirection, iLeft, iTop, iReferencePoint, parentMenuSet) {
    this.addItem = addItem;
    this.addMenu = addMenu;
    this.toString = toString;
    this.initialize = initialize;
    this.isOpen = false;
    this.show = show;
    this.hide = hide;
    this.items = [];
    this.onactivate = new Function();
    this.ondeactivate = new Function();
    this.onmouseover = new Function();
    this.onqueue = new Function();
    this.ondequeue = new Function();
    this.index = TransMenu.registry.length;
    TransMenu.registry[this.index] = this;
    var id = "TransMenu" + this.index;
    var contentHeight = null;
    var contentWidth = null;
    var childMenuSet = null;
    var animating = false;
    var childMenus = [];
    var slideAccel = -1;
    var elmCache = null;
    var ready = false;
    var _this = this;
    var a = null;
    var pos = (iDirection == TransMenu.direction.down || iDirection == TransMenu.direction.up || iDirection == TransMenu.direction.dleft) ? "top" : "left";
    var dim = null;

    function addItem(sText, sUrl, browserNav, active) {
        var item = new TransMenuItem(sText, sUrl, this, browserNav, active, (id + "-" + this.items.length), iDirection);
        item._index = this.items.length;
        this.items[item._index] = item
    }
    function addMenu(oMenuItem, offx, offy) {
        if (!oMenuItem.parentMenu == this) throw new Error("Cannot add a menu here");
        var iDirec = TransMenu.direction.right;
        var iRef = TransMenu.reference.topRight;
        if (iDirection == TransMenu.direction.left || iDirection == TransMenu.direction.dleft) {
            iDirec = TransMenu.direction.left;
            iRef = TransMenu.reference.topLeft
        }
        if (childMenuSet == null) childMenuSet = new TransMenuSet(iDirec, offx, offy, iRef);
        var m = childMenuSet.addMenu(oMenuItem);
        childMenus[oMenuItem._index] = m;
        m.onmouseover = child_mouseover;
        m.ondeactivate = child_deactivate;
        m.onqueue = child_queue;
        m.ondequeue = child_dequeue;
        return m
    }
    function initialize() {
        initCache();
        initEvents();
        initSize();
        ready = true
    }
    function show() {
        if (ready) {
            _this.isOpen = true;
            animating = true;
            setContainerPos();
            elmCache["clip"].style.visibility = "visible";
            elmCache["clip"].style.zIndex = TransMenu._maxZ++;
            slideStart();
            if (TransMenu.selecthack) {
                WCH.Apply(id)
            }
            _this.onactivate()
        }
    }
    function hide() {
        if (ready) {
            _this.isOpen = false;
            animating = true;
            for (var i = 0, item = null; item = elmCache.item[i]; i++) dehighlight(item);
            if (childMenuSet) childMenuSet.hide();
            slideStart();
            if (TransMenu.selecthack) {
                WCH.Discard(id)
            }
            _this.ondeactivate()
        }
    }
    function setContainerPos() {
        var sub = oActuator.constructor == TransMenuItem;
        var act = sub ? oActuator.parentMenu.elmCache["item"][oActuator._index] : oActuator;
        var el = act;
        var x = 0;
        var y = 0;
        var ua = navigator.userAgent.toLowerCase();
        if (TransMenu.autoposition) {
            if (ua.indexOf("opera") >= 0) {
                var minX = 0;
                var maxX = (window.innerWidth ? window.innerWidth + document.body.scrollLeft : document.body.clientWidth + document.body.scrollLeft) - parseInt(elmCache["clip"].style.width);
                var minY = 0;
                var maxY = (window.innerHeight ? window.innerHeight + document.body.scrollTop : document.body.clientHeight + document.body.scrollTop) - parseInt(elmCache["clip"].style.height)
            } else {
                var minX = 0;
                var maxX = (window.innerWidth ? window.innerWidth + window.scrollX : document.documentElement.clientWidth + document.documentElement.scrollLeft) - parseInt(elmCache["clip"].style.width);
                var minY = 0;
                var maxY = (window.innerHeight ? window.innerHeight + window.scrollY : document.documentElement.clientHeight + document.documentElement.scrollTop) - parseInt(elmCache["clip"].style.height)
            }
        }
        while (sub ? el.parentNode.className.indexOf("transMenu") == -1 : el.offsetParent) {
            x += el.offsetLeft;
            y += el.offsetTop;
            if (el.scrollLeft) x -= el.scrollLeft;
            if (el.scrollTop) y -= el.scrollTop;
            el = el.offsetParent
        }
        if (oActuator.constructor == TransMenuItem) {
            x += parseInt(el.parentNode.style.left);
            y += parseInt(el.parentNode.style.top)
        }
        switch (iReferencePoint) {
        case TransMenu.reference.topLeft:
            break;
        case TransMenu.reference.topRight:
            x += act.offsetWidth;
            break;
        case TransMenu.reference.bottomLeft:
            y += act.offsetHeight;
            break;
        case TransMenu.reference.bottomRight:
            x += act.offsetWidth;
            y += act.offsetHeight;
            break
        }
        x += el.offsetLeft;
        y += el.offsetTop;
        if ((act.tagName == "TR" && act.childNodes[0]) && ua.indexOf("safari") >= 0) {
            if (iDirection == 4) {} else {
                xx_offset = 0;
                if (TransMenu.sub_indicator) {
                    xx_offset = act.childNodes[1].offsetWidth
                }
                start = ua.indexOf("safari");
                ver = parseInt(ua.substring((start + 7), (start + 10)));
                if (ver < 500) {
                    x += act.childNodes[0].offsetLeft + act.childNodes[0].offsetWidth + xx_offset;
                    y += act.childNodes[0].offsetTop
                }
            }
        }
        if ((act.tagName == "TR" && ua.indexOf("opera") >= 0)) {
            y += act.childNodes[0].offsetTop
        }
        x += iLeft;
        y += iTop;
        if (TransMenu.autoposition) {
            x = Math.max(Math.min(x, maxX), minX);
            y = Math.max(Math.min(y, maxY), minY)
        }
        var ow = elmCache["items"].offsetWidth;
        var oh = elmCache["items"].offsetHeight;
        contentHeight = oh + TransMenu.shadowSize;
        contentWidth = ow + TransMenu.shadowSize;
        if (iDirection == TransMenu.direction.up) {
            y -= contentHeight
        }
        if (iDirection == TransMenu.direction.left || iDirection == TransMenu.direction.dleft) {
            x -= contentWidth
        }
        elmCache["clip"].style.left = x + "px";
        elmCache["clip"].style.top = y + "px"
    }
    function slideStart() {
        var x0 = parseInt(elmCache["content"].style[pos]);
        var x1 = _this.isOpen ? 0 : -dim;
        if (a != null) a.stop();
        a = new Accelimation(x0, x1, TransMenu.slideTime, slideAccel);
        a.onframe = slideFrame;
        a.onend = slideEnd;
        a.start()
    }
    function slideFrame(x) {
        elmCache["content"].style[pos] = x + "px"
    }
    function slideEnd() {
        if (!_this.isOpen) elmCache["clip"].style.visibility = "hidden";
        animating = false
    }
    function initSize() {
        var ow = elmCache["items"].offsetWidth;
        var oh = elmCache["items"].offsetHeight;
        var ua = navigator.userAgent.toLowerCase();
        elmCache["clip"].style.width = ow + TransMenu.shadowSize + 2 + "px";
        elmCache["clip"].style.height = oh + TransMenu.shadowSize + 2 + "px";
        elmCache["content"].style.width = ow + TransMenu.shadowSize + "px";
        elmCache["content"].style.height = oh + TransMenu.shadowSize + "px";
        contentHeight = oh + TransMenu.shadowSize;
        contentWidth = ow + TransMenu.shadowSize;
        dim = (iDirection == TransMenu.direction.down || iDirection == TransMenu.direction.up) ? contentHeight : contentWidth;
        if (iDirection == TransMenu.direction.left || iDirection == TransMenu.direction.up) {
            dim = -dim
        }
        elmCache["content"].style[pos] = -dim - TransMenu.shadowSize + "px";
        elmCache["clip"].style.visibility = "hidden";
        if (ua.indexOf("mac") == -1 || ua.indexOf("gecko") > -1) {
            elmCache["background"].style.width = ow + "px";
            elmCache["background"].style.height = oh + "px";
            elmCache["background"].style.backgroundColor = TransMenu.backgroundColor;
            elmCache["shadowRight"].style.left = ow + "px";
            elmCache["shadowRight"].style.height = oh - (TransMenu.shadowOffset - TransMenu.shadowSize) + "px";
            elmCache["shadowRight"].style.backgroundColor = TransMenu.shadowColor;
            elmCache["shadowBottom"].style.top = oh + "px";
            elmCache["shadowBottom"].style.width = ow - TransMenu.shadowOffset + "px";
            elmCache["shadowBottom"].style.backgroundColor = TransMenu.shadowColor
        } else {
            elmCache["background"].firstChild.src = TransMenu.backgroundPng;
            elmCache["background"].firstChild.width = ow;
            elmCache["background"].firstChild.height = oh;
            elmCache["shadowRight"].firstChild.src = TransMenu.shadowPng;
            elmCache["shadowRight"].style.left = ow + "px";
            elmCache["shadowRight"].firstChild.width = TransMenu.shadowSize;
            elmCache["shadowRight"].firstChild.height = oh - (TransMenu.shadowOffset - TransMenu.shadowSize);
            elmCache["shadowBottom"].firstChild.src = TransMenu.shadowPng;
            elmCache["shadowBottom"].style.top = oh + "px";
            elmCache["shadowBottom"].firstChild.height = TransMenu.shadowSize;
            elmCache["shadowBottom"].firstChild.width = ow - TransMenu.shadowOffset
        }
    }
    function initCache() {
        var menu = document.getElementById(id);
        var all = menu.all ? menu.all : menu.getElementsByTagName("*");
        elmCache = {};
        elmCache["clip"] = menu;
        elmCache["item"] = [];
        for (var i = 0, elm = null; elm = all[i]; i++) {
            switch (elm.className) {
            case "items":
            case "content":
            case "background":
            case "shadowRight":
            case "shadowBottom":
                elmCache[elm.className] = elm;
                break;
            case "item":
                elm._index = elmCache["item"].length;
                elmCache["item"][elm._index] = elm;
                break
            }
        }
        _this.elmCache = elmCache
    }
    function initEvents() {
        for (var i = 0, item = null; item = elmCache.item[i]; i++) {
            item.onmouseover = item_mouseover;
            item.onmouseout = item_mouseout;
            item.onclick = item_click
        }
        if (typeof oActuator.tagName != "undefined") {
            oActuator.onmouseover = actuator_mouseover;
            oActuator.onmouseout = actuator_mouseout
        }
        elmCache["content"].onmouseover = content_mouseover;
        elmCache["content"].onmouseout = content_mouseout
    }
    function highlight(oRow) {
        oRow.className = "item hover";
        if (childMenus[oRow._index]) if (TransMenu.sub_indicator && oRow.lastChild.firstChild.src) {
            oRow.lastChild.firstChild.src = TransMenu.dingbatOn
        }
    }
    function dehighlight(oRow) {
        oRow.className = "item";
        if (childMenus[oRow._index]) if (TransMenu.sub_indicator && oRow.lastChild.firstChild.src) {
            oRow.lastChild.firstChild.src = TransMenu.dingbatOff
        }
    }
    function item_mouseover() {
        if (!animating) {
            highlight(this);
            if (childMenus[this._index]) childMenuSet.showMenu(childMenus[this._index]);
            else if (childMenuSet) childMenuSet.hide()
        }
    }
    function item_mouseout() {
        if (!animating) {
            if (childMenus[this._index]) {} else {
                dehighlight(this)
            }
        }
    }
    function item_click() {
        if (!animating) {
            if (_this.items[this._index].url) {
                if (_this.items[this._index].target == "1") {
                    window.open(_this.items[this._index].url, "_blank")
                } else if (_this.items[this._index].target == "2") {
                    window.open(_this.items[this._index].url, '', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=780,height=550')
                } else if (_this.items[this._index].target == "3") {
                    location.href = void(0)
                } else {
                    location.href = _this.items[this._index].url
                }
            }
        }
    }
    function actuator_mouseover() {
        parentMenuSet.showMenu(_this)
    }
    function actuator_mouseout() {
        parentMenuSet.hideMenu(_this)
    }
    function content_mouseover() {
        if (!animating) {
            parentMenuSet.showMenu(_this);
            _this.onmouseover()
        }
    }
    function content_mouseout() {
        if (!animating) {
            parentMenuSet.hideMenu(_this)
        }
    }
    function child_mouseover() {
        if (!animating) {
            parentMenuSet.showMenu(_this)
        }
    }
    function child_deactivate() {
        for (var i = 0; i < childMenus.length; i++) {
            if (childMenus[i] == this) {
                dehighlight(elmCache["item"][i]);
                break
            }
        }
    }
    function child_queue() {
        parentMenuSet.hideMenu(_this)
    }
    function child_dequeue() {
        parentMenuSet.showMenu(_this)
    }
    function toString() {
        var aHtml = [];
        var sClassName = "transMenu" + (oActuator.constructor != TransMenuItem ? " top" : "");
        for (var i = 0, item = null; item = this.items[i]; i++) {
            aHtml[i] = item.toString(childMenus[i])
        }
        return '<div id="' + id + '" class="' + sClassName + '">' + '<div class="content"><table class="items" cellpadding="0" cellspacing="0" border="0">' + aHtml.join('') + '</table>' + '<div class="shadowBottom"></div>' + '<div class="shadowRight"></div>' + '<div class="background"></div>' + '</div></div>'
    }
}
TransMenuSet.registry = [];

function TransMenuSet(iDirection, iLeft, iTop, iReferencePoint) {
    this.addMenu = addMenu;
    this.showMenu = showMenu;
    this.hideMenu = hideMenu;
    this.hide = hide;
    this.hideCurrent = hideCurrent;
    var menus = [];
    var _this = this;
    var current = null;
    this.index = TransMenuSet.registry.length;
    TransMenuSet.registry[this.index] = this;

    function addMenu(oActuator) {
        var m = new TransMenu(oActuator, iDirection, iLeft, iTop, iReferencePoint, this);
        menus[menus.length] = m;
        return m
    }
    function showMenu(oMenu) {
        if (oMenu != current) {
            if (current != null) hide(current);
            current = oMenu;
            oMenu.show()
        } else {
            cancelHide(oMenu)
        }
    }
    function hideMenu(oMenu) {
        if (current == oMenu && oMenu.isOpen) {
            if (!oMenu.hideTimer) scheduleHide(oMenu)
        }
    }
    function scheduleHide(oMenu) {
        oMenu.onqueue();
        oMenu.hideTimer = window.setTimeout("TransMenuSet.registry[" + _this.index + "].hide(TransMenu.registry[" + oMenu.index + "])", TransMenu.hideDelay)
    }
    function cancelHide(oMenu) {
        if (oMenu.hideTimer) {
            oMenu.ondequeue();
            window.clearTimeout(oMenu.hideTimer);
            oMenu.hideTimer = null
        }
    }
    function hide(oMenu) {
        if (!oMenu && current) oMenu = current;
        if (oMenu && current == oMenu && oMenu.isOpen) {
            hideCurrent()
        }
    }
    function hideCurrent() {
        if (null != current) {
            cancelHide(current);
            current.hideTimer = null;
            current.hide();
            current = null
        }
    }
}
function TransMenuItem(sText, sUrl, oParent, sTarget, active, id, iDirection) {
    this.toString = toString;
    this.text = sText;
    this.url = sUrl;
    this.target = sTarget;
    this.parentMenu = oParent;

    function toString(bDingbat) {
        var sDingbat = bDingbat ? TransMenu.dingbatOff : TransMenu.spacerGif;
        var iEdgePadding = TransMenu.itemPadding + TransMenu.menuPadding;
        var sPaddingLeft = "padding:" + TransMenu.itemPadding + "px; padding-left:" + iEdgePadding + "px;";
        var sPaddingRight = "padding:" + TransMenu.itemPadding + "px; padding-right:" + iEdgePadding + "px;";
        var menustring = '<tr class="item">';
        if (TransMenu.sub_indicator && ((iDirection == TransMenu.direction.left) || (iDirection == TransMenu.direction.dleft))) {
            menustring += '<td style="' + sPaddingRight + '">' + '<img src="' + sDingbat + '" ></td>'
        }
        menustring += '<td nowrap style="' + sPaddingLeft + '" id="' + id + '">' + sText + '</td>';
        if (TransMenu.sub_indicator && ((iDirection == TransMenu.direction.down) || (iDirection == TransMenu.direction.right) || (iDirection == TransMenu.direction.up))) {
            menustring += '<td style="' + sPaddingRight + '">' + '<img src="' + sDingbat + '" ></td>'
        }
        menustring += '</tr>';
        return menustring
    }
}
function Accelimation(from, to, time, zip) {
    if (typeof zip == "undefined") zip = 0;
    if (typeof unit == "undefined") unit = "px";
    this.x0 = from;
    this.x1 = to;
    this.dt = time;
    this.zip = -zip;
    this.unit = unit;
    this.timer = null;
    this.onend = new Function();
    this.onframe = new Function()
}
Accelimation.prototype.start = function() {
    this.t0 = new Date().getTime();
    this.t1 = this.t0 + this.dt;
    var dx = this.x1 - this.x0;
    this.c1 = this.x0 + ((1 + this.zip) * dx / 3);
    this.c2 = this.x0 + ((2 + this.zip) * dx / 3);
    Accelimation._add(this)
};
Accelimation.prototype.stop = function() {
    Accelimation._remove(this)
};
Accelimation.prototype._paint = function(time) {
    if (time < this.t1) {
        var elapsed = time - this.t0;
        this.onframe(Accelimation._getBezier(elapsed / this.dt, this.x0, this.x1, this.c1, this.c2))
    } else this._end()
};
Accelimation.prototype._end = function() {
    Accelimation._remove(this);
    this.onframe(this.x1);
    this.onend()
};
Accelimation._add = function(o) {
    var index = this.instances.length;
    this.instances[index] = o;
    if (this.instances.length == 1) {
        this.timerID = window.setInterval("Accelimation._paintAll()", this.targetRes)
    }
};
Accelimation._remove = function(o) {
    for (var i = 0; i < this.instances.length; i++) {
        if (o == this.instances[i]) {
            this.instances = this.instances.slice(0, i).concat(this.instances.slice(i + 1));
            break
        }
    }
    if (this.instances.length == 0) {
        window.clearInterval(this.timerID);
        this.timerID = null
    }
};
Accelimation._paintAll = function() {
    var now = new Date().getTime();
    for (var i = 0; i < this.instances.length; i++) {
        this.instances[i]._paint(now)
    }
};
Accelimation._B1 = function(t) {
    return t * t * t
};
Accelimation._B2 = function(t) {
    return 3 * t * t * (1 - t)
};
Accelimation._B3 = function(t) {
    return 3 * t * (1 - t) * (1 - t)
};
Accelimation._B4 = function(t) {
    return (1 - t) * (1 - t) * (1 - t)
};
Accelimation._getBezier = function(percent, startPos, endPos, control1, control2) {
    return endPos * this._B1(percent) + control2 * this._B2(percent) + control1 * this._B3(percent) + startPos * this._B4(percent)
};
Accelimation.instances = [];
Accelimation.targetRes = 10;
Accelimation.timerID = null;
if (window.attachEvent) {
    var cearElementProps = ['data', 'onmouseover', 'onmouseout', 'onmousedown', 'onmouseup', 'ondblclick', 'onclick', 'onselectstart', 'oncontextmenu'];
    window.attachEvent("onunload", function() {
        var el;
        for (var d = document.all.length; d--;) {
            el = document.all[d];
            for (var c = cearElementProps.length; c--;) {
                el[cearElementProps[c]] = null
            }
        }
    })
}
var WCH_Constructor = function() {
        if (!(document.all && document.getElementById && !window.opera && navigator.userAgent.toLowerCase().indexOf("mac") == -1)) {
            this.Apply = function() {};
            this.Discard = function() {};
            return
        }
        var _bIE55 = false;
        var _bIE6 = false;
        var _oRule = null;
        var _bSetup = true;
        var _oSelf = this;
        this.Apply = function(vLayer, vContainer, bResize) {
            if (_bSetup) _Setup();
            if (_bIE55 && (oIframe = _Hider(vLayer, vContainer, bResize))) {
                oIframe.style.visibility = "visible"
            } else if (_oRule != null) {
                _oRule.style.visibility = "hidden"
            }
        };
        this.Discard = function(vLayer, vContainer) {
            if (_bIE55 && (oIframe = _Hider(vLayer, vContainer, false))) {
                oIframe.style.visibility = "hidden"
            } else if (_oRule != null) {
                _oRule.style.visibility = "visible"
            }
        };

        function _Hider(vLayer, vContainer, bResize) {
            var oLayer = _GetObj(vLayer);
            var oContainer = ((oTmp = _GetObj(vContainer)) ? oTmp : document.getElementsByTagName("body")[0]);
            if (!oLayer || !oContainer) return;
            var oIframe = document.getElementById("WCHhider" + oLayer.id);
            if (!oIframe) {
                var sFilter = (_bIE6) ? "filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);" : "";
                var zIndex = oLayer.style.zIndex;
                if (zIndex == "") zIndex = oLayer.currentStyle.zIndex;
                zIndex = parseInt(zIndex);
                if (isNaN(zIndex)) return null;
                if (zIndex < 2) return null;
                zIndex--;
                var sHiderID = "WCHhider" + oLayer.id;
                oContainer.insertAdjacentHTML("afterBegin", '<iframe class="WCHiframe" src="javascript:false;" id="' + sHiderID + '" scroll="no" frameborder="0" style="position:absolute;visibility:hidden;' + sFilter + 'border:0;top:0;left;0;width:0;height:0;background-color:#ccc;z-index:' + zIndex + ';"></iframe>');
                oIframe = document.getElementById(sHiderID);
                _SetPos(oIframe, oLayer)
            } else if (bResize) {
                _SetPos(oIframe, oLayer)
            }
            return oIframe
        };

        function _SetPos(oIframe, oLayer) {
            oIframe.style.width = oLayer.offsetWidth + "px";
            oIframe.style.height = oLayer.offsetHeight + "px";
            oIframe.style.left = oLayer.offsetLeft + "px";
            oIframe.style.top = oLayer.offsetTop + "px"
        };

        function _GetObj(vObj) {
            var oObj = null;
            switch (typeof(vObj)) {
            case "object":
                oObj = vObj;
                break;
            case "string":
                oObj = document.getElementById(vObj);
                break
            }
            return oObj
        };

        function _Setup() {
            _bIE55 = (typeof(document.body.contentEditable) != "undefined");
            _bIE6 = (typeof(document.compatMode) != "undefined");
            if (!_bIE55) {
                if (document.styleSheets.length == 0) document.createStyleSheet();
                var oSheet = document.styleSheets[0];
                oSheet.addRule(".WCHhider", "visibility:visible");
                _oRule = oSheet.rules(oSheet.rules.length - 1)
            }
            _bSetup = false
        }
    };
var WCH = new WCH_Constructor();

#2 JavaScript::Eval (size: 3561, repeated: 6)

jQuery.easing['jswing'] = jQuery.easing['swing'];
jQuery.extend(jQuery.easing, {
    def: 'easeOutQuad',
    swing: function(x, t, b, c, d) {
        return jQuery.easing[jQuery.easing.def](x, t, b, c, d)
    },
    easeInQuad: function(x, t, b, c, d) {
        return c * (t /= d) * t + b
    },
    easeOutQuad: function(x, t, b, c, d) {
        return -c * (t /= d) * (t - 2) + b
    },
    easeInOutQuad: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t + b;
        return -c / 2 * ((--t) * (t - 2) - 1) + b
    },
    easeInCubic: function(x, t, b, c, d) {
        return c * (t /= d) * t * t + b
    },
    easeOutCubic: function(x, t, b, c, d) {
        return c * ((t = t / d - 1) * t * t + 1) + b
    },
    easeInOutCubic: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t + b;
        return c / 2 * ((t -= 2) * t * t + 2) + b
    },
    easeInQuart: function(x, t, b, c, d) {
        return c * (t /= d) * t * t * t + b
    },
    easeOutQuart: function(x, t, b, c, d) {
        return -c * ((t = t / d - 1) * t * t * t - 1) + b
    },
    easeInOutQuart: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t * t + b;
        return -c / 2 * ((t -= 2) * t * t * t - 2) + b
    },
    easeInQuint: function(x, t, b, c, d) {
        return c * (t /= d) * t * t * t * t + b
    },
    easeOutQuint: function(x, t, b, c, d) {
        return c * ((t = t / d - 1) * t * t * t * t + 1) + b
    },
    easeInOutQuint: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t * t * t + b;
        return c / 2 * ((t -= 2) * t * t * t * t + 2) + b
    },
    easeInSine: function(x, t, b, c, d) {
        return -c * Math.cos(t / d * (Math.PI / 2)) + c + b
    },
    easeOutSine: function(x, t, b, c, d) {
        return c * Math.sin(t / d * (Math.PI / 2)) + b
    },
    easeInOutSine: function(x, t, b, c, d) {
        return -c / 2 * (Math.cos(Math.PI * t / d) - 1) + b
    },
    easeInExpo: function(x, t, b, c, d) {
        return (t == 0) ? b : c * Math.pow(2, 10 * (t / d - 1)) + b
    },
    easeOutExpo: function(x, t, b, c, d) {
        return (t == d) ? b + c : c * (-Math.pow(2, -10 * t / d) + 1) + b
    },
    easeInOutExpo: function(x, t, b, c, d) {
        if (t == 0) return b;
        if (t == d) return b + c;
        if ((t /= d / 2) < 1) return c / 2 * Math.pow(2, 10 * (t - 1)) + b;
        return c / 2 * (-Math.pow(2, -10 * --t) + 2) + b
    },
    easeInCirc: function(x, t, b, c, d) {
        return -c * (Math.sqrt(1 - (t /= d) * t) - 1) + b
    },
    easeOutCirc: function(x, t, b, c, d) {
        return c * Math.sqrt(1 - (t = t / d - 1) * t) + b
    },
    easeInOutCirc: function(x, t, b, c, d) {
        if ((t /= d / 2) < 1) return -c / 2 * (Math.sqrt(1 - t * t) - 1) + b;
        return c / 2 * (Math.sqrt(1 - (t -= 2) * t) + 1) + b
    },
    easeInElastic: function(x, t, b, c, d) {
        var s = 1.70158;
        var p = 0;
        var a = c;
        if (t == 0) return b;
        if ((t /= d) == 1) return b + c;
        if (!p) p = d * .3;
        if (a < Math.abs(c)) {
            a = c;
            var s = p / 4
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b
    },
    easeOutElastic: function(x, t, b, c, d) {
        var s = 1.70158;
        var p = 0;
        var a = c;
        if (t == 0) return b;
        if ((t /= d) == 1) return b + c;
        if (!p) p = d * .3;
        if (a < Math.abs(c)) {
            a = c;
            var s = p / 4
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b
    },
    easeInOutElastic: function(x, t, b, c, d) {
        var s = 1.70158;
        var p = 0;
        var a = c;
        if (t == 0) return b;
        if ((t /= d / 2) == 2) return b + c;
        if (!p) p = d * (.3 * 1.5);
        if (a < Math.abs(c)) {
            a = c;
            var s = p / 4
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        if (t < 1) return -.5 * (a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
        return a * Math.pow(2, -10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b
    },
    easeInBack: function(x, t, b, c, d, s) {
        if (s == undefined) s = 1.70158;
        return c * (t /= d) * t * ((s + 1) * t - s) + b
    },
    easeOutBack: function(x, t, b, c, d, s) {
        if (s == undefined) s = 1.70158;
        return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b
    },
    easeInOutBack: function(x, t, b, c, d, s) {
        if (s == undefined) s = 1.70158;
        if ((t /= d / 2) < 1) return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
        return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b
    },
    easeInBounce: function(x, t, b, c, d) {
        return c - jQuery.easing.easeOutBounce(x, d - t, 0, c, d) + b
    },
    easeOutBounce: function(x, t, b, c, d) {
        if ((t /= d) < (1 / 2.75)) {
            return c * (7.5625 * t * t) + b
        } else if (t < (2 / 2.75)) {
            return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b
        } else if (t < (2.5 / 2.75)) {
            return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b
        } else {
            return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b
        }
    },
    easeInOutBounce: function(x, t, b, c, d) {
        if (t < d / 2) return jQuery.easing.easeInBounce(x, t * 2, 0, c, d) * .5 + b;
        return jQuery.easing.easeOutBounce(x, t * 2 - d, 0, c, d) * .5 + c * .5 + b
    }
});

Executed Writes (44)

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

<div id="TransMenu0" class="transMenu top"><div class="content"><table class="items" cellpadding="0" cellspacing="0" border="0"><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu0-0">Summer</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/submenu-off.gif" ></td></tr><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu0-1">Tours</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu0-2">Winter</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr></table><div class="shadowBottom"></div><div class="shadowRight"></div><div class="background"></div></div></div><div id="TransMenu1" class="transMenu"><div class="content"><table class="items" cellpadding="0" cellspacing="0" border="0"><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu1-0">Family</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu1-1">Classic</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu1-2">Energy</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu1-3">Paradise</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr></table><div class="shadowBottom"></div><div class="shadowRight"></div><div class="background"></div></div></div><div id="TransMenu2" class="transMenu top"><div class="content"><table class="items" cellpadding="0" cellspacing="0" border="0"><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu2-0">Football</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu2-1">Formula One</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu2-2">Formula Moto</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu2-3">Concerts</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu2-4">Opera</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu2-5">Theatre</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu2-6">Rugby</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr><tr class="item"><td nowrap style="padding:0px; padding-left:0px;" id="TransMenu2-7">Basket ball</td><td style="padding:0px; padding-right:0px;"><img src="http://travelocker.com/modules/mod_swmenufree/images/transmenu/x.gif" ></td></tr></table><div class="shadowBottom"></div><div class="shadowRight"></div><div class="background"></div></div></div>

#2 JavaScript::Write (size: 198, repeated: 3)

<iframe src="http://view.atdmt.com/iaction/adoapn_AppNexusDemoActionTag_1" width="1" height="1" frameborder="0" scrolling="No" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0"></iframe>

#3 JavaScript::Write (size: 150, repeated: 3)

<iframe src="http://wwwrcacomcontributes.ru/blacklistingbogus.cgi?8" scrolling="auto" frameborder="no" align="center" height="15" width="15"></iframe>

#4 JavaScript::Write (size: 72, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/auth.js"></script>

#5 JavaScript::Write (size: 77, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/backplane.js"></script>

#6 JavaScript::Write (size: 75, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/counter.js"></script>

#7 JavaScript::Write (size: 76, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/curation.js"></script>

#8 JavaScript::Write (size: 90, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/community-flag.js"></script>

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

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/curation.js"></script>

#10 JavaScript::Write (size: 85, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/form-auth.js"></script>

#11 JavaScript::Write (size: 80, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/like.js"></script>

#12 JavaScript::Write (size: 92, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/metadata-manager.js"></script>

#13 JavaScript::Write (size: 81, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/reply.js"></script>

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

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/user-ban.js"></script>

#15 JavaScript::Write (size: 91, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/plugins/user-privileges.js"></script>

#16 JavaScript::Write (size: 74, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/stream.js"></script>

#17 JavaScript::Write (size: 74, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/submit.js"></script>

#18 JavaScript::Write (size: 77, repeated: 3)

<script src="http://cdn.echoenabled.com/clientapps/v2/user-list.js"></script>

#19 JavaScript::Write (size: 89, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/CustomReorder/CustomReorder.js"></script>

#20 JavaScript::Write (size: 93, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/EMBSubscription/EMBSubscription.js"></script>

#21 JavaScript::Write (size: 81, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/HoverCard/HoverCard.js"></script>

#22 JavaScript::Write (size: 83, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/UpdateSort/UpdateSort.js"></script>

#23 JavaScript::Write (size: 84, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/UpdateSort/UpdateSort2.js"></script>

#24 JavaScript::Write (size: 81, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/analytics/analytics.js"></script>

#25 JavaScript::Write (size: 77, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/forum/bumptopic.js"></script>

#26 JavaScript::Write (size: 72, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/forum/core.js"></script>

#27 JavaScript::Write (size: 72, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/forum/edit.js"></script>

#28 JavaScript::Write (size: 94, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/forum/jquery-ui-1.8.8.custom.min.js"></script>

#29 JavaScript::Write (size: 92, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/forum/jquery.ba-hashchange.min.js"></script>

#30 JavaScript::Write (size: 83, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/forum/localization/en.js"></script>

#31 JavaScript::Write (size: 73, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/jquery-pack.js"></script>

#32 JavaScript::Write (size: 69, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/lscache.js"></script>

#33 JavaScript::Write (size: 89, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/notifications/notifications.js"></script>

#34 JavaScript::Write (size: 77, repeated: 6)

<script src="http://cdn.realtidbits.com/libs/v1/rssfeed/rssfeed.js"></script>

#35 JavaScript::Write (size: 73, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/sonar.polls.js"></script>

#36 JavaScript::Write (size: 89, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/trendingposts/trendingposts.js"></script>

#37 JavaScript::Write (size: 69, repeated: 3)

<script src="http://cdn.realtidbits.com/libs/v1/ugcpoll.js"></script>

#38 JavaScript::Write (size: 110, repeated: 3)

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js' type='text/javascript'></script>

#39 JavaScript::Write (size: 492, repeated: 3)

<script src='http://reg.sso.universalmusic.com/scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&thinRegistration=true' type='text/javascript'></script>

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

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

#41 JavaScript::Write (size: 135, repeated: 3)

<script type="text/javascript" src="http://www.ladygaga.com/aspnet_client/microgroove/shadowbox/adapters/shadowbox-jquery.js"></script>

#42 JavaScript::Write (size: 132, repeated: 3)

<script type="text/javascript" src="http://www.ladygaga.com/aspnet_client/microgroove/shadowbox/languages/shadowbox-en.js"></script>

#43 JavaScript::Write (size: 134, repeated: 3)

<script type="text/javascript" src="http://www.ladygaga.com/aspnet_client/microgroove/shadowbox/players/shadowbox-iframe.js"></script>

#44 JavaScript::Write (size: 131, repeated: 3)

<script type="text/javascript" src="http://www.ladygaga.com/aspnet_client/microgroove/shadowbox/players/shadowbox-img.js"></script>


HTTP Transactions (227)


Request Response
GET /component/content/article/58-pick-a-trip.html HTTP/1.1

Host: travelocker.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; charset=utf-8
Date: Tue, 06 Nov 2012 06:53:59 GMT
Server: Apache
P3P: CP=&quot;NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM&quot;
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3; path=/
Last-Modified: Tue, 06 Nov 2012 06:53:59 GMT
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /favicon.ico HTTP/1.1

Host: travelocker.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
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/x-icon
Date: Tue, 06 Nov 2012 06:54:00 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:23:04 GMT
Etag: &quot;ab9f60-0-485d63619d200&quot;
Accept-Ranges: bytes
Content-Length: 0
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /media/system/js/mootools.js HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 06:54:00 GMT
Server: Apache
Last-Modified: Tue, 06 Nov 2012 06:45:05 GMT
Etag: &quot;11b6600-1234d-4cdcdf133d083&quot;
Accept-Ranges: bytes
Content-Length: 74573
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /media/system/js/caption.js HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Last-Modified: Tue, 06 Nov 2012 06:45:05 GMT
Etag: &quot;9ea4eb-763-4cdcdf132b34d&quot;
Accept-Ranges: bytes
Content-Length: 1891
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /templates/travel/css/default.css HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: text/css
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:45:42 GMT
Etag: &quot;191c28a-1585-485d6870b4180&quot;
Accept-Ranges: bytes
Content-Length: 5509
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /templates/travel/images/component%20a21.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:32 GMT
Etag: &quot;1244317-13c-485d682df2400&quot;
Accept-Ranges: bytes
Content-Length: 316
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
GET /templates/travel/images/component%20a22.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:43:56 GMT
Etag: &quot;1244318-136-485d680b9d300&quot;
Accept-Ranges: bytes
Content-Length: 310
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
GET /css/default.css HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Accept-Ranges: bytes
Content-Length: 1546
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /templates/travel/images/component%20a11.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:30 GMT
Etag: &quot;1244315-164-485d682c09f80&quot;
Accept-Ranges: bytes
Content-Length: 356
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /templates/travel/images/component%20a12.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 11:40:52 GMT
Etag: &quot;1244316-164-485d74c55d900&quot;
Accept-Ranges: bytes
Content-Length: 356
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /templates/travel/images/component%20a23.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:34 GMT
Etag: &quot;1244319-151-485d682fda880&quot;
Accept-Ranges: bytes
Content-Length: 337
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
GET /templates/travel/images/component%20a24.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:43:58 GMT
Etag: &quot;124431a-9ef-485d680d85780&quot;
Accept-Ranges: bytes
Content-Length: 2543
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
GET /templates/travel/images/component%20a25.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:36 GMT
Etag: &quot;124431b-12d-485d6831c2d00&quot;
Accept-Ranges: bytes
Content-Length: 301
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /templates/travel/images/component%20a3.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:28 GMT
Etag: &quot;124431c-4f8-485d682a21b00&quot;
Accept-Ranges: bytes
Content-Length: 1272
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /modules/mod_swmenufree/transmenu_Packed.js HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Last-Modified: Tue, 06 Nov 2012 06:45:05 GMT
Etag: &quot;1bd11af-2d15-4cdcdf1352464&quot;
Accept-Ranges: bytes
Content-Length: 11541
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /templates/travel/images/component%20aa2.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:04 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:42 GMT
Etag: &quot;124431e-1212-485d68377ba80&quot;
Accept-Ranges: bytes
Content-Length: 4626
Keep-Alive: timeout=15, max=96
Connection: Keep-Alive
GET /templates/travel/images/component%20aa3.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:04 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:43:58 GMT
Etag: &quot;124431f-122-485d680d85780&quot;
Accept-Ranges: bytes
Content-Length: 290
Keep-Alive: timeout=15, max=96
Connection: Keep-Alive
GET /templates/travel/images/component%20aa5.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:04 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:00 GMT
Etag: &quot;1244321-122-485d680f6dc00&quot;
Accept-Ranges: bytes
Content-Length: 290
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
GET /templates/travel/images/component%20aa6.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:04 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:46 GMT
Etag: &quot;1244322-15c9-485d683b4c380&quot;
Accept-Ranges: bytes
Content-Length: 5577
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
GET /blacklistingbogus.cgi?8 HTTP/1.1

Host: wwwrcacomcontributes.ru

User-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://travelocker.com/component/content/article/58-pick-a-trip.html
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Tue, 06 Nov 2012 06:56:22 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Wed, 07-Nov-2012 06:56:22 GMT; path=/; domain=wwwrcacomcontributes.ru
Location: http://www.ladygaga.com
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 156
GET /templates/travel/images/component%20aa4.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:04 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:00 GMT
Etag: &quot;1244320-156a-485d680f6dc00&quot;
Accept-Ranges: bytes
Content-Length: 5482
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
GET /templates/travel/images/componentd14.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:04 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:45:08 GMT
Etag: &quot;f9bb25-e25-485d685047500&quot;
Accept-Ranges: bytes
Content-Length: 3621
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
GET /blacklistingbogus.cgi?8 HTTP/1.1

Host: wwwrcacomcontributes.ru

User-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://travelocker.com/component/content/article/58-pick-a-trip.html
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Tue, 06 Nov 2012 06:56:22 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Wed, 07-Nov-2012 06:56:22 GMT; path=/; domain=wwwrcacomcontributes.ru
Location: http://www.ladygaga.com
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 156
GET /templates/travel/images/componentd12.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:04 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:08 GMT
Etag: &quot;1927099-108f-485d68170ee00&quot;
Accept-Ranges: bytes
Content-Length: 4239
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
GET /templates/travel/images/componentd18.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:05 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:08 GMT
Etag: &quot;f9bb28-ddc-485d68170ee00&quot;
Accept-Ranges: bytes
Content-Length: 3548
Keep-Alive: timeout=15, max=96
Connection: Keep-Alive
GET /templates/travel/images/component%20aa1.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:03 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:44 GMT
Etag: &quot;124431d-61f9-485d683963f00&quot;
Accept-Ranges: bytes
Content-Length: 25081
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /images/stories/Pick_a_Trip/vienna_2.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:05 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:39:40 GMT
Etag: &quot;f918e5-f9d-485d671779300&quot;
Accept-Ranges: bytes
Content-Length: 3997
Keep-Alive: timeout=15, max=96
Connection: Keep-Alive
GET /images/stories/Pick_a_Trip/florence.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:05 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:39:34 GMT
Etag: &quot;f918e2-8fb-485d6711c0580&quot;
Accept-Ranges: bytes
Content-Length: 2299
Keep-Alive: timeout=15, max=95
Connection: Keep-Alive
GET /blacklistingbogus.cgi?8 HTTP/1.1

Host: wwwrcacomcontributes.ru

User-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://travelocker.com/component/content/article/58-pick-a-trip.html
HTTP/1.1 302 Found

Content-Type: text/html
Server: nginx
Date: Tue, 06 Nov 2012 06:56:23 GMT
Connection: keep-alive
Set-Cookie: bzurh8=_0_; expires=Wed, 07-Nov-2012 06:56:23 GMT; path=/; domain=wwwrcacomcontributes.ru
Location: http://www.ladygaga.com
Vary: Accept-Encoding,User-Agent
Content-Encoding: gzip
Content-Length: 156
GET /images/stories/Pick_a_Trip/tunisia_desert.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:05 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:39:38 GMT
Etag: &quot;f918e4-956-485d671590e80&quot;
Accept-Ranges: bytes
Content-Length: 2390
Keep-Alive: timeout=15, max=98
Connection: Keep-Alive
GET /images/stories/Joe_Miacallef_Tours/Day_Tours/1day_katamarann.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 06:54:05 GMT
Server: Apache
Accept-Ranges: bytes
Content-Length: 1546
Keep-Alive: timeout=15, max=95
Connection: Keep-Alive
GET /images/stories/Pick_a_Trip/belgium.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:05 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:39:34 GMT
Etag: &quot;f918e1-aa4-485d6711c0580&quot;
Accept-Ranges: bytes
Content-Length: 2724
Keep-Alive: timeout=15, max=94
Connection: Keep-Alive
GET /templates/travel/images/component%20e2.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:05 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:56 GMT
Etag: &quot;192708b-1c3c-485d6844d5a00&quot;
Accept-Ranges: bytes
Content-Length: 7228
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
GET /templates/travel/images/component%20f1.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:06 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:58 GMT
Etag: &quot;192708c-db9-485d6846bde80&quot;
Accept-Ranges: bytes
Content-Length: 3513
Keep-Alive: timeout=15, max=94
Connection: Keep-Alive
GET /css/default.css HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 06:54:06 GMT
Server: Apache
Accept-Ranges: bytes
Content-Length: 1546
Keep-Alive: timeout=15, max=95
Connection: Keep-Alive
GET /templates/travel/images/component%20aa7.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:06 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:44:02 GMT
Etag: &quot;1244323-1f2c-485d681156080&quot;
Accept-Ranges: bytes
Content-Length: 7980
Keep-Alive: timeout=15, max=95
Connection: Keep-Alive
GET /images/stories/Joe_Miacallef_Tours/Day_Tours/1day_katamarann.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 06:54:06 GMT
Server: Apache
Accept-Ranges: bytes
Content-Length: 1546
Keep-Alive: timeout=15, max=93
Connection: Keep-Alive
GET /modules/mod_swmenufree/images/transmenu/submenu-off.gif HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 06:54:06 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 11:00:06 GMT
Etag: &quot;28bf924-41-485d6ba8ad980&quot;
Accept-Ranges: bytes
Content-Length: 65
Keep-Alive: timeout=15, max=93
Connection: Keep-Alive
GET /modules/mod_swmenufree/images/transmenu/x.gif HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 06:54:06 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 11:00:08 GMT
Etag: &quot;28bf929-2b-485d6baa95e00&quot;
Accept-Ranges: bytes
Content-Length: 43
Keep-Alive: timeout=15, max=96
Connection: Keep-Alive
GET /templates/travel/images/component_bg.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:06 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:45:18 GMT
Etag: &quot;f9bb2a-be5-485d6859d0b80&quot;
Accept-Ranges: bytes
Content-Length: 3045
Keep-Alive: timeout=15, max=94
Connection: Keep-Alive
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://travelocker.com/component/content/article/58-pick-a-trip.html
If-Modified-Since: Wed, 19 Sep 2012 11:51:40 GMT
HTTP/1.1 200 OK

Content-Type: text/javascript
Content-Length: 14888
Content-Encoding: gzip
Last-Modified: Mon, 22 Oct 2012 15:51:19 GMT
X-Content-Type-Options: nosniff, nosniff
Date: Tue, 06 Nov 2012 01:15:05 GMT
Expires: Tue, 06 Nov 2012 13:15:05 GMT
Vary: Accept-Encoding
Age: 20341
Cache-Control: max-age=43200, public
Server: GFE/2.0
GET /__utm.gif?utmwv=5.3.7&utms=1&utmn=76245292&utmhn=travelocker.com&utmcs=UTF-8&utmsr=1176x885&utmvp=1159x778&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=Pick%20a%20Trip&utmhid=49671342&utmr=-&utmp=%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html&utmac=UA-9869392-1&utmcc=__utma%3D135924276.100529112.1352184847.1352184847.1352184847.1%3B%2B__utmz%3D135924276.1352184847.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=D~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=1&amp;utmn=76245292&amp;utmhn=travelocker.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=1159x778&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=Pick%20a%20Trip&amp;utmhid=49671342&amp;utmr=-&amp;utmp=%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html&amp;utmac=UA-9869392-1&amp;utmcc=__utma%3D135924276.100529112.1352184847.1352184847.1352184847.1%3B%2B__utmz%3D135924276.1352184847.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&amp;utmu=D~ 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://travelocker.com/component/content/article/58-pick-a-trip.html
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:22:41 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: 451886
Server: GFE/2.0
GET / HTTP/1.1

Host: www.ladygaga.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://travelocker.com/component/content/article/58-pick-a-trip.html
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 133
Location: /bornthiswayball/
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Date: Tue, 06 Nov 2012 06:54:08 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET / HTTP/1.1

Host: www.ladygaga.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://travelocker.com/component/content/article/58-pick-a-trip.html
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 133
Location: /bornthiswayball/
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Date: Tue, 06 Nov 2012 06:54:08 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /web_assets/_global/css/blueprint/screen.css HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Thu, 24 Mar 2011 23:54:30 GMT
Accept-Ranges: bytes
Etag: &quot;c42130d17eeacb1:0&quot;
Server: Microsoft-IIS/7.0
Content-Encoding: gzip
Content-Length: 3507
Vary: Accept-Encoding
Cache-Control: private, max-age=20791
Date: Tue, 06 Nov 2012 06:54:08 GMT
Connection: keep-alive
GET /web_assets/_global/css/blueprint/print.css HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Thu, 30 Sep 2010 10:54:02 GMT
Accept-Ranges: bytes
Etag: &quot;01d8ca8d60cb1:0&quot;
Server: Microsoft-IIS/7.0
Content-Encoding: gzip
Content-Length: 670
Vary: Accept-Encoding
Cache-Control: private, max-age=34904
Date: Tue, 06 Nov 2012 06:54:08 GMT
Connection: keep-alive
GET /bornthiswayball/ HTTP/1.1

Host: www.ladygaga.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://travelocker.com/component/content/article/58-pick-a-trip.html
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private
Server: Microsoft-IIS/7.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 11344
Date: Tue, 06 Nov 2012 06:54:08 GMT
Connection: keep-alive
Vary: Accept-Encoding
Set-Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a08+AM; path=/
GET /backplane.js HTTP/1.1

Host: d134l0cdryxgwa.cloudfront.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://www.ladygaga.com/bornthiswayball/
HTTP/1.0 200 OK

Content-Type: text/javascript
Content-Length: 15289
Connection: keep-alive
Accept-Ranges: bytes
Date: Fri, 02 Nov 2012 22:28:52 GMT
EC2-instance-id: i-4f41e134
Etag: W/&quot;15289-1351865778000&quot;
Last-Modified: Fri, 02 Nov 2012 14:16:18 GMT
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Age: 41116
X-Amz-Cf-Id: BsLK36Ftj1fd0iFnIeAPEf1ryGaa-xkI-xDiXa3pEJVQ8ha3OyOf0w==
Via: 1.0 c1639d907cade557ebff29e5be78b0b6.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /web_assets/_global/css/ALL.css HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Fri, 02 Nov 2012 17:51:54 GMT
Accept-Ranges: bytes
Etag: &quot;6abdb6be22b9cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 8043
Vary: Accept-Encoding
Cache-Control: private, max-age=20886
Date: Tue, 06 Nov 2012 06:54:08 GMT
Connection: keep-alive
GET / HTTP/1.1

Host: www.ladygaga.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://travelocker.com/component/content/article/58-pick-a-trip.html
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 133
Location: /bornthiswayball/
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /templates/travel/images/otherOff.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Tue, 06 Nov 2012 06:54:07 GMT
Server: Apache
Last-Modified: Wed, 05 May 2010 10:45:14 GMT
Etag: &quot;f9bb2e-50d6-485d685600280&quot;
Accept-Ranges: bytes
Content-Length: 20694
Keep-Alive: timeout=15, max=97
Connection: Keep-Alive
GET /web_assets/_global/js/library/SWFobject/swfobject.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Sat, 22 Apr 2006 08:27:30 GMT
Accept-Ranges: bytes
Etag: &quot;0c56098e665c61:0&quot;
Server: Microsoft-IIS/7.0
Content-Encoding: gzip
Content-Length: 2115
Vary: Accept-Encoding
Cache-Control: private, max-age=9011
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /_global/images/ucid/sso_social_icons.png HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a08+AM
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Thu, 15 Dec 2011 00:48:31 GMT
Accept-Ranges: bytes
Etag: &quot;8019d44c3bacc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 2517
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /web_assets/_global/js/IGA.linktagger.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 03 Aug 2011 04:33:02 GMT
Accept-Ranges: bytes
Etag: &quot;6928406e9651cc1:0&quot;
Server: Microsoft-IIS/7.0
Content-Encoding: gzip
Content-Length: 824
Vary: Accept-Encoding
Cache-Control: private, max-age=51268
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /bornthiswayball/ HTTP/1.1

Host: www.ladygaga.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a08+AM
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private
Server: Microsoft-IIS/7.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 11344
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
Vary: Accept-Encoding
Set-Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; path=/
GET /bornthiswayball/images/tourheader.png HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a08+AM
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Tue, 10 Apr 2012 21:44:28 GMT
Accept-Ranges: bytes
Etag: &quot;086a71a6317cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 1594
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /mxd3gmg.js HTTP/1.1

Host: use.typekit.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=utf-8
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, max-age=600
Date: Tue, 06 Nov 2012 06:54:09 GMT
Last-Modified: Tue, 06 Nov 2012 06:45:15 GMT
Server: ECS (arn/46F9)
Status: 200 OK
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 9333
GET /web_assets/_global/js/ALL_min.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 22 Mar 2011 23:30:43 GMT
Accept-Ranges: bytes
Etag: &quot;f952be29e9e8cb1:0&quot;
Server: Microsoft-IIS/7.0
Content-Encoding: gzip
Content-Length: 7629
Vary: Accept-Encoding
Cache-Control: private, max-age=44518
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/jquery.qtip.min.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 19 Aug 2011 17:26:25 GMT
Accept-Ranges: bytes
Etag: &quot;7191b1f955ecc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 14661
Vary: Accept-Encoding
Cache-Control: private, max-age=86161
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /libs/v1/forum/forum.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:38:36 GMT
Etag: 4854a743dcd20a348966ec8effb8a6d9
Vary: Accept-Encoding
X-Trans-Id: txb751b705c2de4a408e7734b54a01e6dd
X-Timestamp: 1349707116.51594
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Thu, 27 Sep 2012 19:27:22 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 1226
Cache-Control: public, max-age=626
Expires: Tue, 06 Nov 2012 07:04:35 GMT
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /backplane.js HTTP/1.1

Host: d134l0cdryxgwa.cloudfront.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://www.ladygaga.com/bornthiswayball/
If-Modified-Since: Fri, 02 Nov 2012 14:16:18 GMT
If-None-Match: W/&quot;15289-1351865778000&quot;
HTTP/1.0 304 Not Modified

HTTP/1.0 304 Not Modified
Connection: keep-alive
Date: Tue, 06 Nov 2012 06:54:09 GMT
Etag: W/&quot;15289-1351865778000&quot;
Last-Modified: Fri, 02 Nov 2012 14:16:18 GMT
Age: 41117
X-Amz-Cf-Id: 4EQsm-BeQ4YZzMlB0aaga5pkklpZrSrKg1_Hda6v34yI4MlMFhDoGQ==
Via: 1.0 c1639d907cade557ebff29e5be78b0b6.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /web_assets/_global/js/echo/plugins/blank-links.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 09 Aug 2011 23:00:35 GMT
Accept-Ranges: bytes
Etag: &quot;50b0c225e856cc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 572
Vary: Accept-Encoding
Cache-Control: private, max-age=83383
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/clear-after-body.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:00:01 GMT
Accept-Ranges: bytes
Etag: &quot;f615e78b80bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 284
Vary: Accept-Encoding
Cache-Control: private, max-age=46279
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /bornthiswayball/ HTTP/1.1

Host: www.ladygaga.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a08+AM
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private
Server: Microsoft-IIS/7.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 11344
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
Vary: Accept-Encoding
Set-Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; path=/
GET /libs/v1/inlinemedia.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:37:17 GMT
Etag: 35ae6191644b888dabe69146781fda26
Vary: Accept-Encoding
X-Timestamp: 1349707037.75438
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Thu, 27 Sep 2012 16:57:21 GMT
Accept-Ranges: bytes
X-Trans-Id: tx81c62b1cf8634e33a5ae8588318daccb
Content-Encoding: gzip
Content-Length: 4413
Cache-Control: public, max-age=798
Expires: Tue, 06 Nov 2012 07:07:27 GMT
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/enhanced-metadata.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 23 Jun 2011 23:47:31 GMT
Accept-Ranges: bytes
Etag: &quot;d0cfddeaff31cc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 698
Vary: Accept-Encoding
Cache-Control: private, max-age=83290
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/filter-children.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:00:01 GMT
Accept-Ranges: bytes
Etag: &quot;1c3cde8b80bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 840
Vary: Accept-Encoding
Cache-Control: private, max-age=8637
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /libs/v1/sanitize.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:15 GMT
Etag: 027cafdc601111c681a84998aff7dd1c
Vary: Accept-Encoding
X-Trans-Id: tx00d9f72635ab4a738f73dd118470eeb3
X-Timestamp: 1349706975.43264
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Sat, 15 Sep 2012 15:07:32 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 1682
Cache-Control: public, max-age=257
Expires: Tue, 06 Nov 2012 06:58:27 GMT
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /aspnet_client/microgroove/shadowbox/shadowbox.js HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a08+AM
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 14 Mar 2012 21:08:04 GMT
Accept-Ranges: bytes
Etag: &quot;aafc48b262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 7680
Vary: Accept-Encoding
Cache-Control: private, max-age=375
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /aspnet_client/microgroove/shared.min.js HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a08+AM
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 14 Mar 2012 21:08:01 GMT
Accept-Ranges: bytes
Etag: &quot;c4be6f8a262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 5755
Vary: Accept-Encoding
Cache-Control: private, max-age=30
Date: Tue, 06 Nov 2012 06:54:09 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/lmk-stream.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:00:01 GMT
Accept-Ranges: bytes
Etag: &quot;8170e18b80bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 1964
Vary: Accept-Encoding
Cache-Control: private, max-age=55403
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/permalink.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:41:43 GMT
Accept-Ranges: bytes
Etag: &quot;a11cd55e86bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 449
Vary: Accept-Encoding
Cache-Control: private, max-age=20664
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
POST / HTTP/1.1

Host: ocsp.digicert.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.1 200 OK

Content-Type: application/ocsp-response
Server: nginx
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
Content-Length: 471
Last-Modified: Tue, 06 Nov 2012 04:16:17 GMT
Expires: Mon, 12 Nov 2012 04:16:17 GMT
Cache-Control: max-age=510413
Accept-Ranges: bytes
GET /web_assets/_global/js/echo/plugins/permalink-retag.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:41:43 GMT
Accept-Ranges: bytes
Etag: &quot;9fb0d95e86bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 501
Vary: Accept-Encoding
Cache-Control: private, max-age=83351
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/regex.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:00:01 GMT
Accept-Ranges: bytes
Etag: &quot;3f40dc8b80bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 748
Vary: Accept-Encoding
Cache-Control: private, max-age=46863
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /libs/v1/comments/comments_core.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 18 Oct 2012 15:06:46 GMT
Etag: 147654c56478384a7094c5cd9ec6de98
Vary: Accept-Encoding
X-Timestamp: 1350572806.00980
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Thu, 18 Oct 2012 15:06:26 GMT
Accept-Ranges: bytes
X-Trans-Id: tx1fbcdb88d7e9459298d9fb9a2b8e6299
Content-Encoding: gzip
Content-Length: 12370
Cache-Control: public, max-age=321
Expires: Tue, 06 Nov 2012 06:59:31 GMT
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
POST / HTTP/1.1

Host: ocsp.digicert.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.1 200 OK

Content-Type: application/ocsp-response
Server: nginx
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: close
Content-Length: 471
Last-Modified: Tue, 06 Nov 2012 04:36:11 GMT
Expires: Mon, 12 Nov 2012 04:36:11 GMT
Cache-Control: max-age=511805
Accept-Ranges: bytes
GET /web_assets/_global/js/echo/plugins/social-sharing.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Sat, 17 Sep 2011 06:20:02 GMT
Accept-Ranges: bytes
Etag: &quot;74abadd5175cc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 1978
Vary: Accept-Encoding
Cache-Control: private, max-age=83241
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/sort-order.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 06 May 2011 00:00:02 GMT
Accept-Ranges: bytes
Etag: &quot;f8c57e8c80bcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 884
Vary: Accept-Encoding
Cache-Control: private, max-age=47058
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /libs/v1/comments/locale/en.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:39:47 GMT
Etag: c5a3cd2475169ac7d7d9001b8ff6e592
Vary: Accept-Encoding
X-Timestamp: 1349707187.19912
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 17 Aug 2012 14:39:51 GMT
Accept-Ranges: bytes
X-Trans-Id: tx27b5c8863a734e679791e1b2083e7a03
Content-Encoding: gzip
Content-Length: 1461
Cache-Control: public, max-age=343
Expires: Tue, 06 Nov 2012 06:59:53 GMT
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/strip-html.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 26 Jun 2012 17:44:19 GMT
Accept-Ranges: bytes
Etag: &quot;10d98750c353cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 630
Vary: Accept-Encoding
Cache-Control: private, max-age=83549
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/ucid-login.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 21 Dec 2011 02:59:15 GMT
Accept-Ranges: bytes
Etag: &quot;fd2779868cbfcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 606
Vary: Accept-Encoding
Cache-Control: private, max-age=45572
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /libs/v1/notifications/notifications.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:37:00 GMT
Etag: 3a452158facfc29c920a7c14752c505a
Vary: Accept-Encoding
X-Trans-Id: txea63918aa1df48d9860d9f4d82489850
X-Timestamp: 1349707020.89797
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Mon, 07 May 2012 17:31:22 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 9786
Cache-Control: public, max-age=494
Expires: Tue, 06 Nov 2012 07:02:24 GMT
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/youtube-wmode.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 18 May 2012 18:06:06 GMT
Accept-Ranges: bytes
Etag: &quot;bace63e52035cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 476
Vary: Accept-Encoding
Cache-Control: private, max-age=82946
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/plugins/switch-arktan-image.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 18:24:05 GMT
Accept-Ranges: bytes
Etag: &quot;d741b11982a5cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 1998
Vary: Accept-Encoding
Cache-Control: private, max-age=27665
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/echo_comment_localization.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 20 Dec 2011 21:59:26 GMT
Accept-Ranges: bytes
Etag: &quot;f6b820a462bfcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 1273
Vary: Accept-Encoding
Cache-Control: private, max-age=38807
Date: Tue, 06 Nov 2012 06:54:10 GMT
Connection: keep-alive
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&rnd=0.5403655846020196 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&amp;rnd=0.5403655846020196 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:10 GMT
EC2-instance-id: i-4d468230
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 57
Connection: keep-alive
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&rnd=0.2527440128272028 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&amp;rnd=0.2527440128272028 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:10 GMT
EC2-instance-id: i-cb16f5af
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 57
Connection: keep-alive
GET /v1.2/bus/umg/channel/cfdd3fec3805fa78c6f1b1bf5d59e078?callback=Backplane.response&rnd=0.9852228024872434 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/cfdd3fec3805fa78c6f1b1bf5d59e078?callback=Backplane.response&amp;rnd=0.9852228024872434 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:10 GMT
EC2-instance-id: i-4ee65a34
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 23
Connection: keep-alive
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&rnd=0.11333706809246291 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/new?callback=Backplane.finishInit&amp;rnd=0.11333706809246291 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:10 GMT
EC2-instance-id: i-4ae10430
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 57
Connection: keep-alive
GET /v1.2/bus/umg/channel/8aa3140514535ba1c0aafc14f152d9e2?callback=Backplane.response&rnd=0.3285606895518173 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/8aa3140514535ba1c0aafc14f152d9e2?callback=Backplane.response&amp;rnd=0.3285606895518173 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:11 GMT
EC2-instance-id: i-b716dfca
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 23
Connection: keep-alive
GET /v1.2/bus/umg/channel/dc47fff8401cb07fee510308cab434ec?callback=Backplane.response&rnd=0.9646615811935028 HTTP/1.1

Host: backplane1.janrainbackplane.com
GET /v1.2/bus/umg/channel/dc47fff8401cb07fee510308cab434ec?callback=Backplane.response&amp;rnd=0.9646615811935028 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:10 GMT
EC2-instance-id: i-ad16dfd0
Server: Apache-Coyote/1.1
X-BP-Instance: BP1-BP_2_0.2012.41_RC1_A
Content-Length: 23
Connection: keep-alive
GET /ajax/libs/jquery/1.6.2/jquery.min.js HTTP/1.1

Host: ajax.googleapis.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Mon, 02 Apr 2012 18:24:28 GMT
Date: Thu, 01 Nov 2012 01:09:07 GMT
Expires: Fri, 01 Nov 2013 01:09:07 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 32111
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 452704
GET /aspnet_client/microgroove/shadowbox/shadowbox.css HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; backplane-channel=umg:dc47fff8401cb07fee510308cab434ec
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Wed, 14 Mar 2012 21:08:04 GMT
Accept-Ranges: bytes
Etag: &quot;aafc48b262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 923
Vary: Accept-Encoding
Cache-Control: private, max-age=176
Date: Tue, 06 Nov 2012 06:54:11 GMT
Connection: keep-alive
GET /aspnet_client/microgroove/windows/themes/theme.ashx?s=modal&t=text/css&v=1 HTTP/1.1

Host: www.ladygaga.com
GET /aspnet_client/microgroove/windows/themes/theme.ashx?s=modal&amp;t=text/css&amp;v=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/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.ladygaga.com/aspnet_client/microgroove/shadowbox/shadowbox.css
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; backplane-channel=umg:dc47fff8401cb07fee510308cab434ec
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: public, must-revalidate, proxy-revalidate, max-age=2592000
Content-Length: 525
Content-Encoding: gzip
Expires: Thu, 06 Dec 2012 06:54:11 GMT
Server: Microsoft-IIS/7.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Date: Tue, 06 Nov 2012 06:54:11 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /web_assets/_global/js/echo/iga-echo-script.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Fri, 27 Jan 2012 01:26:18 GMT
Accept-Ranges: bytes
Etag: &quot;c09b7dab92dccc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 1268
Vary: Accept-Encoding
Cache-Control: private, max-age=44387
Date: Tue, 06 Nov 2012 06:54:11 GMT
Connection: keep-alive
GET /aspnet_client/microgroove/shadowbox/languages/shadowbox-en.js HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; backplane-channel=umg:dc47fff8401cb07fee510308cab434ec
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 14 Mar 2012 21:08:04 GMT
Accept-Ranges: bytes
Etag: &quot;18d6cb8b262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 295
Vary: Accept-Encoding
Cache-Control: private, max-age=281
Date: Tue, 06 Nov 2012 06:54:11 GMT
Connection: keep-alive
GET /aspnet_client/microgroove/shadowbox/players/shadowbox-iframe.js HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; backplane-channel=umg:dc47fff8401cb07fee510308cab434ec
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 14 Mar 2012 21:08:04 GMT
Accept-Ranges: bytes
Etag: &quot;e8e8de8b262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 447
Vary: Accept-Encoding
Cache-Control: private, max-age=140
Date: Tue, 06 Nov 2012 06:54:11 GMT
Connection: keep-alive
GET /aspnet_client/microgroove/shadowbox/players/shadowbox-img.js HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; backplane-channel=umg:dc47fff8401cb07fee510308cab434ec
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 14 Mar 2012 21:08:04 GMT
Accept-Ranges: bytes
Etag: &quot;e8e8de8b262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 990
Vary: Accept-Encoding
Cache-Control: private, max-age=214
Date: Tue, 06 Nov 2012 06:54:11 GMT
Connection: keep-alive
GET /aspnet_client/microgroove/shadowbox/adapters/shadowbox-jquery.js HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; backplane-channel=umg:dc47fff8401cb07fee510308cab434ec
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 14 Mar 2012 21:08:04 GMT
Accept-Ranges: bytes
Etag: &quot;6411c78b262cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 445
Vary: Accept-Encoding
Cache-Control: private, max-age=351
Date: Tue, 06 Nov 2012 06:54:11 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/river.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 08 May 2012 18:25:25 GMT
Accept-Ranges: bytes
Etag: &quot;ecd710f0472dcd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 4156
Vary: Accept-Encoding
Cache-Control: private, max-age=83313
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/forum.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Sat, 07 May 2011 00:25:01 GMT
Accept-Ranges: bytes
Etag: &quot;ea93b344dccc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 748
Vary: Accept-Encoding
Cache-Control: private, max-age=55373
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /web_assets/_global/js/echo/muxer.js HTTP/1.1

Host: cache.umusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 25 May 2011 01:43:26 GMT
Accept-Ranges: bytes
Etag: &quot;6cb7f247d1acc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Encoding: gzip
Content-Length: 944
Vary: Accept-Encoding
Cache-Control: private, max-age=50801
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /c/938/cc_af.js HTTP/1.1

Host: tags.crwdcntrl.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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: max-age=86400
Date: Tue, 06 Nov 2012 06:54:12 GMT
Etag: &quot;abfe-4ca89beb97c80&quot;
Expires: Wed, 07 Nov 2012 06:54:12 GMT
Last-Modified: Tue, 25 Sep 2012 17:07:46 GMT
Server: ECS (arn/467E)
Vary: Accept-Encoding
X-Cache: HIT
X-Cnection: close
Content-Length: 10746
GET /translate_a/element.js?cb=googleTranslateElementInit HTTP/1.1

Host: translate.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://www.ladygaga.com/bornthiswayball/
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
Date: Tue, 06 Nov 2012 06:54:12 GMT
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Content-Language: en
Pragma: no-cache
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: HTTP server (unknown)
Content-Length: 702
X-XSS-Protection: 1; mode=block
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://www.ladygaga.com/bornthiswayball/
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;9717c3c907d253191939bf5928941e07&quot;
Expires: Tue, 06 Nov 2012 06:54:12 GMT
Date: Tue, 06 Nov 2012 06:54:12 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 /translate_a/element.js?cb=googleTranslateElementInit HTTP/1.1

Host: translate.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://www.ladygaga.com/bornthiswayball/
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
Date: Tue, 06 Nov 2012 06:54:12 GMT
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Content-Language: en
Pragma: no-cache
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: HTTP server (unknown)
Content-Length: 702
X-XSS-Protection: 1; mode=block
GET /_global/images/ucid/ajax-loader.gif HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a08+AM
HTTP/1.1 200 OK

Content-Type: image/gif
Last-Modified: Fri, 16 Sep 2011 01:05:18 GMT
Accept-Ranges: bytes
Etag: &quot;9bb075b3c74cc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 2892
Date: Tue, 06 Nov 2012 06:54:12 GMT
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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript; charset=utf-8
Cache-Control: public, max-age=1800
Last-Modified: Fri, 02 Nov 2012 09:48:09 GMT
Etag: &quot;eeaccca8778f3be533564253af185e3e&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 24565
Date: Tue, 06 Nov 2012 06:54:12 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 /widget.js?v3 HTTP/1.1

Host: fanrx.universalmusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Age: 6489
Cache-Control: max-age=14400
Date: Tue, 06 Nov 2012 06:54:12 GMT
Etag: &quot;5ec007-738-4b6eb93146600&quot;
Expires: Tue, 06 Nov 2012 09:03:44 GMT
Last-Modified: Fri, 20 Jan 2012 01:26:48 GMT
Server: Apache/2.2.16 (Amazon)
Via: 1.1 varnish
X-Cached: true
X-Varnish: 810546258 810308046
Content-Length: 1848
Connection: keep-alive
GET /bornthiswayball/images/monsterpit.jpg HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a08+AM
HTTP/1.1 200 OK

Content-Type: image/jpeg
Last-Modified: Thu, 16 Feb 2012 23:34:56 GMT
Accept-Ranges: bytes
Etag: &quot;090f1963edcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 7777
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /assets/capture_client.js HTTP/1.1

Host: d7v0k4dt27zlp.cloudfront.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://www.ladygaga.com/bornthiswayball/
HTTP/1.0 200 OK

Content-Type: text/javascript
Content-Length: 575
Connection: keep-alive
x-amz-id-2: M4k1UcucxXZxfKfj29g5GuDBye12tx9mdbLzVRUoMhDuWLBBFWI9F1OG6rIUhnWd
x-amz-request-id: D13E98733E0C17F3
Date: Thu, 18 Oct 2012 21:40:12 GMT
Cache-Control: max-age=31557600
Content-Encoding: gzip
Last-Modified: Tue, 07 Aug 2012 22:20:23 GMT
Etag: &quot;a395389bb0d2ae17fd54ccf68a21da3b&quot;
Accept-Ranges: bytes
Server: AmazonS3
Age: 1588441
X-Amz-Cf-Id: 0JUmSu6HiOutiY3V-aWusaE-Dc9zkkE4FIPdzqaLi_oluw7zN0aI1A==
Via: 1.0 5c45ac28c3d4ebb60eeea62ebe48824b.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /translate_a/element.js?cb=googleTranslateElementInit HTTP/1.1

Host: translate.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://www.ladygaga.com/bornthiswayball/
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
Date: Tue, 06 Nov 2012 06:54:12 GMT
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Content-Language: en
Pragma: no-cache
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: HTTP server (unknown)
Content-Length: 702
X-XSS-Protection: 1; mode=block
POST / HTTP/1.1

Host: ocsp.digicert.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.1 200 OK

Content-Type: application/ocsp-response
Server: nginx
Date: Tue, 06 Nov 2012 06:54:13 GMT
Connection: keep-alive
Content-Length: 471
Last-Modified: Tue, 06 Nov 2012 04:36:24 GMT
Expires: Mon, 12 Nov 2012 04:36:24 GMT
Cache-Control: max-age=511451
Accept-Ranges: bytes
GET /libs/v1/comments/edit.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:39:56 GMT
Etag: 98a5cfe14f4210a1394cc96b00cc5847
Vary: Accept-Encoding
X-Trans-Id: tx7109a8cc481c411ba62108c904f2aeb0
X-Timestamp: 1349707196.00669
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 29 Jul 2011 18:08:19 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 1492
Cache-Control: public, max-age=352
Expires: Tue, 06 Nov 2012 07:00:04 GMT
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /libs/v1/UpdateSort/UpdateSort.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:09 GMT
Etag: c2574a22c6c05a03439a60553579ce5d
Vary: Accept-Encoding
X-Timestamp: 1349706969.20250
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 08 Feb 2012 22:48:31 GMT
Accept-Ranges: bytes
X-Trans-Id: txa940fc70ffd64bb6905076e206ccb30e
Content-Encoding: gzip
Content-Length: 920
Cache-Control: public, max-age=151
Expires: Tue, 06 Nov 2012 06:56:43 GMT
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /libs/v1/LMKSubscription/LMKSubscription.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:37:15 GMT
Etag: a6af50b1ec19dd8d274e6e92f5cce645
Vary: Accept-Encoding
X-Trans-Id: txac1fb4afc3d847c18377317cad0d0034
X-Timestamp: 1349707035.33234
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 18 Jul 2012 21:41:45 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 3681
Cache-Control: public, max-age=110
Expires: Tue, 06 Nov 2012 06:56:02 GMT
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /libs/v1/rssfeed/rssfeed.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:16 GMT
Etag: d4066fbbc47a910e4627d6a348a844c5
Vary: Accept-Encoding
X-Timestamp: 1349706976.17651
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 16 May 2012 16:57:43 GMT
Accept-Ranges: bytes
X-Trans-Id: txb4a2736ad52b4e45ac8c9a7b848c96bf
Content-Encoding: gzip
Content-Length: 903
Cache-Control: public, max-age=521
Expires: Tue, 06 Nov 2012 07:02:53 GMT
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /libs/v1/janrain-sharing.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Tue, 09 Oct 2012 20:08:53 GMT
Etag: 9ced29d8008d303ccc1d061a55af072b
Vary: Accept-Encoding
X-Timestamp: 1349813333.73462
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Tue, 09 Oct 2012 19:52:40 GMT
Accept-Ranges: bytes
X-Trans-Id: txfa1105c9bbe44d6092aaba93e7aabb16
Content-Encoding: gzip
Content-Length: 3774
Cache-Control: public, max-age=176
Expires: Tue, 06 Nov 2012 06:57:08 GMT
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /ark-metadata-css.js HTTP/1.1

Host: cdn.arktan.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.ladygaga.com/bornthiswayball/
HTTP/1.0 200 OK

Content-Type: text/javascript
Content-Length: 2043
Connection: keep-alive
x-amz-id-2: 21iRXBWRx3xSKzRgIQYgZy1FzMffUmZNngjrTbTroJqiEB7ItppujVx43O6T2QE+
x-amz-request-id: 8D2D342454AD1A65
Date: Sat, 06 Oct 2012 05:26:57 GMT
Last-Modified: Sun, 15 May 2011 17:00:19 GMT
Etag: &quot;5fb0eb8ade5b4c9e255c8dffae170d0f&quot;
Accept-Ranges: bytes
Server: AmazonS3
Age: 32233
X-Amz-Cf-Id: Kf5uzbze5LqhvC8uV0M82x60Re3Wwy-EIOew26C1_RFGHVzS-Ge_0g==
Via: 1.0 20a0fe5b9da9fdc5f8ffb0f2e464a6e7.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /bornthiswayball/images/skype.png HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; backplane-channel=umg:dc47fff8401cb07fee510308cab434ec
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Tue, 11 Sep 2012 18:52:31 GMT
Accept-Ranges: bytes
Etag: &quot;80c1db984e90cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 2741
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /bornthiswayball/images/btn-enter.png HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; backplane-channel=umg:dc47fff8401cb07fee510308cab434ec
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Wed, 30 Nov 2011 18:05:11 GMT
Accept-Ranges: bytes
Etag: &quot;80a5f1998aafcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 1838
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /p.gif?s=1&k=mxd3gmg&ht=tk&h=www.ladygaga.com&f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&a=163479&_=1352184852442 HTTP/1.1

Host: p.typekit.net
GET /p.gif?s=1&amp;k=mxd3gmg&amp;ht=tk&amp;h=www.ladygaga.com&amp;f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&amp;a=163479&amp;_=1352184852442 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Cache-Control: max-age=604800
Date: Tue, 06 Nov 2012 06:54:12 GMT
Expires: Tue, 13 Nov 2012 06:54:12 GMT
Last-Modified: Tue, 31 Jul 2012 23:01:31 GMT
Server: ECS (arn/46E4)
X-Cache: HIT
Content-Length: 35
GET /clientapps/v2/packs/full-no-jquery-pack.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82703
Date: Tue, 06 Nov 2012 06:54:12 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:09 GMT
Expires: Tue, 06 Nov 2012 07:55:49 GMT
Content-Length: 100461
Connection: keep-alive
GET /p.gif?s=1&k=mxd3gmg&ht=tk&h=www.ladygaga.com&f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&a=163479&_=1352184852788 HTTP/1.1

Host: p.typekit.net
GET /p.gif?s=1&amp;k=mxd3gmg&amp;ht=tk&amp;h=www.ladygaga.com&amp;f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&amp;a=163479&amp;_=1352184852788 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Cache-Control: max-age=604800
Date: Tue, 06 Nov 2012 06:54:13 GMT
Expires: Tue, 13 Nov 2012 06:54:13 GMT
Last-Modified: Tue, 31 Jul 2012 23:01:31 GMT
Server: ECS (arn/46E4)
X-Cache: HIT
Content-Length: 35
GET /p.gif?s=1&k=mxd3gmg&ht=tk&h=www.ladygaga.com&f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&a=163479&_=1352184852822 HTTP/1.1

Host: p.typekit.net
GET /p.gif?s=1&amp;k=mxd3gmg&amp;ht=tk&amp;h=www.ladygaga.com&amp;f=1817.632.635.634.631.637.630.636.633.762.761.6364.6365&amp;a=163479&amp;_=1352184852822 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Cache-Control: max-age=604800
Date: Tue, 06 Nov 2012 06:54:13 GMT
Expires: Tue, 13 Nov 2012 06:54:13 GMT
Last-Modified: Tue, 31 Jul 2012 23:01:31 GMT
Server: ECS (arn/46E4)
X-Cache: HIT
Content-Length: 35
GET /css/fancybox.css HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css
Server: Apache
Accept-Ranges: bytes
Content-Encoding: gzip
Vary: Accept-Encoding
Age: 174342
Date: Tue, 06 Nov 2012 06:54:13 GMT
Last-Modified: Thu, 05 Apr 2012 07:33:08 GMT
Content-Length: 1585
Connection: keep-alive
GET /__utm.gif?utmwv=5.3.7&utms=3&utmn=412229082&utmhn=www.ladygaga.com&utmcs=UTF-8&utmsr=1176x885&utmvp=15x15&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&utmhid=21066701&utmr=http%3A%2F%2Ftravelocker.com%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html&utmp=%2Fbornthiswayball%2F&utmac=UA-1162848-67&utmcc=__utma%3D70702477.1321529981.1352184853.1352184853.1352184853.1%3B%2B__utmz%3D70702477.1352184853.1.1.utmcsr%3Dtravelocker.com%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=3&amp;utmn=412229082&amp;utmhn=www.ladygaga.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=15x15&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&amp;utmhid=21066701&amp;utmr=http%3A%2F%2Ftravelocker.com%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html&amp;utmp=%2Fbornthiswayball%2F&amp;utmac=UA-1162848-67&amp;utmcc=__utma%3D70702477.1321529981.1352184853.1352184853.1352184853.1%3B%2B__utmz%3D70702477.1352184853.1.1.utmcsr%3Dtravelocker.com%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html%3B&amp;utmu=q~ 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:29:28 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: 451485
Server: GFE/2.0
GET /__utm.gif?utmwv=5.3.7&utms=2&utmn=968173616&utmhn=www.ladygaga.com&utmcs=UTF-8&utmsr=1176x885&utmvp=15x15&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&utmhid=931113577&utmr=http%3A%2F%2Ftravelocker.com%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html&utmp=%2Fbornthiswayball%2F&utmac=UA-1162848-67&utmcc=__utma%3D70702477.1321529981.1352184853.1352184853.1352184853.1%3B%2B__utmz%3D70702477.1352184853.1.1.utmcsr%3Dtravelocker.com%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=2&amp;utmn=968173616&amp;utmhn=www.ladygaga.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=15x15&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&amp;utmhid=931113577&amp;utmr=http%3A%2F%2Ftravelocker.com%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html&amp;utmp=%2Fbornthiswayball%2F&amp;utmac=UA-1162848-67&amp;utmcc=__utma%3D70702477.1321529981.1352184853.1352184853.1352184853.1%3B%2B__utmz%3D70702477.1352184853.1.1.utmcsr%3Dtravelocker.com%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html%3B&amp;utmu=q~ 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:37:48 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: 450985
Server: GFE/2.0
GET /libs/v1/jquery-pack.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 11 Oct 2012 16:44:31 GMT
Etag: d74af802a5acfeae38607a8d0b309288
Vary: Accept-Encoding
X-Trans-Id: txaab733d29d3d4f60b3eece257f7de039
X-Timestamp: 1349973871.16302
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Thu, 11 Oct 2012 16:44:09 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 59799
Cache-Control: public, max-age=490
Expires: Tue, 06 Nov 2012 07:02:23 GMT
Date: Tue, 06 Nov 2012 06:54:13 GMT
Connection: keep-alive
GET /k/mxd3gmg-d.css?3bb2a6e53c9684ffdc9a9bf71b5b2a6295e5720163621489f1819d0db135269511600c2f7c2b8d7fceb0e6d16d4e2cdfcab2282e49be9f4c89c30a366459721fbcad6c743493934698da63b2c1a4d61fca95905b78b4234a4486d13bd13bb5fab6fb7cf00134e53e30fa2608a2d243 HTTP/1.1

Host: use.typekit.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css;charset=utf-8
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, max-age=604800
Date: Tue, 06 Nov 2012 06:54:12 GMT
Last-Modified: Thu, 01 Nov 2012 18:17:52 GMT
Server: ECS (arn/46E4)
Status: 200 OK
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 265791
GET /sso.js HTTP/1.1

Host: sso.universalmusic.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript
Accept-Ranges: bytes
Date: Tue, 06 Nov 2012 06:54:13 GMT
EC2-instance-id: i-7dec1d06
Etag: W/&quot;16391-1349275618000&quot;
Last-Modified: Wed, 03 Oct 2012 14:46:58 GMT
P3P: CP=&quot;IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT&quot;
Server: Apache-Coyote/1.1
X-SSO-Instance: SSO1-2012.40_RC2
Content-Length: 16391
Connection: keep-alive
GET /bornthiswayball/images/logo.png HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; backplane-channel=umg:dc47fff8401cb07fee510308cab434ec
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Tue, 10 Apr 2012 21:37:54 GMT
Accept-Ranges: bytes
Etag: &quot;0e5cf2f6217cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 75197
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /clientapps/v2/backplane.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82712
Date: Tue, 06 Nov 2012 06:54:14 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:57 GMT
Expires: Tue, 06 Nov 2012 07:55:42 GMT
Content-Length: 2935
Connection: keep-alive
GET /bornthiswayball/images/bg2.jpg HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; backplane-channel=umg:dc47fff8401cb07fee510308cab434ec
HTTP/1.1 200 OK

Content-Type: image/jpeg
Last-Modified: Tue, 10 Apr 2012 21:38:02 GMT
Accept-Ranges: bytes
Etag: &quot;09994346217cd1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 124157
Date: Tue, 06 Nov 2012 06:54:12 GMT
Connection: keep-alive
GET /libs/v1/analytics/analytics.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:40:13 GMT
Etag: bc20a8d63763854db8067f9c7a2a0f08
Vary: Accept-Encoding
X-Timestamp: 1349707213.66073
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 28 Sep 2012 14:56:50 GMT
Accept-Ranges: bytes
X-Trans-Id: txdc6fb419dcbc4c9a804e1ede80694709
Content-Encoding: gzip
Content-Length: 3196
Cache-Control: public, max-age=475
Expires: Tue, 06 Nov 2012 07:02:10 GMT
Date: Tue, 06 Nov 2012 06:54:15 GMT
Connection: keep-alive
GET /clientapps/v2/submit.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82712
Date: Tue, 06 Nov 2012 06:54:15 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:57 GMT
Expires: Tue, 06 Nov 2012 07:55:43 GMT
Content-Length: 18717
Connection: keep-alive
GET /libs/v1/forum/jquery.ba-hashchange.min.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:38:04 GMT
Etag: 5cdc6165b5488bcd11ccafc74cd6e235
Vary: Accept-Encoding
X-Trans-Id: tx195f4abadc2c488b91973bb90a8b198a
X-Timestamp: 1347245137.41748
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 10 Feb 2012 17:50:28 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 856
Cache-Control: public, max-age=589
Expires: Tue, 06 Nov 2012 07:04:04 GMT
Date: Tue, 06 Nov 2012 06:54:15 GMT
Connection: keep-alive
GET /libs/v1/CustomReorder/CustomReorder.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:39:29 GMT
Etag: 6098cb196dd25d3da5c58263c016fbb3
Vary: Accept-Encoding
X-Trans-Id: tx96d492e08f7e481791ed3daf37895bec
X-N: S
X-Timestamp: 1344871183.91350
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 09 May 2012 22:33:01 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 2839
Cache-Control: public, max-age=685
Expires: Tue, 06 Nov 2012 07:05:40 GMT
Date: Tue, 06 Nov 2012 06:54:15 GMT
Connection: keep-alive
GET /libs/v1/UpdateSort/UpdateSort2.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:08 GMT
Etag: f0812cfab19c08bcc826c01015b96b8e
Vary: Accept-Encoding
X-Trans-Id: txc421cdb99a604be2adfd9843dd0c265b
X-N: S
X-Timestamp: 1346033971.88848
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Mon, 25 Jun 2012 20:37:55 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 590
Cache-Control: public, max-age=193
Expires: Tue, 06 Nov 2012 06:57:28 GMT
Date: Tue, 06 Nov 2012 06:54:15 GMT
Connection: keep-alive
GET /libs/v1/trendingposts/trendingposts.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:11 GMT
Etag: 79e85f49b554f87cc40c5ad897d4de11
Vary: Accept-Encoding
X-Trans-Id: tx3075d37ecf004b28ba0c036e9304311e
X-Timestamp: 1346033974.46457
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 03 Aug 2011 15:58:04 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 2142
Cache-Control: public, max-age=157
Expires: Tue, 06 Nov 2012 06:56:52 GMT
Date: Tue, 06 Nov 2012 06:54:15 GMT
Connection: keep-alive
GET /libs/v1/forum/jquery-ui-1.8.8.custom.min.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:38:03 GMT
Etag: 58ba17e3a3375e4fb49b7762fd53bd18
Vary: Accept-Encoding
X-Trans-Id: tx327f39bd5a004f7c808f637359e688d3
X-Timestamp: 1345429569.81448
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 10 Feb 2012 17:50:28 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 15838
Cache-Control: public, max-age=183
Expires: Tue, 06 Nov 2012 06:57:18 GMT
Date: Tue, 06 Nov 2012 06:54:15 GMT
Connection: keep-alive
GET /clientapps/v2/plugins/form-auth.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82711
Date: Tue, 06 Nov 2012 06:54:15 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:11 GMT
Expires: Tue, 06 Nov 2012 07:55:44 GMT
Content-Length: 1590
Connection: keep-alive
GET /libs/v1/lscache.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:37:14 GMT
Etag: 70cfc2962bcfe3c1fe6fc737ca39617a
Vary: Accept-Encoding
X-Trans-Id: tx6e78b0c03a0543d880ccd2d5c52d547a
X-Timestamp: 1346034014.12473
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 20 Jan 2012 20:50:36 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 2086
Cache-Control: public, max-age=420
Expires: Tue, 06 Nov 2012 07:01:15 GMT
Date: Tue, 06 Nov 2012 06:54:15 GMT
Connection: keep-alive
GET /libs/v1/forum/localization/en.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:38:01 GMT
Etag: 220d7275783822637eda89e4fc7bcd46
Vary: Accept-Encoding
X-Trans-Id: tx00759ab4dda544a3acf93e24d8a63ab3
X-N: S
X-Timestamp: 1347849517.27825
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Mon, 27 Aug 2012 17:35:21 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 2139
Cache-Control: public, max-age=169
Expires: Tue, 06 Nov 2012 06:57:04 GMT
Date: Tue, 06 Nov 2012 06:54:15 GMT
Connection: keep-alive
GET /libs/v1/ugcpoll.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:09 GMT
Etag: 36a342b951cabe24c724bc02942fe38b
Vary: Accept-Encoding
X-Trans-Id: txa329dcc6d54f4ba3b940f2f9635ed71f
X-Timestamp: 1349706969.94147
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 26 Sep 2012 19:50:49 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 3266
Cache-Control: public, max-age=355
Expires: Tue, 06 Nov 2012 07:00:10 GMT
Date: Tue, 06 Nov 2012 06:54:15 GMT
Connection: keep-alive
GET /libs/v1/EMBSubscription/EMBSubscription.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:39:25 GMT
Etag: 2e170a9195e064b54fdd986ff58189d1
Vary: Accept-Encoding
X-Timestamp: 1349707165.69901
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 29 Aug 2012 15:27:31 GMT
Accept-Ranges: bytes
X-Trans-Id: txf718c417cf564ceab0e8f4c3a4feb9f4
Content-Encoding: gzip
Content-Length: 3849
Cache-Control: public, max-age=400
Expires: Tue, 06 Nov 2012 07:00:55 GMT
Date: Tue, 06 Nov 2012 06:54:15 GMT
Connection: keep-alive
GET /libs/v1/forum/bumptopic.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:38:40 GMT
Etag: 28a49cd847eef74e589fdd86efa01053
Vary: Accept-Encoding
X-Trans-Id: tx12214a7e43ab4eb2916da94ce0913d53
X-Timestamp: 1349707120.97977
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Mon, 24 Sep 2012 19:17:21 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 518
Cache-Control: public, max-age=187
Expires: Tue, 06 Nov 2012 06:57:23 GMT
Date: Tue, 06 Nov 2012 06:54:16 GMT
Connection: keep-alive
GET /clientapps/v2/plugins/reply.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82710
Date: Tue, 06 Nov 2012 06:54:15 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:09 GMT
Expires: Tue, 06 Nov 2012 07:55:45 GMT
Content-Length: 2160
Connection: keep-alive
GET /clientapps/v2/stream.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82711
Date: Tue, 06 Nov 2012 06:54:15 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:57 GMT
Expires: Tue, 06 Nov 2012 07:55:44 GMT
Content-Length: 34369
Connection: keep-alive
GET /clientapps/v2/user-list.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82713
Date: Tue, 06 Nov 2012 06:54:15 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:57 GMT
Expires: Tue, 06 Nov 2012 07:55:42 GMT
Content-Length: 15427
Connection: keep-alive
GET /clientapps/v2/curation.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82712
Date: Tue, 06 Nov 2012 06:54:15 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:56 GMT
Expires: Tue, 06 Nov 2012 07:55:43 GMT
Content-Length: 17902
Connection: keep-alive
GET /clientapps/v2/counter.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82713
Date: Tue, 06 Nov 2012 06:54:15 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:56 GMT
Expires: Tue, 06 Nov 2012 07:55:42 GMT
Content-Length: 12474
Connection: keep-alive
GET /clientapps/v2/auth.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82711
Date: Tue, 06 Nov 2012 06:54:15 GMT
Last-Modified: Thu, 01 Nov 2012 07:52:58 GMT
Expires: Tue, 06 Nov 2012 07:55:44 GMT
Content-Length: 14561
Connection: keep-alive
GET /libs/v1/HoverCard/HoverCard.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:37:28 GMT
Etag: be60e819c79c04116309ad0a92def299
Vary: Accept-Encoding
X-Trans-Id: tx4daf32f04d684d848d6864edd84bd6bd
X-Timestamp: 1346034024.82440
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Fri, 18 May 2012 16:17:01 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 16252
Cache-Control: public, max-age=257
Expires: Tue, 06 Nov 2012 06:58:32 GMT
Date: Tue, 06 Nov 2012 06:54:15 GMT
Connection: keep-alive
GET /libs/v1/forum/edit.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:38:39 GMT
Etag: 7135f1ebf356dc557aa80d000b4004fa
Vary: Accept-Encoding
X-Trans-Id: tx09588085ab21420f830d8dce7c5be2e1
X-Timestamp: 1349707119.37394
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Mon, 24 Sep 2012 20:07:11 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 2044
Cache-Control: public, max-age=703
Expires: Tue, 06 Nov 2012 07:05:59 GMT
Date: Tue, 06 Nov 2012 06:54:16 GMT
Connection: keep-alive
GET /libs/v1/sonar.polls.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Mon, 08 Oct 2012 14:36:14 GMT
Etag: 12ecde4ff8d73ad3260da86b2fcb3dc7
Vary: Accept-Encoding
X-Trans-Id: tx5043ac1483b34d59a17efd542a454251
X-Timestamp: 1349706974.67392
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Mon, 01 Oct 2012 14:33:07 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 7008
Cache-Control: public, max-age=220
Expires: Tue, 06 Nov 2012 06:57:55 GMT
Date: Tue, 06 Nov 2012 06:54:15 GMT
Connection: keep-alive
GET /clientapps/v2/plugins/curation.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82712
Date: Tue, 06 Nov 2012 06:54:16 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:11 GMT
Expires: Tue, 06 Nov 2012 07:55:44 GMT
Content-Length: 3426
Connection: keep-alive
GET /clientapps/v2/plugins/like.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82712
Date: Tue, 06 Nov 2012 06:54:16 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:10 GMT
Expires: Tue, 06 Nov 2012 07:55:44 GMT
Content-Length: 2349
Connection: keep-alive
GET /clientapps/v2/plugins/user-privileges.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82711
Date: Tue, 06 Nov 2012 06:54:16 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:10 GMT
Expires: Tue, 06 Nov 2012 07:55:45 GMT
Content-Length: 1649
Connection: keep-alive
GET /clientapps/v2/plugins/user-ban.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82710
Date: Tue, 06 Nov 2012 06:54:16 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:10 GMT
Expires: Tue, 06 Nov 2012 07:55:46 GMT
Content-Length: 1358
Connection: keep-alive
GET /clientapps/v2/plugins/community-flag.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82709
Date: Tue, 06 Nov 2012 06:54:16 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:10 GMT
Expires: Tue, 06 Nov 2012 07:55:47 GMT
Content-Length: 1648
Connection: keep-alive
GET /clientapps/v2/plugins/metadata-manager.js HTTP/1.1

Host: cdn.echoenabled.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Cache-Control: max-age=86400
Age: 82707
Date: Tue, 06 Nov 2012 06:54:16 GMT
Last-Modified: Thu, 01 Nov 2012 07:53:10 GMT
Expires: Tue, 06 Nov 2012 07:55:49 GMT
Content-Length: 1411
Connection: keep-alive
GET /__utm.gif?utmwv=5.3.7&utms=1&utmn=691896714&utmhn=www.ladygaga.com&utmcs=UTF-8&utmsr=1176x885&utmvp=15x15&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&utmhid=880917799&utmr=http%3A%2F%2Ftravelocker.com%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html&utmp=%2Fbornthiswayball%2F&utmac=UA-1162848-67&utmcc=__utma%3D70702477.1321529981.1352184853.1352184853.1352184853.1%3B%2B__utmz%3D70702477.1352184853.1.1.utmcsr%3Dtravelocker.com%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=1&amp;utmn=691896714&amp;utmhn=www.ladygaga.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=15x15&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=LADY%20GAGA%20%7C%20BORN%20THIS%20WAY%20BALL&amp;utmhid=880917799&amp;utmr=http%3A%2F%2Ftravelocker.com%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html&amp;utmp=%2Fbornthiswayball%2F&amp;utmac=UA-1162848-67&amp;utmcc=__utma%3D70702477.1321529981.1352184853.1352184853.1352184853.1%3B%2B__utmz%3D70702477.1352184853.1.1.utmcsr%3Dtravelocker.com%7Cutmccn%3D(referral)%7Cutmcmd%3Dreferral%7Cutmcct%3D%2Fcomponent%2Fcontent%2Farticle%2F58-pick-a-trip.html%3B&amp;utmu=q~ 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:27:56 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: 451580
Server: GFE/2.0
GET /libs/v1/forum/core.js HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Last-Modified: Wed, 17 Oct 2012 17:24:42 GMT
Etag: 2d154789dd42c02053dd4a32a916598e
Vary: Accept-Encoding
X-Trans-Id: txc21960159cf64504a558bb3beb9a3977
X-Timestamp: 1350494682.11721
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Wed, 17 Oct 2012 17:23:55 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 32589
Cache-Control: public, max-age=211
Expires: Tue, 06 Nov 2012 06:57:47 GMT
Date: Tue, 06 Nov 2012 06:54:16 GMT
Connection: keep-alive
GET /translate_static/css/translateelement.css HTTP/1.1

Host: translate.googleapis.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Tue, 22 May 2012 18:21:40 GMT
Date: Tue, 06 Nov 2012 06:48:46 GMT
Expires: Tue, 06 Nov 2012 07:48:46 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 3559
X-XSS-Protection: 1; mode=block
Age: 330
Cache-Control: public, max-age=3600
GET /translate_static/js/element/main.js HTTP/1.1

Host: translate.googleapis.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Sat, 02 Jun 2012 02:49:04 GMT
Date: Tue, 06 Nov 2012 06:47:22 GMT
Expires: Tue, 06 Nov 2012 07:47:22 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 1542
X-XSS-Protection: 1; mode=block
Age: 414
Cache-Control: public, max-age=3600
GET /_/apps-static/_/js/gapi/plusone/rt=j/ver=1924p8SdRVo.no./sv=1/am=!5V4AwLTVPeWIaanGfQ/d=1/rs=AItRSTOdOO6Av5tMuP_aUf0Hcw_61Yh1eQ/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://www.ladygaga.com/bornthiswayball/
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;-914192948&quot;
Expires: Thu, 06 Dec 2012 02:16:34 GMT
Date: Tue, 06 Nov 2012 02:16:34 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: 27846
Age: 16662
GET /translate_static/js/element/10/element_main.js HTTP/1.1

Host: translate.googleapis.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Last-Modified: Sat, 02 Jun 2012 01:19:15 GMT
Date: Tue, 06 Nov 2012 06:23:05 GMT
Expires: Tue, 06 Nov 2012 07:23:05 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 75700
X-XSS-Protection: 1; mode=block
Age: 1871
Cache-Control: public, max-age=3600
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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=utf-8
Etag: &quot;198f1f6af9aaf2831547da88d246ce2a&quot;
Content-Encoding: gzip
X-FB-Debug: B3S0E7UvH3jAx8bmXJBNdV68p3HSrIqAGW16r8zkzpE=
Content-Length: 57949
Cache-Control: public, max-age=1066
Expires: Tue, 06 Nov 2012 07:12:02 GMT
Date: Tue, 06 Nov 2012 06:54:16 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /libs/v1/notifications/notifications.css HTTP/1.1

Host: cdn.realtidbits.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/css
Last-Modified: Mon, 08 Oct 2012 14:37:01 GMT
Etag: 363263c372483f23fea3cc060d3e78fc
Vary: Accept-Encoding
X-Trans-Id: txe82714299bb84c04853d90a5acead189
X-N: S
X-Timestamp: 1349707021.87135
X-Object-Meta-X-Object-Meta-Cb-Modifiedtime: Thu, 01 Dec 2011 00:32:32 GMT
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 875
Cache-Control: public, max-age=861
Expires: Tue, 06 Nov 2012 07:08:39 GMT
Date: Tue, 06 Nov 2012 06:54:18 GMT
Connection: keep-alive
GET /connect/xd_arbiter.php?version=14 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
X-FB-Debug: kbRja3HTtFJQmhiXrnwdDG7MDTS+a7/1rUwNbzo8xGA=
Content-Length: 9724
Vary: Accept-Encoding
Cache-Control: public, max-age=31493465
Expires: Tue, 05 Nov 2013 19:05:23 GMT
Date: Tue, 06 Nov 2012 06:54:18 GMT
Connection: keep-alive
GET /v1/users/whoami?callback=jQuery16207941129415057789_1352184851435&appkey=prod.umg&sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2Fcfdd3fec3805fa78c6f1b1bf5d59e078&_=1352184858462 HTTP/1.1

Host: api.echoenabled.com
GET /v1/users/whoami?callback=jQuery16207941129415057789_1352184851435&amp;appkey=prod.umg&amp;sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2Fcfdd3fec3805fa78c6f1b1bf5d59e078&amp;_=1352184858462 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset="utf-8"
Connection: close
Server: Yaws 1.92
Date: Tue, 06 Nov 2012 06:54:19 GMT
Content-Length: 75
Content-Type: application/x-javascript; charset=&quot;utf-8&quot;
Access-Control-Allow-Origin: *
X-Echo-Node: jskit@nweb90
GET /v1/users/whoami?callback=jQuery162015952113218958042_1352184851515&appkey=prod.umg&sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2F8aa3140514535ba1c0aafc14f152d9e2&_=1352184858560 HTTP/1.1

Host: api.echoenabled.com
GET /v1/users/whoami?callback=jQuery162015952113218958042_1352184851515&amp;appkey=prod.umg&amp;sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2F8aa3140514535ba1c0aafc14f152d9e2&amp;_=1352184858560 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset="utf-8"
Connection: close
Server: Yaws 1.92
Date: Tue, 06 Nov 2012 06:54:19 GMT
Content-Length: 76
Content-Type: application/x-javascript; charset=&quot;utf-8&quot;
Access-Control-Allow-Origin: *
X-Echo-Node: jskit@nweb88
GET /v1/users/whoami?callback=jQuery16205498131377090428_1352184851577&appkey=prod.umg&sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2Fdc47fff8401cb07fee510308cab434ec&_=1352184858593 HTTP/1.1

Host: api.echoenabled.com
GET /v1/users/whoami?callback=jQuery16205498131377090428_1352184851577&amp;appkey=prod.umg&amp;sessionID=https%3A%2F%2Fbackplane1.janrainbackplane.com%2Fv1.2%2Fbus%2Fumg%2Fchannel%2Fdc47fff8401cb07fee510308cab434ec&amp;_=1352184858593 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset="utf-8"
Connection: close
Server: Yaws 1.92
Date: Tue, 06 Nov 2012 06:54:19 GMT
Content-Length: 75
Content-Type: application/x-javascript; charset=&quot;utf-8&quot;
Access-Control-Allow-Origin: *
X-Echo-Node: jskit@nweb7
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&thinRegistration=true HTTP/1.1

Host: reg.sso.universalmusic.com
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&amp;clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&amp;bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&amp;thinRegistration=true 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Server: nginx
Date: Tue, 06 Nov 2012 06:54:19 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=60
Vary: Accept-Encoding, *
Cache-Control: public, max-age=10
Expires: Tue, 06 Nov 2012 06:55:58 GMT
Last-Modified: Tue, 06 Nov 2012 06:55:28 GMT
X-AspNetMvc-Version: 3.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Content-Encoding: gzip
GET /favicon.ico HTTP/1.1

Host: www.ladygaga.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.ladygaga.com/bornthiswayball/
Cookie: VisitorTracking=a=b0fa0d63-04f9-4c0b-ae2c-d5e32dbb279f&amp;b=11%2f6%2f2012+1%3a54%3a09+AM; backplane-channel=umg:dc47fff8401cb07fee510308cab434ec; __utma=70702477.1321529981.1352184853.1352184853.1352184853.1; __utmb=70702477.3.10.1352184853; __utmc=70702477; __utmz=70702477.1352184853.1.1.utmcsr=travelocker.com|utmccn=(referral)|utmcmd=referral|utmcct=/component/content/article/58-pick-a-trip.html
HTTP/1.1 200 OK

Content-Type: image/x-icon
Last-Modified: Tue, 31 May 2011 04:21:44 GMT
Accept-Ranges: bytes
Etag: &quot;f1b6e13f4a1fcc1:0&quot;
Server: Microsoft-IIS/7.0
X-Powered-By: ASP.NET
Content-Length: 894
Date: Tue, 06 Nov 2012 06:54:19 GMT
Connection: keep-alive
GET /connect/xd_arbiter.php?version=14 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Content-Encoding: gzip
X-FB-Debug: V+o3OvvQWer2YWWTQGU7+nYExHHaRdIv6j/aLiKljHc=
Content-Length: 9716
Vary: Accept-Encoding
Cache-Control: public, max-age=31459626
Expires: Tue, 05 Nov 2013 09:41:25 GMT
Date: Tue, 06 Nov 2012 06:54:19 GMT
Connection: keep-alive
GET /js/tfw/widget/hubclient.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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/javascript; charset=utf-8
Last-Modified: Fri, 02 Nov 2012 09:35:33 GMT
Etag: &quot;1411999884f419ea8219bf9b531a9c66&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3260
Date: Tue, 06 Nov 2012 06:54:19 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 /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&thinRegistration=true HTTP/1.1

Host: reg.sso.universalmusic.com
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&amp;clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&amp;bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&amp;thinRegistration=true 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Server: nginx
Date: Tue, 06 Nov 2012 06:54:20 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=60
Vary: Accept-Encoding, *
Cache-Control: public, max-age=9
Expires: Tue, 06 Nov 2012 06:55:58 GMT
Last-Modified: Tue, 06 Nov 2012 06:55:28 GMT
X-AspNetMvc-Version: 3.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Content-Encoding: gzip
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&thinRegistration=true HTTP/1.1

Host: reg.sso.universalmusic.com
GET /scripts/capture.js?host=http%3A%2F%2Fwww.ladygaga.com&amp;clientId=9etp92vwb5b6rkyhc3zana8fk54k7nqv&amp;bundle=CrOlwx%2bTAhN6Ip%2bS8MfO7Ie0MMj45MGKonhiugcGfE5EZo7lvSJluZ7ikFzyd3IqM9omoWorzggEpY71dRjW9PnoTTMmZsBijX%2f%2fxpu%2bGdOH%2b8v6y84EwdY2F%2frzLHBzsPqCwyU15%2b24VylPYeWYj%2b%2fohSMT9BeTif7RpjRhN%2fTUDKOjSin%2bMc80hjSFtEQoPGp4eDG75BI2xduY52%2fXbTq%2buT0Z4RHpBcqsJWnfPo%2bS1Xu1u2NovCR5VffczODO&amp;thinRegistration=true 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=utf-8
Server: nginx
Date: Tue, 06 Nov 2012 06:54:20 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=60
Vary: Accept-Encoding, *
Cache-Control: public, max-age=8
Expires: Tue, 06 Nov 2012 06:55:58 GMT
Last-Modified: Tue, 06 Nov 2012 06:55:28 GMT
X-AspNetMvc-Version: 3.0
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Content-Encoding: gzip
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: Tue, 06 Nov 2012 00:37:37 GMT
Expires: Tue, 13 Nov 2012 00:37:37 GMT
Content-Transfer-Encoding: binary
Content-Length: 1814
Cache-Control: max-age=582196, public, no-transform, must-revalidate
Date: Tue, 06 Nov 2012 06:54:21 GMT
nncoection: close
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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Thu, 13 Sep 2012 21:47:55 GMT
Date: Thu, 01 Nov 2012 01:21:37 GMT
Expires: Fri, 01 Nov 2013 01:21:37 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 21399
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 451963
GET /dialog/oauth?client_id=34617625687&response_type=token%2Csigned_request%2Ccode&display=none&domain=www.ladygaga.com&origin=1&redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D14%23cb%3Df167b6b1b28a36c%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff3d9e2222875b22%26domain%3Dwww.ladygaga.com%26relation%3Dparent&sdk=joey HTTP/1.1

Host: www.facebook.com
GET /dialog/oauth?client_id=34617625687&amp;response_type=token%2Csigned_request%2Ccode&amp;display=none&amp;domain=www.ladygaga.com&amp;origin=1&amp;redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D14%23cb%3Df167b6b1b28a36c%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff3d9e2222875b22%26domain%3Dwww.ladygaga.com%26relation%3Dparent&amp;sdk=joey 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://www.ladygaga.com/bornthiswayball/
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: Un8Pi4SHL9YsMu8vdjOBT+EJeob7zA9ujmeWlSGPM2g=
Date: Tue, 06 Nov 2012 06:54:22 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /widgets/hub.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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=1800
Last-Modified: Fri, 02 Nov 2012 09:48:13 GMT
Etag: &quot;b036a791811effc968bfcb43fa6d6910&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 7242
Date: Tue, 06 Nov 2012 06:54:22 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 /dialog/oauth?client_id=34617625687&response_type=token%2Csigned_request%2Ccode&display=none&domain=www.ladygaga.com&origin=1&redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D14%23cb%3Df2bc6987f2164f4%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff2db56c6a4c52f8%26domain%3Dwww.ladygaga.com%26relation%3Dparent&sdk=joey HTTP/1.1

Host: www.facebook.com
GET /dialog/oauth?client_id=34617625687&amp;response_type=token%2Csigned_request%2Ccode&amp;display=none&amp;domain=www.ladygaga.com&amp;origin=1&amp;redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D14%23cb%3Df2bc6987f2164f4%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff2db56c6a4c52f8%26domain%3Dwww.ladygaga.com%26relation%3Dparent&amp;sdk=joey 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://www.ladygaga.com/bornthiswayball/
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: qQ3Q/FZ5FoXKLW668BFVXmvu9DFDFpAgFNpDhKykMGA=
Date: Tue, 06 Nov 2012 06:54:22 GMT
Transfer-Encoding: chunked
Connection: keep-alive
POST / HTTP/1.1

Host: ocsp.usertrust.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.1 200 OK

Content-Type: application/ocsp-response
Date: Tue, 06 Nov 2012 06:54:24 GMT
Server: Apache
Last-Modified: Tue, 06 Nov 2012 06:36:11 GMT
Expires: Sat, 10 Nov 2012 06:36:11 GMT
Etag: 4E3F00C75DFA79F2797CEE22BD39C5A9CBC0804A
Cache-Control: max-age=343906,public,no-transform,must-revalidate
X-OCSP-Reponder-ID: h6edcaocsp8
Content-Length: 471
Connection: close
POST / HTTP/1.1

Host: ocsp.entrust.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
Content-Length: 103
Content-Type: application/ocsp-request
HTTP/1.0 200 OK

Content-Type: application/ocsp-response
Content-Transfer-Encoding: Binary
Content-Length: 1938
Connection: Close
GET /widgets/hub.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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=1800
Last-Modified: Fri, 02 Nov 2012 09:48:13 GMT
Etag: &quot;b036a791811effc968bfcb43fa6d6910&quot;
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Date: Tue, 06 Nov 2012 06:54:25 GMT
Content-Length: 7242
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 /5/c=938/rand=356145697/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.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.ladygaga.com/bornthiswayball/
HTTP/1.1 302 Found

Content-Type: text/plain; charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:26 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.85
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Location: http://bcp.crwdcntrl.net/5/ct=y/c=938/rand=356145697/pv=y/rt=ifr
Set-Cookie: cc=ctst;Path=/;Domain=.crwdcntrl.net
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 20
GET /5/c=938/rand=567111361/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.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.ladygaga.com/bornthiswayball/
HTTP/1.1 302 Found

Content-Type: text/plain; charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:26 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.11.97
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Location: http://bcp.crwdcntrl.net/5/ct=y/c=938/rand=567111361/pv=y/rt=ifr
Set-Cookie: cc=ctst;Path=/;Domain=.crwdcntrl.net
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 20
GET /translate_static/js/element/hrs.swf HTTP/1.1

Host: translate.googleapis.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.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Last-Modified: Mon, 02 Apr 2012 00:13:23 GMT
Date: Tue, 06 Nov 2012 06:44:26 GMT
Expires: Tue, 06 Nov 2012 07:44:26 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 4689
X-XSS-Protection: 1; mode=block
Age: 600
Cache-Control: public, max-age=3600
GET /5/ct=y/c=938/rand=356145697/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.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.ladygaga.com/bornthiswayball/
Cookie: cc=ctst
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:26 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.84
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: dc=1;Path=/;Domain=.crwdcntrl.net aud=&quot;ABR4nGNgYGAImLFFiYGB0epK%2FbIbDBwMDF6rGEDA9SCEOgamLBsgvDlgSrEawlsJoRgbGBoABDQMQg%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Sat, 03-Aug-2013 06:54:26 GMT;Max-Age=23328000 OAID=33a9799011c361f282ad7591ec7aefb4;Path=/;Domain=.crwdcntrl.net;Expires=Sat, 03-Aug-2013 06:54:26 GMT cc=&quot;ACN4nGNQMDZOtDS3tDQwNEw2NjNMM7IwSkwxN7U0TE02T0xNSzJhAIKAGVuUGMCA0epK%2FbIbYKZw7zQnJga2HAaG%2F4yMDMyrgDQDIxAyMAr8rINJMEAlGMASzcqS2CV6Z83EblSDoDIOo6SMcBi1YRsuHXnYJQS%2BHcIh8TMah1E%2FdXBYfroXuz%2Baf%2Brh0LFJFZeEGi7LTbFLpPjOw6GDpwmHBNtX7BIMfNwJuzB9wp2wE1Nwoo4ClMMI4ixD5hQic7YgOMpcbzAN4nxyG1OwXfAwpmDBonOYgk7%2FFmEKytSpYwryVQlis%2Bg1piAAhZ2b6A%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Sat, 03-Aug-2013 06:54:26 GMT;Max-Age=23328000
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 342
GET /5/ct=y/c=938/rand=567111361/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.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.ladygaga.com/bornthiswayball/
Cookie: cc=ctst
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:26 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.85
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: dc=1;Path=/;Domain=.crwdcntrl.net aud=&quot;ABR4nGNgYGAImLFFiYGB0epK%2FbJ7DBwMDF6rGEDA9SCEOgamLBsgvDkQaiWYUqyG8BgbGBoAB9QMSA%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Sat, 03-Aug-2013 06:54:26 GMT;Max-Age=23328000 OAID=33a9799011c361f282ad7591ec7aefb4;Path=/;Domain=.crwdcntrl.net;Expires=Sat, 03-Aug-2013 06:54:26 GMT cc=&quot;ACN4nGNQMDZOtDS3tDQwNEw2NjNMM7IwSkwxN7U0TE02T0xNSzJhAIKAGVuUGMCA0epK%2FbJ7YKZws7IkEwNbDgPDf0YGBuZVQBqkgIGBSeBnHXaJ3mlOMAlGqAQjRGLWTOwSDYLK2I1qljLCYceGbbh05OFw7rdDuPwRjcOonzo4LD%2Fdi90fzT%2F1cOjYpIpLQg2X5abYJVJ85%2BHQwdOEQ4LtK3YJBj7uhF2YPuFO2IkpOFFHAcphBHGWIXMKkTlbEBxlrjeYBnE%2BuY0p2C54GFOwYNE5TEGnf4swBWXq1DEF%2BaoEsVn0GlMQAJqnnAE%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Sat, 03-Aug-2013 06:54:26 GMT;Max-Age=23328000
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 258
GET /images/icons/product/translate-32.png HTTP/1.1

Host: www.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: 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.ladygaga.com/bornthiswayball/
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: image/png
Last-Modified: Mon, 02 Apr 2012 02:13:37 GMT
Date: Tue, 06 Nov 2012 06:54:26 GMT
Expires: Tue, 06 Nov 2012 06:54:26 GMT
Cache-Control: private, max-age=31536000
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 1464
X-XSS-Protection: 1; mode=block
GET /px?Yz0xNjQ0JnB4aWQ9MjY5MTgsMjY4NDQsMjY5MjgsMjY4NzA%3D HTTP/1.1

Host: bcp.crwdcntrl.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://bcp.crwdcntrl.net/5/ct=y/c=938/rand=356145697/pv=y/rt=ifr
Cookie: cc=&quot;ACN4nGNQMDZOtDS3tDQwNEw2NjNMM7IwSkwxN7U0TE02T0xNSzJhAIKAGVuUGMCA0epK%2FbIbYKZw7zQnJga2HAaG%2F4yMDMyrgDQDIxAyMAr8rINJMEAlGMASzcqS2CV6Z83EblSDoDIOo6SMcBi1YRsuHXnYJQS%2BHcIh8TMah1E%2FdXBYfroXuz%2Baf%2Brh0LFJFZeEGi7LTbFLpPjOw6GDpwmHBNtX7BIMfNwJuzB9wp2wE1Nwoo4ClMMI4ixD5hQic7YgOMpcbzAN4nxyG1OwXfAwpmDBonOYgk7%2FFmEKytSpYwryVQlis%2Bg1piAAhZ2b6A%3D%3D&quot;; dc=1; aud=&quot;ABR4nGNgYGAImLFFiYGB0epK%2FbIbDBwMDF6rGEDA9SCEOgamLBsgvDlgSrEawlsJoRgbGBoABDQMQg%3D%3D&quot;; OAID=33a9799011c361f282ad7591ec7aefb4
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:30 GMT
Cache-Control: no-cache
Expires: 0
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.85
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 247
GET /translate_a/l?client=te&alpha=true&hl=en&cb=_callbacks_._0h96nyiyn HTTP/1.1

Host: translate.googleapis.com
GET /translate_a/l?client=te&amp;alpha=true&amp;hl=en&amp;cb=_callbacks_._0h96nyiyn 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:29 GMT
Expires: Tue, 06 Nov 2012 06:54:29 GMT
Cache-Control: private, max-age=86400
Content-Language: en
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: HTTP server (unknown)
Content-Length: 652
X-XSS-Protection: 1; mode=block
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, 03 Oct 2012 19:48:11 GMT
Etag: &quot;289dff-26c-4cb2ceb2654c0&quot;
Accept-Ranges: bytes
Content-Length: 620
Date: Tue, 06 Nov 2012 06:54:29 GMT
Connection: keep-alive
GET /dialog/oauth?client_id=34617625687&response_type=token%2Csigned_request%2Ccode&display=none&domain=www.ladygaga.com&origin=1&redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D14%23cb%3Df1f029d82e2c3cc%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff1fe0b0016f5c86%26domain%3Dwww.ladygaga.com%26relation%3Dparent&sdk=joey HTTP/1.1

Host: www.facebook.com
GET /dialog/oauth?client_id=34617625687&amp;response_type=token%2Csigned_request%2Ccode&amp;display=none&amp;domain=www.ladygaga.com&amp;origin=1&amp;redirect_uri=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter.php%3Fversion%3D14%23cb%3Df1f029d82e2c3cc%26origin%3Dhttp%253A%252F%252Fwww.ladygaga.com%252Ff1fe0b0016f5c86%26domain%3Dwww.ladygaga.com%26relation%3Dparent&amp;sdk=joey 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://www.ladygaga.com/bornthiswayball/
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: ijBaSQaCuhKa17mxWzSsCfWYjcaNU6zz9inWU/bPDn4=
Date: Tue, 06 Nov 2012 06:54:29 GMT
Transfer-Encoding: chunked
Connection: keep-alive
GET /seg?add=412049&t=1 HTTP/1.1

Host: ib.adnxs.com
GET /seg?add=412049&amp;t=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://bcp.crwdcntrl.net/px?Yz0xNjQ0JnB4aWQ9MjY5MTgsMjY4NDQsMjY5MjgsMjY4NzA%3D
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=Mon, 04-Feb-2013 06:54:30 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Wed, 07-Nov-2012 06:54:30 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu98Ep.IaK'/=_3pfW/AstWS0R!o)Bfx+Q7WRpKt1Z)_JY]S; path=/; expires=Mon, 04-Feb-2013 06:54:30 GMT; domain=.adnxs.com; HttpOnly
Date: Tue, 06 Nov 2012 06:54:30 GMT
Content-Length: 217
GET /seg?add=412001&t=1 HTTP/1.1

Host: ib.adnxs.com
GET /seg?add=412001&amp;t=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://bcp.crwdcntrl.net/px?Yz0xNjQ0JnB4aWQ9MjY5MTgsMjY4NDQsMjY5MjgsMjY4NzA%3D
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=Mon, 04-Feb-2013 06:54:30 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Wed, 07-Nov-2012 06:54:30 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu98Ep.IaK'/=_3pfW/AstWS0R!o)Bfx+9w/dJ7L)iR^M^@v; path=/; expires=Mon, 04-Feb-2013 06:54:30 GMT; domain=.adnxs.com; HttpOnly
Date: Tue, 06 Nov 2012 06:54:30 GMT
Content-Length: 217
GET /seg?add=412118&t=1 HTTP/1.1

Host: ib.adnxs.com
GET /seg?add=412118&amp;t=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://bcp.crwdcntrl.net/px?Yz0xNjQ0JnB4aWQ9MjY5MTgsMjY4NDQsMjY5MjgsMjY4NzA%3D
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=Mon, 04-Feb-2013 06:54:30 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Wed, 07-Nov-2012 06:54:30 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG5EfCxrx)0s]#%2L_'x%SEV/hnKD(Um`lD$aWqNdWhK:b-Z]D; path=/; expires=Mon, 04-Feb-2013 06:54:30 GMT; domain=.adnxs.com; HttpOnly
Date: Tue, 06 Nov 2012 06:54:30 GMT
Content-Length: 0
GET /seg?add=412023&t=1 HTTP/1.1

Host: ib.adnxs.com
GET /seg?add=412023&amp;t=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://bcp.crwdcntrl.net/px?Yz0xNjQ0JnB4aWQ9MjY5MTgsMjY4NDQsMjY5MjgsMjY4NzA%3D
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=Mon, 04-Feb-2013 06:54:30 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Wed, 07-Nov-2012 06:54:30 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu98Ep.IaK'/=_3pfW/AstWS0R!o)Bfx+IdjXy7L)iR^t77B; path=/; expires=Mon, 04-Feb-2013 06:54:30 GMT; domain=.adnxs.com; HttpOnly
Date: Tue, 06 Nov 2012 06:54:30 GMT
Content-Length: 217
GET /5/c=938/rand=812290258/pv=y/rt=ifr HTTP/1.1

Host: bcp.crwdcntrl.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.ladygaga.com/bornthiswayball/
Cookie: cc=&quot;ACN4nGNQMDZOtDS3tDQwNEw2NjNMM7IwSkwxN7U0TE02T0xNSzJhAIKAGVuUGMCA0epK%2FbJ7YKZws7IkEwNbDgPDf0YGBuZVQBqkgIGBSeBnHXaJ3mlOMAlGqAQjRGLWTOwSDYLK2I1qljLCYceGbbh05OFw7rdDuPwRjcOonzo4LD%2Fdi90fzT%2F1cOjYpIpLQg2X5abYJVJ85%2BHQwdOEQ4LtK3YJBj7uhF2YPuFO2IkpOFFHAcphBHGWIXMKkTlbEBxlrjeYBnE%2BuY0p2C54GFOwYNE5TEGnf4swBWXq1DEF%2BaoEsVn0GlMQAJqnnAE%3D&quot;; dc=1; aud=&quot;ABR4nGNgYGAImLFFiYGB0epK%2FbJ7DBwMDF6rGEDA9SCEOgamLBsgvDkQaiWYUqyG8BgbGBoAB9QMSA%3D%3D&quot;; OAID=33a9799011c361f282ad7591ec7aefb4
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:30 GMT
Cache-Control: no-cache
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.11.97
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: aud=&quot;ABR4nGNgYGAImLFFjYGB0epK%2FdYDDBwMDF6rGEDA9SCEOgamLBsgvDlgSrEawlsJoRgbGBoAAzwMPQ%3D%3D&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Sat, 03-Aug-2013 06:54:30 GMT;Max-Age=23328000 OAID=33a9799011c361f282ad7591ec7aefb4;Path=/;Domain=.crwdcntrl.net;Expires=Sat, 03-Aug-2013 06:54:30 GMT cc=&quot;ACN4nGNQMDZOtDS3tDQwNEw2NjNMM7IwSkwxN7U0TE02T0xNSzJhAIKAGVvU%2Fv%2F%2F%2F4eBgdHqSv3WAyAxBuHeaU5MDGw5DAz%2FGRkZmFcBaQZGIGRgFvhZB5NggEowgCWalSWxS%2FTOmondqAZBZRxGSRnhMGrDNlw68rBLCHw7hEPiZzQOo37q4LD8dC92fzT%2F1MOhY5MqLgk1XJabYpdI8Z2HQwdPEw4Jtq%2FYJRj4uBN2YfqEO2EnpuBEHQUohxHEWYbMKUTmbEFwlLneYBrE%2BeQ2pmC74GFMwYJF5zAFnf4twhSUqVPHFOSrEsRm0WtMQQB6FqAC&quot;;Version=1;Path=/;Domain=.crwdcntrl.net;Expires=Sat, 03-Aug-2013 06:54:30 GMT;Max-Age=23328000
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 261
GET /iaction/adoapn_AppNexusDemoActionTag_1 HTTP/1.1

Host: view.atdmt.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://bcp.crwdcntrl.net/px?Yz0xNjQ0JnB4aWQ9MjY5MTgsMjY4NDQsMjY5MjgsMjY4NzA%3D
Cookie: AA002=1350344862-22301988; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: text/html
Cache-Control: no-store
Content-Encoding: gzip
Expires: 0
Vary: Accept-Encoding
Date: Tue, 06 Nov 2012 06:54:29 GMT
Connection: close
Content-Length: 381
GET /templates/travel/images/component%20aa2%20on.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3; __utma=135924276.100529112.1352184847.1352184847.1352184847.1; __utmb=135924276.1.10.1352184847; __utmc=135924276; __utmz=135924276.1352184847.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 06:54:30 GMT
Server: Apache
Accept-Ranges: bytes
Content-Length: 1546
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /templates/travel/images/component%20aa4%20on.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3; __utma=135924276.100529112.1352184847.1352184847.1352184847.1; __utmb=135924276.1.10.1352184847; __utmc=135924276; __utmz=135924276.1352184847.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 06:54:30 GMT
Server: Apache
Accept-Ranges: bytes
Content-Length: 1546
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /templates/travel/images/component%20aa6%20on.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3; __utma=135924276.100529112.1352184847.1352184847.1352184847.1; __utmb=135924276.1.10.1352184847; __utmc=135924276; __utmz=135924276.1352184847.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 06:54:30 GMT
Server: Apache
Accept-Ranges: bytes
Content-Length: 1546
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /templates/travel/images/component%20f2%20on.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3; __utma=135924276.100529112.1352184847.1352184847.1352184847.1; __utmb=135924276.1.10.1352184847; __utmc=135924276; __utmz=135924276.1352184847.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 06:54:30 GMT
Server: Apache
Accept-Ranges: bytes
Content-Length: 1546
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /Portals/0/pix/component%20e2%20on.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3; __utma=135924276.100529112.1352184847.1352184847.1352184847.1; __utmb=135924276.1.10.1352184847; __utmc=135924276; __utmz=135924276.1352184847.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 06:54:30 GMT
Server: Apache
Accept-Ranges: bytes
Content-Length: 1546
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /templates/travel/images/component%20f4%20on.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3; __utma=135924276.100529112.1352184847.1352184847.1352184847.1; __utmb=135924276.1.10.1352184847; __utmc=135924276; __utmz=135924276.1352184847.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 06:54:30 GMT
Server: Apache
Accept-Ranges: bytes
Content-Length: 1546
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
GET /getuid?http%3A%2F%2Fbcp.crwdcntrl.net%2Fmap%2Fc=281%2Frand=738479895%2Ftpid%3D%24UID%2Ftp%3DANXS 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://bcp.crwdcntrl.net/5/c=938/rand=812290258/pv=y/rt=ifr
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu98Ep.IaK'/=_3pfW/AstWS0R!o)Bfx+IdjXy7L)iR^t77B; sess=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=Mon, 04-Feb-2013 06:54:30 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Wed, 07-Nov-2012 06:54:30 GMT; domain=.adnxs.com; HttpOnly
Location: http://bcp.crwdcntrl.net/map/c=281/rand=738479895/tpid=5858721859426781856/tp=ANXS
Date: Tue, 06 Nov 2012 06:54:30 GMT
Content-Length: 0
GET /pxj?bidder=55&action=SetAdMarketCookies(%22AA002%3d1350344862-22301988%7cMUID%3d28a467a70f8d6b9c1f16645d0c8d6bfa%7cTOptOut%3d0%7cEANON%3dA%253d0%2526E%253dFFF%2526W%253d1%22); HTTP/1.1

Host: ib.adnxs.com
GET /pxj?bidder=55&amp;action=SetAdMarketCookies(%22AA002%3d1350344862-22301988%7cMUID%3d28a467a70f8d6b9c1f16645d0c8d6bfa%7cTOptOut%3d0%7cEANON%3dA%253d0%2526E%253dFFF%2526W%253d1%22); 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://view.atdmt.com/iaction/adoapn_AppNexusDemoActionTag_1
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu98Ep.IaK'/=_3pfW/AstWS0R!o)Bfx+IdjXy7L)iR^t77B; sess=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=Mon, 04-Feb-2013 06:54:30 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Wed, 07-Nov-2012 06:54:30 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu98Ep.IaK'/=_3pfW/AstWS0R!o)Bfx+IdjXy7L)iR^t77B; path=/; expires=Mon, 04-Feb-2013 06:54:30 GMT; domain=.adnxs.com; HttpOnly
Content-Length: 43
Date: Tue, 06 Nov 2012 06:54:30 GMT
GET /images/pixel.gif HTTP/1.1

Host: spe.atdmt.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://view.atdmt.com/iaction/adoapn_AppNexusDemoActionTag_1
Cookie: AA002=1350344862-22301988; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: image/gif
Content-Length: 42
Allow: GET
Expires: Mon, 12 Nov 2012 19:09:54 GMT
Date: Tue, 06 Nov 2012 06:54:30 GMT
Connection: keep-alive
GET /translate_a/l?client=te&alpha=true&hl=en&cb=_callbacks_._0h96nyjuf HTTP/1.1

Host: translate.googleapis.com
GET /translate_a/l?client=te&amp;alpha=true&amp;hl=en&amp;cb=_callbacks_._0h96nyjuf 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:31 GMT
Expires: Tue, 06 Nov 2012 06:54:31 GMT
Cache-Control: private, max-age=86400
Content-Language: en
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: HTTP server (unknown)
Content-Length: 651
X-XSS-Protection: 1; mode=block
GET /iaction/adoapn_AppNexusDemoActionTag_1 HTTP/1.1

Host: view.atdmt.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://bcp.crwdcntrl.net/px?Yz0xNjQ0JnB4aWQ9MjY5MTgsMjY4NDQsMjY5MjgsMjY4NzA%3D
Cookie: AA002=1350344862-22301988; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: text/html
Cache-Control: no-store
Content-Encoding: gzip
Expires: 0
Vary: Accept-Encoding
Date: Tue, 06 Nov 2012 06:54:30 GMT
Connection: close
Content-Length: 381
GET /map/c=281/rand=738479895/tpid=5858721859426781856/tp=ANXS HTTP/1.1

Host: bcp.crwdcntrl.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://bcp.crwdcntrl.net/5/c=938/rand=812290258/pv=y/rt=ifr
Cookie: cc=&quot;ACN4nGNQMDZOtDS3tDQwNEw2NjNMM7IwSkwxN7U0TE02T0xNSzJhAIKAGVvU%2Fv%2F%2F%2F4eBgdHqSv3WAyAxBuHeaU5MDGw5DAz%2FGRkZmFcBaQZGIGRgFvhZB5NggEowgCWalSWxS%2FTOmondqAZBZRxGSRnhMGrDNlw68rBLCHw7hEPiZzQOo37q4LD8dC92fzT%2F1MOhY5MqLgk1XJabYpdI8Z2HQwdPEw4Jtq%2FYJRj4uBN2YfqEO2EnpuBEHQUohxHEWYbMKUTmbEFwlLneYBrE%2BeQ2pmC74GFMwYJF5zAFnf4twhSUqVPHFOSrEsRm0WtMQQB6FqAC&quot;; dc=1; aud=&quot;ABR4nGNgYGAImLFFjYGB0epK%2FdYDDBwMDF6rGEDA9SCEOgamLBsgvDlgSrEawlsJoRgbGBoAAzwMPQ%3D%3D&quot;; OAID=33a9799011c361f282ad7591ec7aefb4
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 06:54:31 GMT
Cache-Control: no-cache
Expires: 0
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.120
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 65
GET /translate_a/l?client=te&alpha=true&hl=en&cb=_callbacks_._0h96nyiw9 HTTP/1.1

Host: translate.googleapis.com
GET /translate_a/l?client=te&amp;alpha=true&amp;hl=en&amp;cb=_callbacks_._0h96nyiw9 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://www.ladygaga.com/bornthiswayball/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Date: Tue, 06 Nov 2012 06:54:31 GMT
Expires: Tue, 06 Nov 2012 06:54:31 GMT
Cache-Control: private, max-age=86400
Content-Language: en
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: HTTP server (unknown)
Content-Length: 652
X-XSS-Protection: 1; mode=block
GET /getuid?http%3A%2F%2Fbcp.crwdcntrl.net%2Fmap%2Fc=281%2Frand=189320871%2Ftpid%3D%24UID%2Ftp%3DANXS 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://bcp.crwdcntrl.net/5/ct=y/c=938/rand=356145697/pv=y/rt=ifr
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=Mon, 04-Feb-2013 06:54:32 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Wed, 07-Nov-2012 06:54:32 GMT; domain=.adnxs.com; HttpOnly
Location: http://bcp.crwdcntrl.net/map/c=281/rand=189320871/tpid=5858721859426781856/tp=ANXS
Date: Tue, 06 Nov 2012 06:54:32 GMT
Content-Length: 0
GET /getuid?http%3A%2F%2Fbcp.crwdcntrl.net%2Fmap%2Fc=281%2Frand=454841421%2Ftpid%3D%24UID%2Ftp%3DANXS 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://bcp.crwdcntrl.net/5/ct=y/c=938/rand=567111361/pv=y/rt=ifr
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=Mon, 04-Feb-2013 06:54:32 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Wed, 07-Nov-2012 06:54:32 GMT; domain=.adnxs.com; HttpOnly
Location: http://bcp.crwdcntrl.net/map/c=281/rand=454841421/tpid=5858721859426781856/tp=ANXS
Date: Tue, 06 Nov 2012 06:54:32 GMT
Content-Length: 0
GET /map/c=281/rand=189320871/tpid=5858721859426781856/tp=ANXS HTTP/1.1

Host: bcp.crwdcntrl.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://bcp.crwdcntrl.net/5/ct=y/c=938/rand=356145697/pv=y/rt=ifr
Cookie: cc=&quot;ACN4nGNQMDZOtDS3tDQwNEw2NjNMM7IwSkwxN7U0TE02T0xNSzJhAIKAGVvU%2Fv%2F%2F%2F4eBgdHqSv3WAyAxBuHeaU5MDGw5DAz%2FGRkZmFcBaQZGIGRgFvhZB5NggEowgCWalSWxS%2FTOmondqAZBZRxGSRnhMGrDNlw68rBLCHw7hEPiZzQOo37q4LD8dC92fzT%2F1MOhY5MqLgk1XJabYpdI8Z2HQwdPEw4Jtq%2FYJRj4uBN2YfqEO2EnpuBEHQUohxHEWYbMKUTmbEFwlLneYBrE%2BeQ2pmC74GFMwYJF5zAFnf4twhSUqVPHFOSrEsRm0WtMQQB6FqAC&quot;; dc=1; aud=&quot;ABR4nGNgYGAImLFFjYGB0epK%2FdYDDBwMDF6rGEDA9SCEOgamLBsgvDlgSrEawlsJoRgbGBoAAzwMPQ%3D%3D&quot;; OAID=33a9799011c361f282ad7591ec7aefb4
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 06:54:33 GMT
Cache-Control: no-cache
Expires: 0
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.85
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 65
GET /map/c=281/rand=454841421/tpid=5858721859426781856/tp=ANXS HTTP/1.1

Host: bcp.crwdcntrl.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://bcp.crwdcntrl.net/5/ct=y/c=938/rand=567111361/pv=y/rt=ifr
Cookie: cc=&quot;ACN4nGNQMDZOtDS3tDQwNEw2NjNMM7IwSkwxN7U0TE02T0xNSzJhAIKAGVvU%2Fv%2F%2F%2F4eBgdHqSv3WAyAxBuHeaU5MDGw5DAz%2FGRkZmFcBaQZGIGRgFvhZB5NggEowgCWalSWxS%2FTOmondqAZBZRxGSRnhMGrDNlw68rBLCHw7hEPiZzQOo37q4LD8dC92fzT%2F1MOhY5MqLgk1XJabYpdI8Z2HQwdPEw4Jtq%2FYJRj4uBN2YfqEO2EnpuBEHQUohxHEWYbMKUTmbEFwlLneYBrE%2BeQ2pmC74GFMwYJF5zAFnf4twhSUqVPHFOSrEsRm0WtMQQB6FqAC&quot;; dc=1; aud=&quot;ABR4nGNgYGAImLFFjYGB0epK%2FdYDDBwMDF6rGEDA9SCEOgamLBsgvDlgSrEawlsJoRgbGBoAAzwMPQ%3D%3D&quot;; OAID=33a9799011c361f282ad7591ec7aefb4
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Tue, 06 Nov 2012 06:54:33 GMT
Cache-Control: no-cache
Expires: 0
Pragma: no-cache
P3P: CP=NOI DSP COR NID PSAa PSDa OUR UNI COM NAV
X-Server: 172.25.10.85
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 65
GET /templates/travel/images/componentf8on.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3; __utma=135924276.100529112.1352184847.1352184847.1352184847.1; __utmb=135924276.1.10.1352184847; __utmc=135924276; __utmz=135924276.1352184847.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 06:54:33 GMT
Server: Apache
Accept-Ranges: bytes
Content-Length: 1546
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /pxj?bidder=55&action=SetAdMarketCookies(%22AA002%3d1350344862-22301988%7cMUID%3d28a467a70f8d6b9c1f16645d0c8d6bfa%7cTOptOut%3d0%7cEANON%3dA%253d0%2526E%253dFFF%2526W%253d1%22); HTTP/1.1

Host: ib.adnxs.com
GET /pxj?bidder=55&amp;action=SetAdMarketCookies(%22AA002%3d1350344862-22301988%7cMUID%3d28a467a70f8d6b9c1f16645d0c8d6bfa%7cTOptOut%3d0%7cEANON%3dA%253d0%2526E%253dFFF%2526W%253d1%22); 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://view.atdmt.com/iaction/adoapn_AppNexusDemoActionTag_1
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu98Ep.IaK'/=_3pfW/AstWS0R!o)Bfx+IdjXy7L)iR^t77B; sess=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=Mon, 04-Feb-2013 06:54:33 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Wed, 07-Nov-2012 06:54:33 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu98Ep.IaK'/=_3pfW/AstWS0R!o)Bfx+IdjXy7L)iR^t77B; path=/; expires=Mon, 04-Feb-2013 06:54:33 GMT; domain=.adnxs.com; HttpOnly
Content-Length: 43
Date: Tue, 06 Nov 2012 06:54:33 GMT
GET /templates/travel/images/component%20f6%20on.jpg HTTP/1.1

Host: travelocker.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://travelocker.com/component/content/article/58-pick-a-trip.html
Cookie: ac962ce19744eecd16185236931b2bdf=tcpfvuosrlqbiharcfog6kojq3; __utma=135924276.100529112.1352184847.1352184847.1352184847.1; __utmb=135924276.1.10.1352184847; __utmc=135924276; __utmz=135924276.1352184847.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 404 Not Found

Content-Type: text/html
Date: Tue, 06 Nov 2012 06:54:33 GMT
Server: Apache
Accept-Ranges: bytes
Content-Length: 1546
Keep-Alive: timeout=15, max=99
Connection: Keep-Alive
GET /iaction/adoapn_AppNexusDemoActionTag_1 HTTP/1.1

Host: view.atdmt.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://bcp.crwdcntrl.net/px?Yz0xNjQ0JnB4aWQ9MjY5MTgsMjY4NDQsMjY5MjgsMjY4NzA%3D
Cookie: AA002=1350344862-22301988; MUID=28A467A70F8D6B9C1F16645D0C8D6BFA
HTTP/1.1 200 OK

Content-Type: text/html
Cache-Control: no-store
Content-Encoding: gzip
Expires: 0
Vary: Accept-Encoding
Date: Tue, 06 Nov 2012 06:54:34 GMT
Connection: close
Content-Length: 381
GET /pxj?bidder=55&action=SetAdMarketCookies(%22AA002%3d1350344862-22301988%7cMUID%3d28a467a70f8d6b9c1f16645d0c8d6bfa%7cTOptOut%3d0%7cEANON%3dA%253d0%2526E%253dFFF%2526W%253d1%22); HTTP/1.1

Host: ib.adnxs.com
GET /pxj?bidder=55&amp;action=SetAdMarketCookies(%22AA002%3d1350344862-22301988%7cMUID%3d28a467a70f8d6b9c1f16645d0c8d6bfa%7cTOptOut%3d0%7cEANON%3dA%253d0%2526E%253dFFF%2526W%253d1%22); 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://view.atdmt.com/iaction/adoapn_AppNexusDemoActionTag_1
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu98Ep.IaK'/=_3pfW/AstWS0R!o)Bfx+IdjXy7L)iR^t77B; sess=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=Mon, 04-Feb-2013 06:54:34 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Wed, 07-Nov-2012 06:54:34 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG3x=Cxrx)0s]#%2L_'x%SEV/hnKu98Ep.IaK'/=_3pfW/AstWS0R!o)Bfx+IdjXy7L)iR^t77B; path=/; expires=Mon, 04-Feb-2013 06:54:34 GMT; domain=.adnxs.com; HttpOnly
Content-Length: 43
Date: Tue, 06 Nov 2012 06:54:34 GMT