Overview

URLhttp://www.myitview.com/
IP173.201.36.87
ASNAS26496 GoDaddy.com, LLC
Location United States
Report completed2012-11-08 18:47:11 CET
StatusLoading report..
urlQuery Alerts No alerts detected


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 No alerts detected
Snort /w Sourcefire VRT
Timestamp Source IP Destination IP Severity Alert
2012-11-08 18:46:37 urlQuery Client 173.241.240.71MALWARE-CNC Win32.Delf outbound connection
2012-11-08 18:46:38 urlQuery Client 173.241.240.71MALWARE-CNC Win32.Delf outbound connection


Recent reports on same IP/ASN/Domain

Last 1 reports on IP: 173.201.36.87

Date Alerts / IDS URL IP
2012-10-27 12:14:590 / 6http://www.myitview.com/173.201.36.87

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

Date Alerts / IDS URL IP
2013-02-14 00:05:560 / 3http://mkvrpknidkurcrftiqsfjqdxbn.com/FfQLT1XVAoKqdj0xLjEmaWQ9MjgxOTE5ODQxMyZhaWQ9MzA0OTQmc2lkP (...)50.62.12.103
2013-02-13 23:56:270 / 4http://thepurpleexpress.com/184.168.221.62
2013-02-13 23:46:510 / 3http://mkvrpknidkurcrftiqsfjqdxbn.com/QgmaT5XRmEzgdj0xLjEmaWQ9ODg4NzkzMzg1JmFpZD0zMDQ5NCZzaWQ9M (...)50.62.12.103
2013-02-13 23:29:050 / 0http://205.178.145.65.com50.63.202.78
2013-02-13 23:19:531 / 0http://kp-consultants.com/sample-page173.201.1.1
2013-02-13 23:18:100 / 0http://184.168.232.1184.168.232.1

Last 1 reports on domain: www.myitview.com

Date Alerts / IDS URL IP
2012-10-27 12:14:590 / 6http://www.myitview.com/173.201.36.87



JavaScript

Executed Scripts (44)


Executed Evals (1)

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

Element.implement({
    'show': function() {
        return this.setStyle('display', '')
    },
    'hide': function() {
        return this.setStyle('display', 'none')
    }
});
String.implement({
    'sameDomain': function() {
        var a = /^(http|https):\/\/([a-z-.0-9]+)[\/]{0,1}/i.exec(window.location);
        var b = /^(http|https):\/\/([a-z-.0-9]+)[\/]{0,1}/i.exec(this);
        return a[2] === b[2]
    }
});
var RokBox = new Class({
    version: '2.0 - moo1.2',
    Implements: [new Options, new Events],
    options: {
        'className': 'rokbox',
        'theme': 'default',
        'transition': Fx.Transitions.Quad.easeOut,
        'duration': 200,
        'chase': 40,
        'effect': 'quicksilver',
        'captions': true,
        'captionsDelay': 800,
        'scrolling': false,
        'keyEvents': true,
        overlay: {
            'background': '#000',
            'opacity': 0.85,
            'zIndex': 65550,
            'duration': 200,
            'transition': Fx.Transitions.Quad.easeInOut
        },
        'frame-border': 0,
        'content-padding': 0,
        'arrows-height': 50,
        defaultSize: {
            'width': 640,
            'height': 460
        },
        'autoplay': 'true',
        'controller': 'false',
        'bgcolor': '#f3f3f3',
        'youtubeAutoplay': false,
        'vimeoColor': '00adef',
        'vimeoPortrait': false,
        'vimeoTitle': false,
        'vimeoFullScreen': true,
        'vimeoByline': false
    },
    initialize: function(f) {
        this.setOptions(f);
        var g = new RegExp("^" + this.options.className),
            cls = this.options.className,
            self = this;
        this.current = [];
        this.groups = new Hash({});
        this.changeGroup = false;
        this.swtch = false;
        this.elements = $$('a').filter(function(a) {
            var b = a.getProperty('rel'),
                group = false,
                len = false,
                module = false;
            var c = (b || '').test(g);
            if (c) {
                if (b) group = b.match(/\([a-z0-9A-Z]+\)/g) || false;
                if (b) module = b.match(/\[module\=(.+)+\]/) || false;
                if (module[1]) {
                    a.module = module[1]
                } else {
                    a.module = false
                };
                if (group[0]) {
                    group = group[0].replace("(", "").replace(")", "");
                    if (!this.groups.has(group)) this.groups.set(group, []);
                    var d = this.groups.get(group);
                    d.push(a);
                    len = d.length;
                    this.groups.set(group, d)
                };
                a.group = group;
                a.idx = len;
                a.addEvent('click', this.click.bindWithEvent(a, [a.title, a.href, a.rel, this]))
            };
            return c
        }.bind(this));
        var h = $merge(this.options.overlay, {
            'id': cls + '-overlay',
            'class': cls + '-overlay'
        });
        this.overlayObj = new Rokverlay(false, h).addEvent('onShow', function() {
            self.open(self.current)
        }).addEvent('onHide', function() {
            if (self.changeGroup) {
                self.changeGroup = false;
                var e = self.nextGroup[0],
                    selfLink = self.nextGroup[1],
                    list = self.nextGroup[2],
                    index = self.nextGroup[3],
                    what;
                if (selfLink.getProperty('id').test('next')) what = list[index];
                else what = list[index - 2];
                self.click.delay(100, self, [false, what.title, what.href, what.rel, self, what])
            }
        });
        this.overlay = this.overlayObj.overlay.addEvent('click', function() {
            self.swtch = false;
            self.close()
        });
        this.wrapper = new Element('div', {
            'id': cls + '-wrapper',
            'class': cls + '-' + this.options.theme
        }).inject(document.body).setStyles({
            'position': 'absolute',
            'zIndex': 65555,
            'opacity': 0
        }).hide();
        var i = new Element('div', {
            'id': cls + '-top',
            'class': cls + '-left'
        }).inject(this.wrapper);
        var j = new Element('div', {
            'class': cls + '-right'
        }).inject(i);
        var k = new Element('div', {
            'class': cls + '-center'
        }).inject(j);
        var l = new Element('div', {
            'id': cls + '-middle',
            'class': cls + '-left'
        }).inject(this.wrapper);
        var m = new Element('div', {
            'class': cls + '-right'
        }).inject(l);
        this.center = new Element('div', {
            'class': cls + '-center'
        }).inject(m);
        var n = new Element('div', {
            'id': cls + '-bottom',
            'class': cls + '-left'
        }).inject(this.wrapper);
        var o = new Element('div', {
            'class': cls + '-right'
        }).inject(n);
        var p = new Element('div', {
            'class': cls + '-center'
        }).inject(o);
        new Element('div', {
            'class': 'clr'
        }).inject(this.wrapper);
        this.closeButton = new Element('a', {
            'id': cls + '-close',
            'href': '#'
        }).set('html', '<span>[x] close</span>').inject(this.center);
        this.closeButton.addEvent('click', function(e) {
            new Event(e).stop();
            self.swtch = false;
            self.close(e)
        });
        this.fx = {
            'wrapper': new Fx.Morph(this.wrapper, {
                'duration': this.options.duration,
                wait: true,
                'transition': this.options.transition,
                onComplete: function() {
                    if (self.type == 'image') return;
                    if (!this.element.getStyle('opacity') && self.overlayObj.open) {
                        self.wrapper.hide();
                        if (!self.swtch) {
                            self.overlayObj.hide()
                        } else {
                            if (self.changeGroup) {
                                self.changeGroup = false;
                                var e = self.nextGroup[0],
                                    selfLink = self.nextGroup[1],
                                    list = self.nextGroup[2],
                                    index = self.nextGroup[3],
                                    what;
                                if (selfLink.getProperty('id').test('next')) what = list[index];
                                else what = list[index - 2];
                                self.click.delay(100, self, [false, what.title, what.href, what.rel, self, what])
                            }
                        }
                    } else {
                        self.loadVideo.delay(50, self)
                    }
                }
            }),
            'center': new Fx.Morph(this.center, {
                'duration': this.options.duration,
                wait: true,
                'transition': this.options.transition
            }),
            'height': new Fx.Tween(this.center, {
                'duration': this.options.duration,
                wait: true,
                'transition': this.options.transition
            })
        };
        window.addEvent('resize', function() {
            self.reposition(self.wrapper);
            self.overlayObj.reposition()
        });
        if (this.options.scrolling) window.addEvent('scroll', function() {
            self.reposition(self.wrapper)
        })
    },
    click: function(e, a, b, c, d, f) {
        if (e) new Event(e).stop();
        var g = '';
        var h = c.match(/([0-9]+\s?[0-9]+)/g) || [''];
        h = h[0].split(" ");
        var h = c.match(/([0-9%]+\s?[0-9%]+)/g) || [''];
        g = h[0].split(" ");
        h = h[0].split(" ");
        if (c.match(/fullscreen/g)) g = 'fullscreen';
        var i = d.overflow();
        if (!f) f = false;
        var j = this.group || f.group;
        var k = d.closeButton.getStyle('height').toInt() || d.closeButton.getSize().y || 0;
        var l = d.options['arrows-height'] || 0;
        h[0] = (h[0]) ? h[0] : '';
        h[1] = (h[1]) ? h[1] : '';
        if ((!h[0].contains("%") && !h[1].contains("%")) && !h[0].length || !h[1].length) {
            if (b.match(/youtube\.com\/watch/i)) {
                h[0] = 640;
                h[1] = 385
            } else if (b.match(/dailymotion\./i)) {
                h[0] = 420;
                h[1] = 339
            } else if (b.match(/metacafe\.com\/watch/i)) {
                h[0] = 400;
                h[1] = 345
            } else if (b.match(/google\.com\/videoplay/i)) {
                h[0] = 400;
                h[1] = 326
            } else if (b.match(/vimeo\.com\/[0-9]{1,}/i)) {
                h[0] = 400;
                h[1] = 225
            } else if (b.match(/\.(mov|qt|mpeg|divx|avi|xvid|mv4|m4v|wmv|wma|wax|wvx|asx|asf)$/i)) {
                h[0] = 504;
                h[1] = 336
            } else if (b.match(/\.(mp3|wav|m4a)$/i)) {
                h[0] = 320;
                h[1] = 45
            }
        };
        var m = window.getSize();
        if (h[0] > ((Browser.Engine.presto) ? window.innerWidth : m.x) || g == 'fullscreen') h[0] = ((Browser.Engine.presto) ? window.innerWidth : m.x) - d.overflow(true) - 20;
        if (h[1] > ((Browser.Engine.presto) ? window.innerHeight : m.y) || g == 'fullscreen') h[1] = ((Browser.Engine.presto) ? window.innerHeight : m.y) - d.overflow() - k - l - 20;
        if ($type(h[0]) != 'number' && $type(h[1]) != 'number') {
            if (h[0].contains("%") && h[1].contains("%")) {
                var n = (Browser.Engine.presto) ? window.innerWidth : m.x;
                var o = (Browser.Engine.presto) ? window.innerHeight : m.y;
                h[0] = h[0].replace("%", "").toInt();
                h[1] = h[1].replace("%", "").toInt();
                h[0] = h[0] > 100 ? 100 : h[0];
                h[1] = h[1] > 100 ? 100 : h[1];
                h[0] = n * h[0] / 100;
                h[1] = o * h[1] / 100;
                h[0] = h[0] - d.overflow(true) - 20;
                h[1] = h[1] - d.overflow() - k - l - 20
            }
        }
        c = {
            width: (h[0] || d.options.defaultSize.width).toInt(),
            height: (h[1] || d.options.defaultSize.height).toInt()
        };
        options2 = {
            width: (h[0] || d.options.defaultSize.width).toInt() + d.overflow(true),
            height: (h[1] || d.options.defaultSize.height).toInt() + d.overflow() + k
        };
        d.current = [this, a, b, c, j, this.idx || f.idx, options2, this.module];
        if (!d.swtch) d.overlayObj.toggle();
        else d.open(d.current)
    },
    overflow: function(a) {
        var b = (this.options['frame-border'] * 2) + (this.options['content-padding'] * 2);
        return b
    },
    open: function() {
        arguments = arguments[0];
        var b = arguments;
        var d = arguments[0],
            j = arguments[1],
            href = arguments[2],
            size = arguments[3],
            options = arguments[6],
            module = arguments[7],
            self = this;
        this.closeButton.setStyle('visibility', 'visible');
        var e = self.closeButton.getStyle('height').toInt() || self.closeButton.getSize().y || self.closeButton.currentStyle.height.toInt() || 0;
        var g = self.options['arrows-height'] || 0;
        this.wrapper.setStyles({
            'width': options.width,
            'height': options.height + g + e
        }).show();
        this.center.setStyles({
            'width': size.width,
            'height': size.height + e + g
        });
        if (self.options.captions && !this.caption) {
            var i = self.getCaption(j) || [false, false];
            var j = i[0],
                description = i[1];
            this.caption = new Element('div', {
                'id': this.options.className + '-caption'
            }).inject(this.center).setStyle('opacity', 0).adopt(j, description)
        };
        if (self.options.captions && this.caption) this.caption.hide().setStyle('height', 0);
        if (self.container) self.container.empty();
        var k = this.reposition(this.wrapper, options)[1];
        this.fx.wrapper.start(this.effects(this.options.effect, k).start).chain(function() {
            if (self.options.captions && self.caption) {
                (function() {
                    var a = self.caption.getSize().y || 0;
                    var b = self.center.getStyle('height').toInt();
                    var c = self.caption.get('text').trim().length;
                    self.fx.height.start('height', b + a - e).chain(function() {
                        self.caption.fade('in');
                        if (self.options.keyEvents) {
                            self.evt = self.keyEvents.bindWithEvent(self);
                            document.addEvent('keyup', self.evt)
                        }
                    })
                }).delay(self.options.captionsDelay)
            }
        });
        var h = size.height + e + g;
        var f = this.effects(this.options.effect, k).start;
        if (f.width || f.height) this.fx.center.start({
            'width': ($type(f.width) == 'array') ? [0, size.width] : size.width,
            'height': ($type(f.height) == 'array') ? [0, h] : h
        });
        else this.center.setStyles({
            'width': size.width,
            'height': h
        })
    },
    close: function(a, b) {
        var c = this,
            effect;
        var d = {
            'left': this.wrapper.getStyle('left').toInt(),
            'top': this.wrapper.getStyle('top').toInt()
        };
        this.closeButton.setStyle('visibility', 'hidden');
        this.container.removeClass('spinner');
        this.unloadVideo();
        effect = this.effects((b) ? b : this.options.effect, d).end;
        if (this.options.captions) this.caption.fade('out');
        if (this.options.keyEvents) document.removeEvent('keyup', c.evt);
        if (this.arrows) this.arrows.dispose();
        this.arrows = false;
        var e = {};
        if ($chk(effect.width)) e.width = Math.abs(effect.width - c.overflow());
        if ($chk(effect.height)) e.height = Math.abs(effect.height);
        this.fx.center.start(e).chain(function() {
            c.fx.height.cancel();
            if (c.caption) c.caption.setStyle('height', '');
            c.center.setStyles({
                'width': '',
                'height': ''
            });
            c.container.setStyles({
                'width': '',
                'height': ''
            })
        });
        this.fx.wrapper.start(effect);
        return this
    },
    keyEvents: function(e) {
        new Event(e);
        switch (e.key) {
        case 'left':
            if (this.arrows) this.prevArrow.fireEvent('click', e);
            break;
        case 'right':
            if (this.arrows) this.nextArrow.fireEvent('click', e);
            break;
        case 'esc':
            this.swtch = false;
            this.close(e, 'growl')
        }
    },
    reposition: function(a, b) {
        var c = window.getSize(),
            winScroll = window.getScroll();
        if (!a) a = document.id(this.wrapper);
        if (!b) {
            var d = a.getSize();
            b = {
                'width': d.x,
                'height': d.y
            }
        };
        var e = this.options['arrows-height'];
        var f = winScroll.x + (((Browser.Engine.presto) ? window.innerWidth : c.x) / 2) - (b.width / 2) - a.getStyle('padding-left').toInt();
        var g = winScroll.y + (((Browser.Engine.presto) ? window.innerHeight : c.y) / 2) - (b.height / 2) - a.getStyle('padding-top').toInt() - (e / 2);
        var h = {
            'top': (g > 0) ? g : 0,
            'left': (f > 0) ? f : 0
        };
        return [a.setStyles(h), h]
    },
    loadVideo: function() {
        if (this.container) this.container.dispose();
        if (this.caption) this.caption.hide();
        var d = this.current[1],
            url = this.current[2],
            size = this.current[3],
            group = this.current[4],
            index = this.current[5],
            cls = this.options.className;
        var f = this.current[7];
        var g = this.closeButton.getStyle('height').toInt() || this.closeButton.getSize().size.y || 0;
        var h = this.options['arrows-height'] || 0;
        this.type = false;
        if (f) {
            this.type = 'module';
            this.object = document.id(f)
        } else if (url.match(/\.(gif|jpg|jpeg|png|bmp)$/i) || this.current[0].alt == 'image') {
            this.type = 'image';
            var i = this;
            this.object = new Asset.image(url, {
                id: 'rokboxobject',
                onerror: function() {
                    i.container.removeClass('spinner').addClass('warning');
                    i.container.set('html', '<h1>Image not found.</h1>')
                },
                onload: function() {
                    size.width = this.width;
                    size.height = this.height;
                    if (i.arrows) i.arrows.hide();
                    i.container.setStyles(size);
                    var a = this,
                        winSize = window.getSize(),
                        winScroll = window.getScroll();
                    var b = winScroll.y + (winSize.y / 2) - (this.height / 2) - i.wrapper.getStyle('padding-top').toInt();
                    if (b < 0) b = 0;
                    if (i.center.getStyle('width').toInt() != size.width && i.center.getStyle('height').toInt() != size.height) {
                        i.fx.center.start({
                            'width': size.width,
                            'height': size.height + i.overflow(true) + h
                        })
                    };
                    var c = winScroll.x + (winSize.x / 2) - (this.width / 2) - (i.overflow(true) / 2) - i.wrapper.getStyle('padding-left').toInt();
                    i.fx.wrapper.start({
                        'left': (c > 0) ? c : 0,
                        'width': this.width + i.overflow(true),
                        'height': this.height + i.overflow() + h + g
                    }).chain(function() {
                        i.container.removeClass('spinner');
                        a.inject(i.container);
                        if (i.arrows) i.arrows.show()
                    })
                }
            })
        } else if (url.match(/\.(mov|qt|mpeg|divx|avi|xvid|mv4|m4v)$/i)) {
            this.type = 'qt';
            if (navigator.plugins && navigator.plugins.length) {
                this.object = '<object id="rokboxobject" standby="loading..." type="video/quicktime" codebase="http://www.apple.com/qtactivex/qtplugin.cab" data="' + url + '" width="' + size.width + '" height="' + size.height + '"><param name="src" value="' + url + '" /><param name="scale" value="aspect" /><param name="controller" value="' + this.options.controller + '" /><param name="autoplay" value="' + this.options.autoplay + '" /><param name="bgcolor" value="' + this.options.bgcolor + '" /><param name="enablejavascript" value="true" /></object>'
            } else {
                this.object = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" standby="loading..." codebase="http://www.apple.com/qtactivex/qtplugin.cab" type="video/quicktime" width="' + size.width + '" height="' + size.height + '" id="rokboxobject"><param name="src" value="' + url + '" /><param name="scale" value="aspect" /><param name="controller" value="' + this.options.controller + '" /><param name="autoplay" value="' + this.options.autoplay + '" /><param name="bgcolor" value="' + this.options.bgcolor + '" /><param name="enablejavascript" value="true" /></object>'
            }
        } else if (url.match(/\.(wmv|wma|wax|wvx|asx|asf)$/i)) {
            this.type = 'wmv';
            if (navigator.plugins && navigator.plugins.length) {
                this.object = '<object id="rokboxobject" standby="loading..." type="application/x-oleobject" data="' + url + '" width="' + size.width + '" height="' + size.height + '" /><param name="src" value="' + url + '" /><param name="autoStart" value="' + this.options.autoplay + '" /><param name="bgcolor" value="' + this.options.bgcolor + '" /></object>'
            } else {
                this.object = '<object id="rokboxobject" standby="loading..." classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" type="application/x-oleobject" data="' + url + '" width="' + size.width + '" height="' + size.height + '" /><param name="filename" value="' + url + '" /><param name="showcontrols" value="' + this.options.controller + '"><param name="autoStart" value="' + this.options.autoplay + '" /><param name="bgcolor" value="' + this.options.bgcolor + '" /><param name="stretchToFit" value="true" /></object>'
            }
        } else if (url.match(/youtube\.com\/watch\?v=/i) || url.match(/youtube\-nocookie\.com\/watch\?v=/i)) {
            this.type = 'flash';
            var j = parseUri(url);
            this.videoID = j['queryKey']['v'];
            delete j['queryKey']['v'];
            if (this.options.youtubeAutoplay && !j['queryKey']['autoplay']) j['queryKey']['autoplay'] = 1;
            this.object = new SWFObject("http://www.youtube.com/v/" + this.videoID + '&' + Hash.toQueryString(j['queryKey']), "rokboxobject", size.width, size.height, "9", this.options.bgcolor, "wmode", "transparent");
            this.object.addParam('allowscriptaccess', 'always');
            this.object.addParam('allowfullscreen', 'true')
        } else if (url.match(/dailymotion\./i)) {
            this.type = 'flash';
            var k = url.split("_")[0].split('/');
            this.videoId = k[k.length - 1];
            this.object = new SWFObject("http://www.dailymotion.com/swf/" + this.videoId + "&v3=1&colors=background:DDDDDD;glow:FFFFFF;foreground:333333;special:FFC300;&autoPlay=1&related=0", "rokboxobject", size.width, size.height, "9", this.options.bgcolor);
            this.object.addParam('allowscriptaccess', 'always');
            this.object.addParam('allowfullscreen', 'true')
        } else if (url.match(/metacafe\.com\/watch/i)) {
            this.type = 'flash';
            var k = url.split('/');
            this.videoID = k[4];
            this.object = new SWFObject("http://www.metacafe.com/fplayer/" + this.videoID + "/.swf", "rokboxobject", size.width, size.height, "9", this.options.bgcolor, "wmode", "transparent");
            this.object.addParam('allowscriptaccess', 'always');
            this.object.addParam('allowfullscreen', 'true')
        } else if (url.match(/google\.com\/videoplay/i)) {
            this.type = 'flash';
            var k = url.split('=');
            this.videoID = k[1];
            this.object = new SWFObject("http://video.google.com/googleplayer.swf?docId=" + this.videoID + "&autoplay=1&hl=en", "rokboxobject", size.width, size.height, "9", this.options.bgcolor, "wmode", "transparent");
            this.object.addParam('allowscriptaccess', 'always');
            this.object.addParam('allowfullscreen', 'true')
        } else if (url.match(/vimeo\.com\/[0-9]{1,}/i)) {
            this.type = 'flash';
            var k = url.split('/');
            this.videoID = k[3];
            this.options.vimeoFullScreen = (this.options.vimeoFullScreen) ? 1 : 0;
            this.options.vimeoTitle = (this.options.vimeoTitle) ? 1 : 0;
            this.options.vimeoByline = (this.options.vimeoByline) ? 1 : 0;
            this.options.vimeoPortrait = (this.options.vimeoPortrait) ? 1 : 0;
            this.options.vimeoColor = (this.options.vimeoColor.match(/[0-9]{6}/)) ? this.options.vimeoColor : '00adef';
            this.object = new SWFObject("http://www.vimeo.com/moogaloop.swf?clip_id=" + this.videoID + "&amp;server=www.vimeo.com&amp;fullscreen=" + this.options.vimeoFullScreen + "&amp;show_title=" + this.options.vimeoTitle + "&amp;show_byline=" + this.options.vimeoByline + "&amp;show_portrait=" + this.options.vimeoPortrait + "&amp;color=" + this.options.vimeoColor + "", "rokboxobject", size.width, size.height, "9", this.options.bgcolor);
            this.object.addParam('allowscriptaccess', 'always');
            this.object.addParam('allowfullscreen', 'true')
        } else if (url.match(/\.swf/i)) {
            this.type = 'flash';
            this.object = new SWFObject(url, "rokboxobject", size.width, size.height, "9", this.options.bgcolor, "wmode", "transparent");
            this.object.addParam('allowscriptaccess', 'always');
            this.object.addParam('allowfullscreen', 'true')
        } else if (url.match(/\.flv/i) && window.rokboxPath) {
            this.type = 'flash';
            url = window.rokboxPath + 'jwplayer/jwplayer.swf?file=' + url;
            this.object = new SWFObject(url, "rokboxobject", size.width, size.height, "9", this.options.bgcolor, "wmode", "transparent");
            this.object.addParam('allowscriptaccess', 'always');
            this.object.addParam('allowfullscreen', 'true')
        } else if (url.match(/\.(mp3|m4a)$/i)) {
            this.type = 'audio';
            this.object = '<object id="rokboxobject"" width="' + size.width + '" height="' + size.height + '" data="' + url + '"" type="' + ((Browser.Engine.trident) ? 'application/x-mplayer2' : 'audio/mpeg') + '"><param value="' + url + '" name="src"/><param value="' + url + '" name="filename"/><param value="' + ((Browser.Engine.trident) ? 'application/x-mplayer2' : 'audio/mpeg') + '" name="type"/><param name="bgcolor" value="' + this.options.bgcolor + '" /><p>No plugin matched for playing: ' + url + '</p></object>'
        } else if (url.match(/\.wav$/i)) {
            this.type = 'audio';
            this.object = '<object id="rokboxobject"" width="' + size.width + '" height="' + size.height + '" data="' + url + '"" type="' + ((Browser.Engine.trident) ? 'application/x-mplayer2' : 'audio/wav') + '"><param value="' + url + '" name="src"/><param value="' + url + '" name="filename"/><param value="' + ((Browser.Engine.trident) ? 'application/x-mplayer2' : 'audio/wav') + '" name="type"/><param name="bgcolor" value="' + this.options.bgcolor + '" /><p>No plugin matched for playing: ' + url + '</p></object>'
        } else {
            this.type = 'iframe';
            var l = "rokboxobject" + $time() + $random(0, 100);
            this.object = new Element('iframe').setProperties({
                id: l,
                width: size.width,
                height: size.height,
                frameBorder: 0,
                scrolling: 'auto',
                src: url
            });
            var i = this;
            this.object.onload = function() {
                i.container.removeClass('spinner')
            }
        }
        this.movie = document.id('rokboxobject');
        if (this.type) {
            this.container = new Element('div', {
                'id': cls + '-container',
                'class': cls + '-container'
            }).addClass('spinner').setStyles(size).injectInside(this.center);
            if (this.type == 'flash') this.object.write(this.container);
            else if (this.type == 'module') {
                var m = this.object.clone(true);
                m.inject(this.container.removeClass('spinner')).setStyle('display', 'block');
                if (this.object.get('id')) m.set('id', this.object.get('id'))
            } else if (this.type == 'html') {
                this.object.inject(this.container);
                new Ajax(url, {
                    'method': 'get',
                    'evalScripts': true,
                    'update': this.object,
                    onComplete: function() {
                        this.container.removeClass('spinner')
                    }.bind(this)
                }).request()
            } else if (this.type == 'iframe') {
                this.object.inject(this.container)
            } else if (this.type != 'image') this.container.removeClass('spinner').set('html', this.object);
            if (group) {
                var n = this.groups.get(group),
                    i = this;
                if (n.length > 1) {
                    if (!this.arrows) {
                        this.arrows = new Element('div', {
                            'id': this.options.className + '-arrows'
                        }).inject(this.center).hide();
                        if (index != 1) {
                            this.prevArrow = new Element('a', {
                                'id': this.options.className + '-previous'
                            }).inject(this.arrows).set('html', '<span>&lt;previous</span>');
                            this.prevArrow.setProperties({
                                'href': n[index - 2].getProperty('href'),
                                'title': n[index - 2].getProperty('title')
                            })
                        };
                        if (index != n.length) {
                            this.nextArrow = new Element('a', {
                                'id': this.options.className + '-next'
                            }).inject(this.arrows).set('html', '<span>next &gt;</span>');
                            this.nextArrow.setProperties({
                                'href': n[index].getProperty('href'),
                                'title': n[index].getProperty('title')
                            })
                        };
                        if (index == 1) this.prevArrow = new Element('a', {
                            'id': this.options.className + '-previous',
                            'class': 'inactive',
                            'href': '#'
                        }).inject(this.arrows, 'top').set('html', '<span>&lt;previous</span>');
                        if (index == n.length) this.nextArrow = new Element('a', {
                            'id': this.options.className + '-next',
                            'class': 'inactive',
                            'href': '#'
                        }).inject(this.arrows).set('html', '<span>next &gt;</span>');
                        this.prevArrow.addEvent('click', function(e) {
                            e = new Event(e).stop();
                            if (!this.hasClass('inactive')) {
                                i.changeGroup = true;
                                i.nextGroup = [e, this, n, index];
                                i.swtch = true;
                                i.close(e, 'growl')
                            }
                        });
                        this.nextArrow.addEvent('click', function(e) {
                            e = new Event(e).stop();
                            if (!this.hasClass('inactive')) {
                                i.changeGroup = true;
                                i.nextGroup = [e, this, n, index];
                                i.swtch = true;
                                i.close(e, 'growl')
                            }
                        })
                    };
                    this.arrows.show()
                }
            };
            if (this.options.captions) {
                var o = this.getCaption(d) || [false, false];
                var p = o[0],
                    description = o[1];
                if (this.caption) this.caption.empty().dispose();
                this.caption = new Element('div', {
                    'id': this.options.className + '-caption'
                }).inject(this.center).setStyle('opacity', 0).adopt(p, description)
            }
        }
    },
    unloadVideo: function() {
        if (this.type) {
            this.container.setStyle('visibility', 'hidden').empty()
        }
        this.movie = null;
        this.type = false
    },
    getCaption: function(a) {
        a = a.split(" :: ") || false;
        switch (a.length) {
        case 0:
            return false;
            break;
        case 1:
            var b = false;
            var c = new Element('p').set('text', a[0]);
            break;
        case 2:
            var b = new Element('h2').set('text', a[0]);
            var c = new Element('p').set('text', a[1]);
            break
        }
        return [b, c]
    },
    getGroup: function(a) {
        var b = a.getProperty('rel'),
            group = false;
        if (b) group = b.match(/\([a-z0-9A-Z]+\)/g) || false;
        if (group[0]) group = group[0].replace("(", "").replace(")", "");
        else group = false;
        return group
    }
});
var Rokverlay = new Class({
    Implements: [Options, Events],
    options: {
        'id': false,
        'class': false,
        'background': '#000000',
        'opacity': 0.7,
        'zIndex': 65555,
        'duration': 200,
        'transition': Fx.Transitions.Quad.easeInOut
    },
    initialize: function(a, b) {
        this.where = document.id(a) || document.body;
        this.setOptions(b);
        this.overlay = new Element('div', {
            'id': this.options.id || ('rokverlay-' + $random(1, 1000)),
            'class': this.options.id || ('rokverlay-' + $random(1, 1000)),
            'styles': {
                'opacity': 0,
                'display': 'none',
                'position': 'absolute',
                'top': 0,
                'left': 0,
                'cursor': 'pointer',
                'background-color': this.options.background,
                'z-index': this.options.zIndex
            }
        }).inject(document.body);
        this.fx = new Fx.Tween(this.overlay, {
            duration: this.options.duration,
            transition: this.options.transition
        });
        this.open = false;
        return this
    },
    reposition: function(a) {
        var b = this.where;
        a = a || window.getScrollSize();
        this.overlay.setStyles({
            top: b.getPosition().y || 0,
            left: b.getPosition().x || 0,
            width: (Browser.Engine.webkit) ? '100%' : window.getSize().x,
            height: a.y
        });
        return this
    },
    show: function() {
        var a = this.overlay,
            self = this;
        this.overlay.setStyle('display', '');
        this.open = true;
        this.reposition().fx.start('opacity', this.options.opacity).chain(function() {
            self.fireEvent('onShow', a)
        });
        return this
    },
    hide: function() {
        var a = this.overlay,
            self = this;
        this.open = false;
        this.reposition().fx.start('opacity', 0).chain(function() {
            a.setStyle('display', 'none');
            self.fireEvent('onHide', a)
        });
        return this
    },
    toggle: function() {
        this[this.open ? 'hide' : 'show']();
        return this
    }
});
RokBox.implement({
    effects: function(a, b) {
        var c = {};
        if (!b) b = 0;
        switch (a) {
        case 'growl':
            c = {
                'start': {
                    'top': [b.top - this.options.chase, b.top],
                    'opacity': 1
                },
                'end': {
                    'top': this.wrapper.getStyle('top').toInt() + this.options.chase,
                    'opacity': 0
                }
            };
            break;
        case 'quicksilver':
            var d = this.wrapper.getStyle('height').toInt(),
                width = this.wrapper.getStyle('width').toInt();
            c = {
                'start': {
                    'top': [b.top + (d / 2), b.top],
                    'height': [0, d],
                    'opacity': 1
                },
                'end': {
                    'top': b.top + (d / 2),
                    'left': window.getSize().x / 2 - ((window.getScrollSize().x - 10) / 2),
                    'width': window.getScrollSize().x - 30,
                    'height': 0,
                    'opacity': 0
                }
            };
            break;
        case 'explode':
            var d = this.wrapper.getStyle('height').toInt(),
                width = this.wrapper.getStyle('width').toInt();
            c = {
                'start': {
                    'height': [0, d],
                    'width': [0, width],
                    'opacity': 1,
                    'top': [(window.getSize().y / 2) + window.getScroll().y, b.top],
                    'left': [(window.getSize().x / 2) + window.getScroll().x, b.left]
                },
                'end': {
                    'height': 0,
                    'width': 0,
                    'opacity': 0,
                    'top': (window.getSize().y / 2) + window.getScroll().y,
                    'left': (window.getSize().x / 2) + window.getScroll().x
                }
            };
            break;
        case 'fade':
            c = {
                'start': {
                    'opacity': 1
                },
                'end': {
                    'opacity': 0
                }
            }
        };
        return c
    }
});

function parseUri(a) {
    var o = parseUri.options,
        m = o.parser[o.strictMode ? "strict" : "loose"].exec(a),
        uri = {},
        i = 14;
    while (i--) uri[o.key[i]] = m[i] || "";
    uri[o.q.name] = {};
    uri[o.key[12]].replace(o.q.parser, function($0, $1, $2) {
        if ($1) uri[o.q.name][$1] = $2
    });
    return uri
};
parseUri.options = {
    strictMode: false,
    key: ["source", "protocol", "authority", "userInfo", "user", "password", "host", "port", "relative", "path", "directory", "file", "query", "anchor"],
    q: {
        name: "queryKey",
        parser: /(?:^|&)([^&=]*)=?([^&]*)/g
    },
    parser: {
        strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,
        loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/
    }
};
if (typeof deconcept == "undefined") {
    var deconcept = new Object()
}
if (typeof deconcept.util == "undefined") {
    deconcept.util = new Object()
}
if (typeof deconcept.SWFObjectUtil == "undefined") {
    deconcept.SWFObjectUtil = new Object()
}
deconcept.SWFObject = function(a, b, w, h, d, c, e, f, g, i) {
    if (!document.getElementById) {
        return
    }
    this.DETECT_KEY = i ? i : "detectflash";
    this.skipDetect = deconcept.util.getRequestParameter(this.DETECT_KEY);
    this.params = new Object();
    this.variables = new Object();
    this.attributes = new Array();
    if (a) {
        this.setAttribute("swf", a)
    }
    if (b) {
        this.setAttribute("id", b)
    }
    if (w) {
        this.setAttribute("width", w)
    }
    if (h) {
        this.setAttribute("height", h)
    }
    if (d) {
        this.setAttribute("version", new deconcept.PlayerVersion(d.toString().split(".")))
    }
    this.installedVer = deconcept.SWFObjectUtil.getPlayerVersion();
    if (!Browser.Engine.presto && document.all && this.installedVer.major > 7) {
        deconcept.SWFObject.doPrepUnload = true
    }
    if (c) {
        this.addParam("bgcolor", c)
    }
    var q = e ? e : "high";
    this.addParam("quality", q);
    this.setAttribute("useExpressInstall", false);
    this.setAttribute("doExpressInstall", false);
    var j = (f) ? f : window.location;
    this.setAttribute("xiRedirectUrl", j);
    this.setAttribute("redirectUrl", "");
    if (g) {
        this.setAttribute("redirectUrl", g)
    }
};
deconcept.SWFObject.prototype = {
    useExpressInstall: function(a) {
        this.xiSWFPath = !a ? "expressinstall.swf" : a;
        this.setAttribute("useExpressInstall", true)
    },
    setAttribute: function(a, b) {
        this.attributes[a] = b
    },
    getAttribute: function(a) {
        return this.attributes[a]
    },
    addParam: function(a, b) {
        this.params[a] = b
    },
    getParams: function() {
        return this.params
    },
    addVariable: function(a, b) {
        this.variables[a] = b
    },
    getVariable: function(a) {
        return this.variables[a]
    },
    getVariables: function() {
        return this.variables
    },
    getVariablePairs: function() {
        var a = new Array();
        var b;
        var c = this.getVariables();
        for (b in c) {
            a[a.length] = b + "=" + c[b]
        }
        return a
    },
    getSWFHTML: function() {
        var a = "";
        if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) {
            if (this.getAttribute("doExpressInstall")) {
                this.addVariable("MMplayerType", "PlugIn");
                this.setAttribute("swf", this.xiSWFPath)
            }
            a = "<embed type=\"application/x-shockwave-flash\" src=\"" + this.getAttribute("swf") + "\" width=\"" + this.getAttribute("width") + "\" height=\"" + this.getAttribute("height") + "\" style=\"" + this.getAttribute("style") + "\"";
            a += " id=\"" + this.getAttribute("id") + "\" name=\"" + this.getAttribute("id") + "\" ";
            var b = this.getParams();
            for (var c in b) {
                a += [c] + "=\"" + b[c] + "\" "
            }
            var d = this.getVariablePairs().join("&");
            if (d.length > 0) {
                a += "flashvars=\"" + d + "\""
            }
            a += "/>"
        } else {
            if (this.getAttribute("doExpressInstall")) {
                this.addVariable("MMplayerType", "ActiveX");
                this.setAttribute("swf", this.xiSWFPath)
            }
            a = "<object id=\"" + this.getAttribute("id") + "\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"" + this.getAttribute("width") + "\" height=\"" + this.getAttribute("height") + "\" style=\"" + this.getAttribute("style") + "\">";
            a += "<param name=\"movie\" value=\"" + this.getAttribute("swf") + "\" />";
            var e = this.getParams();
            for (var c in e) {
                a += "<param name=\"" + c + "\" value=\"" + e[c] + "\" />"
            }
            var f = this.getVariablePairs().join("&");
            if (f.length > 0) {
                a += "<param name=\"flashvars\" value=\"" + f + "\" />"
            }
            a += "</object>"
        }
        return a
    },
    write: function(a) {
        if (this.getAttribute("useExpressInstall")) {
            var b = new deconcept.PlayerVersion([6, 0, 65]);
            if (this.installedVer.versionIsValid(b) && !this.installedVer.versionIsValid(this.getAttribute("version"))) {
                this.setAttribute("doExpressInstall", true);
                this.addVariable("MMredirectURL", escape(this.getAttribute("xiRedirectUrl")));
                document.title = document.title.slice(0, 47) + " - Flash Player Installation";
                this.addVariable("MMdoctitle", document.title)
            }
        }
        if (this.skipDetect || this.getAttribute("doExpressInstall") || this.installedVer.versionIsValid(this.getAttribute("version"))) {
            var n = (typeof a == "string") ? document.getElementById(a) : a;
            n.innerHTML = this.getSWFHTML();
            return true
        } else {
            if (this.getAttribute("redirectUrl") != "") {
                document.location.replace(this.getAttribute("redirectUrl"))
            }
        }
        return false
    }
};
deconcept.SWFObjectUtil.getPlayerVersion = function() {
    var a = new deconcept.PlayerVersion([0, 0, 0]);
    if (navigator.plugins && navigator.mimeTypes.length) {
        var x = navigator.plugins["Shockwave Flash"];
        if (x && x.description) {
            a = new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split("."))
        }
    } else {
        if (navigator.userAgent && navigator.userAgent.indexOf("Windows CE") >= 0) {
            var b = 1;
            var c = 3;
            while (b) {
                try {
                    c++;
                    b = new ActiveXObject("ShockwaveFlash.ShockwaveFlash." + c);
                    a = new deconcept.PlayerVersion([c, 0, 0])
                } catch (e) {
                    b = null
                }
            }
        } else {
            try {
                var b = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7")
            } catch (e) {
                try {
                    var b = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
                    a = new deconcept.PlayerVersion([6, 0, 21]);
                    b.AllowScriptAccess = "always"
                } catch (e) {
                    if (a.major == 6) {
                        return a
                    }
                }
                try {
                    b = new ActiveXObject("ShockwaveFlash.ShockwaveFlash")
                } catch (e) {}
            }
            if (b != null) {
                a = new deconcept.PlayerVersion(b.GetVariable("$version").split(" ")[1].split(","))
            }
        }
    }
    return a
};
deconcept.PlayerVersion = function(a) {
    this.major = a[0] != null ? parseInt(a[0]) : 0;
    this.minor = a[1] != null ? parseInt(a[1]) : 0;
    this.rev = a[2] != null ? parseInt(a[2]) : 0
};
deconcept.PlayerVersion.prototype.versionIsValid = function(a) {
    if (this.major < a.major) {
        return false
    }
    if (this.major > a.major) {
        return true
    }
    if (this.minor < a.minor) {
        return false
    }
    if (this.minor > a.minor) {
        return true
    }
    if (this.rev < a.rev) {
        return false
    }
    return true
};
deconcept.util = {
    getRequestParameter: function(a) {
        var q = document.location.search || document.location.hash;
        if (a == null) {
            return q
        }
        if (q) {
            var b = q.substring(1).split("&");
            for (var i = 0; i < b.length; i++) {
                if (b[i].substring(0, b[i].indexOf("=")) == a) {
                    return b[i].substring((b[i].indexOf("=") + 1))
                }
            }
        }
        return ""
    }
};
deconcept.SWFObjectUtil.cleanupSWFs = function() {
    var a = document.getElementsByTagName("OBJECT");
    for (var i = a.length - 1; i >= 0; i--) {
        a[i].style.display = "none";
        for (var x in a[i]) {
            if (typeof a[i][x] == "function") {
                a[i][x] = function() {}
            }
        }
    }
};
if (deconcept.SWFObject.doPrepUnload) {
    if (!deconcept.unloadSet) {
        deconcept.SWFObjectUtil.prepUnload = function() {
            __flash_unloadHandler = function() {};
            __flash_savedUnloadHandler = function() {};
            window.attachEvent("onunload", deconcept.SWFObjectUtil.cleanupSWFs)
        };
        window.attachEvent("onbeforeunload", deconcept.SWFObjectUtil.prepUnload);
        deconcept.unloadSet = true
    }
}
if (!document.getElementById && document.all) {
    document.getElementById = function(a) {
        return document.all[a]
    }
}
var getQueryParamValue = deconcept.util.getRequestParameter;
var FlashObject = deconcept.SWFObject;
var SWFObject = deconcept.SWFObject;

Executed Writes (13)

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

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

<a href="http://optimized-by.rubiconproject.com/t/9358/16370/39994-2.3315922.3370990?url=http%3A%2F%2Fadoptuskids.org" target="_blank"><img src="http://assets.rubiconproject.com/campaigns/100/11/58/88/1338395464adc_adoption_balloons_728x90.jpg" border="0" alt="" /></a>

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

<div id='beacon_02ff9a7973' style='position: absolute; left: 0px; top: 0px; visibility: hidden;'><img src='http://adsmmi.net/www/delivery/lg.php?bannerid=106&amp;campaignid=35&amp;zoneid=43&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;oxfb=1&amp;cb=02ff9a7973' width='0' height='0' alt='' style='width: 0px; height: 0px;' /></div>

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

<script src="http://www.lijit.com/delivery/fp?&ljtiframe=1&loc=http%3A%2F%2Fadsmmi.net%2Fwww%2Fdelivery%2Fafr.php%3Frefresh%3D60%26zoneid%3D45%26target%3D_blank&od=http%3A%2F%2Fwww.myitview.com&ref=http%3A%2F%2Fwww.myitview.com%2F&ifr=1&z=169759&u=mymediainc"></script>

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

<script type="text/javascript" SRC="http://tap.rubiconproject.com/partner/agent/rubicon/channels.js?cb=oz_onPixelsLoaded"></script>

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

<script type="text/javascript" src="http://ad.doubleclick.net/adj/ns.myitview/general;ctx=unprocessed;ips=unprocessed;ppos=btf;kw=;tile=1;dcopt=ist;sz=728x90;ord=5401074574076925;an=90;bu=309;br=5064"></script>

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

<script type="text/javascript" src="http://ad.doubleclick.net/adj/ns.myitview/textlink;ctx=5_752_m;ctx=4_332_m;ctx=6_1197_m;ctx=2_431_l;ctx=3_163_l;ctx=3_173_l;ips=m;ppos=atf;kw=;tile=1;sz=1x2;ord=351825611758115;an=;bu=;br="></script>

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

<script type="text/javascript" src="http://ad1.netshelter.net/adj/ns.myitview/general;ppos=btf;kw=;tile=1;dcopt=ist;sz=728x90;ord=5401074574076925?"></script>

#9 JavaScript::Write (size: 145, repeated: 1)

<script type="text/javascript" src="http://ad1.netshelter.net/adj/ns.myitview/textlink;ppos=atf;kw=;tile=1;sz=1x2;ord=351825611758115?"></script>

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

<script type="text/javascript" src="http://optimized-by.rubiconproject.com/a/9358/16370/39994-2.js?cb=0.2635716752238161&tk_st=1&p_screen_res=1176x885&rp_s=c&rf=http%3A//www.myitview.com/"></script>

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

<script></script><!--  Rubicon Project Tag -->
<!--  Site: NetShelter   Zone: ROS   Size: Leaderboard  -->
<script language="JavaScript" type="text/javascript">
var rp_account   = '9358';
var rp_site      = '16370';
var rp_zonesize  = '39994-2';
var rp_adtype    = 'js';
var rp_smartfile = '[SMART FILE URL]';
</script>
<script type="text/javascript" src="http://ads.rubiconproject.com/ad/9358.js"></script>

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

<script>var _comscore = _comscore || []; _comscore.push({ c1: "8", c2: "6135404", c3: "20", c4: "16370", c10: "3370990" }); (function() { var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js"; el.parentNode.insertBefore(s, el); })();</script><DIV STYLE="height:0px; width:0px; overflow:hidden"><IFRAME SRC="http://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?rtb_ext=1&pc=9358/16370&geo=eu&co=no" FRAMEBORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="NO" WIDTH="0" HEIGHT="0" style="height:0px; width:0px"></IFRAME></DIV>

#13 JavaScript::Write (size: 903, repeated: 1)

<style>#lwp_ad_item_premium_169759{	display:none;	position:relative;	width:300px;}#lwp_ad_item_premium_169759>div{}#lwp_adchoices_169759{	display:none;	position:absolute;	right:0px;	top:0px;	z-index:1;	background-color:transparent;	height:16px;	overflow:none;}#lwp_adchoices_169759 img{	border:0px;}</style><div id="lwp_abf_169759"></div><div id="lwp_ad_item_premium_169759"><div><script type='text/javascript' src='http://apr.lijit.com///www/delivery/ajs.php?zoneid=169759&amp;username=mymediainc&amp;numAds=1&amp;premium=1&amp;eleid=lijit_region_169759&amp;abf=true&amp;tid=169759_1352396796933ee9fff434566&amp;lijit_kw=&amp;cb=3879664183&amp;flv=10.0.45&amp;time=18:46:36&amp;ifr=1&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;od=myitview.com&amp;referer=http%3A%2F%2Fwww.myitview.com%2F'></script></div></div><script type='text/javascript'>LJT_Ads.init(); LJT_Ads.fixBeacons(document.body);</script>


HTTP Transactions (128)


Request Response
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://www.myitview.com/
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: Thu, 08 Nov 2012 08:35:01 GMT
Expires: Thu, 08 Nov 2012 20:35:01 GMT
Vary: Accept-Encoding
Age: 33092
Cache-Control: max-age=43200, public
Server: GFE/2.0
GET /quant.js HTTP/1.1

Host: edge.quantserve.com

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

Content-Type: application/x-javascript
Server: Apache
Last-Modified: Mon, 25 Jun 2012 19:57:36 GMT
Accept-Ranges: bytes
Content-Length: 2307
Content-Encoding: gzip
Cache-Control: private, max-age=86400
Expires: Fri, 09 Nov 2012 17:46:33 GMT
Date: Thu, 08 Nov 2012 17:46:33 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /__utm.gif?utmwv=5.3.7&utms=1&utmn=1254002008&utmhn=www.myitview.com&utmcs=UTF-8&utmsr=1176x885&utmvp=1176x778&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=Welcome%20to%20your%20IT%20Community%20-%20myITview.com&utmhid=1946165380&utmr=-&utmp=%2F&utmac=UA-19419179-1&utmcc=__utma%3D41911358.1051833061.1352396793.1352396793.1352396793.1%3B%2B__utmz%3D41911358.1352396793.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=q~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=1&amp;utmn=1254002008&amp;utmhn=www.myitview.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=1176x778&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=Welcome%20to%20your%20IT%20Community%20-%20myITview.com&amp;utmhid=1946165380&amp;utmr=-&amp;utmp=%2F&amp;utmac=UA-19419179-1&amp;utmcc=__utma%3D41911358.1051833061.1352396793.1352396793.1352396793.1%3B%2B__utmz%3D41911358.1352396793.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%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.myitview.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 07 Nov 2012 20:35:20 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: 76273
Server: GFE/2.0
GET /async/js/sites/myitview.com-async.js HTTP/1.1

Host: track.netshelter.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.myitview.com/
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Content-Length: 1885
Connection: keep-alive
x-amz-id-2: OOvmHrZWXQ7VLqw1lG5T4o8S43ylzI73ihiD1ZFwbVugisBmIAFYdgZQmEqHL0xY
x-amz-request-id: 992DB2C490E4BFAC
Date: Mon, 18 Jun 2012 22:06:39 GMT
x-amz-meta-cb-modifiedtime: Mon, 18 Jun 2012 18:51:47 GMT
Cache-Control: must-revalidate, max-age=86400
Last-Modified: Mon, 18 Jun 2012 19:04:54 GMT
Etag: &quot;8fd55559e0e898927f413757b8b379d5&quot;
Accept-Ranges: bytes
Server: AmazonS3
Age: 47202
X-Amz-Cf-Id: qIALyOzTgfAekSue4BCDcXBGHPEW2phKL6C3YFn8mjCf952COoRUYQ==
Via: 1.0 1ff1021d04a96e2b62d704b99e67d357.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET /templates/rt_solarsentinel_j15/favicon.ico HTTP/1.1

Host: www.myitview.com

User-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: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214
HTTP/1.1 200 OK

Content-Type: image/vnd.microsoft.icon
Date: Thu, 08 Nov 2012 10:44:59 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Sat, 23 Oct 2010 20:32:49 GMT
Etag: &quot;13a0d15-57e-4934ea999be40&quot;
Accept-Ranges: bytes
Content-Length: 1406
Connection: close
GET /start-b0979864e7.js HTTP/1.1

Host: static.crowdscience.com

User-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.myitview.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Server: Apache
Etag: &quot;6d3fd752d4aab42cf37998cb0f2e124f:1329757519&quot;
Last-Modified: Mon, 20 Feb 2012 17:05:19 GMT
Accept-Ranges: bytes
Content-Length: 8028
Cache-Control: max-age=14400
Date: Thu, 08 Nov 2012 17:46:33 GMT
Connection: keep-alive
GET /beacon.js HTTP/1.1

Host: b.scorecardresearch.com

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

Content-Type: application/x-javascript
Vary: Accept-Encoding
Content-Encoding: gzip
Expires: Thu, 22 Nov 2012 17:46:33 GMT
Date: Thu, 08 Nov 2012 17:46:33 GMT
Content-Length: 1140
Connection: keep-alive
Cache-Control: private, no-transform, max-age=1209600
GET /__utm.gif?utmwv=5.3.7&utms=2&utmn=1165852013&utmhn=www.myitview.com&utmcs=UTF-8&utmsr=1176x885&utmvp=1176x778&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=Welcome%20to%20your%20IT%20Community%20-%20myITview.com&utmhid=1946165380&utmr=-&utmp=%2F&utmac=UA-8848032-41&utmcc=__utma%3D41911358.1051833061.1352396793.1352396793.1352396793.1%3B%2B__utmz%3D41911358.1352396793.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=qAAg~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=2&amp;utmn=1165852013&amp;utmhn=www.myitview.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=1176x778&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=Welcome%20to%20your%20IT%20Community%20-%20myITview.com&amp;utmhid=1946165380&amp;utmr=-&amp;utmp=%2F&amp;utmac=UA-8848032-41&amp;utmcc=__utma%3D41911358.1051833061.1352396793.1352396793.1352396793.1%3B%2B__utmz%3D41911358.1352396793.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&amp;utmu=qAAg~ 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.myitview.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 07 Nov 2012 20:35:20 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: 76273
Server: GFE/2.0
GET /pixel;r=1254260851;a=p-f7jqOChRIRwuE;fpan=1;fpa=P0-886871120-1352396793289;ns=0;ce=1;je=1;sr=1176x885x24;enc=n;dst=1;et=1352396793289;tzo=-60;ref=;url=http%3A%2F%2Fwww.myitview.com%2F;ogl= HTTP/1.1

Host: pixel.quantserve.com

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

Content-Type: image/gif
Connection: close
Set-Cookie: mc=509beff9-653e3-f8718-4a00f; expires=Sat, 10-May-2014 17:46:33 GMT; path=/; domain=.quantserve.com
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAo PSDo OUR SAMa IND COM NAV&quot;
Cache-Control: private, no-cache, no-store, proxy-revalidate
Pragma: no-cache
Expires: Fri, 04 Aug 1978 12:00:00 GMT
Content-Length: 35
Date: Thu, 08 Nov 2012 17:46:33 GMT
Server: QS
GET /b?c1=2&c2=6036316&ns__t=1352396793433&ns_c=UTF-8&c8=Welcome%20to%20your%20IT%20Community%20-%20myITview.com&c7=http%3A%2F%2Fwww.myitview.com%2F&c9= HTTP/1.1

Host: b.scorecardresearch.com
GET /b?c1=2&amp;c2=6036316&amp;ns__t=1352396793433&amp;ns_c=UTF-8&amp;c8=Welcome%20to%20your%20IT%20Community%20-%20myITview.com&amp;c7=http%3A%2F%2Fwww.myitview.com%2F&amp;c9= 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.myitview.com/
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Content-Length: 0
Location: http://b.scorecardresearch.com/b2?c1=2&amp;c2=6036316&amp;ns__t=1352396793433&amp;ns_c=UTF-8&amp;c8=Welcome%20to%20your%20IT%20Community%20-%20myITview.com&amp;c7=http%3A%2F%2Fwww.myitview.com%2F&amp;c9=
Date: Thu, 08 Nov 2012 17:46:33 GMT
Connection: keep-alive
Set-Cookie: UID=3a2b625-195.159.219.9-1352396793; expires=Wed, 29-Oct-2014 17:46:33 GMT; path=/; domain=.scorecardresearch.com UIDR=1352396793; expires=Wed, 29-Oct-2014 17:46:33 GMT; path=/; domain=.scorecardresearch.com
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /b2?c1=2&c2=6036316&ns__t=1352396793433&ns_c=UTF-8&c8=Welcome%20to%20your%20IT%20Community%20-%20myITview.com&c7=http%3A%2F%2Fwww.myitview.com%2F&c9= HTTP/1.1

Host: b.scorecardresearch.com
GET /b2?c1=2&amp;c2=6036316&amp;ns__t=1352396793433&amp;ns_c=UTF-8&amp;c8=Welcome%20to%20your%20IT%20Community%20-%20myITview.com&amp;c7=http%3A%2F%2Fwww.myitview.com%2F&amp;c9= 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.myitview.com/
Cookie: UID=3a2b625-195.159.219.9-1352396793; UIDR=1352396793
HTTP/1.1 204 No Content

HTTP/1.1 204 No Content
Content-Length: 0
Date: Thu, 08 Nov 2012 17:46:33 GMT
Connection: keep-alive
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /insight.min.js HTTP/1.1

Host: js.bizographics.com

User-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.myitview.com/
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Content-Length: 23526
Connection: keep-alive
x-amz-id-2: cjD/BMtOu+bx+i24tqA2bi3fOGo8RHKuHPRBuAykmr3nwKso899csy0JpoNL5kQr
x-amz-request-id: F52611A8A7633BC3
Date: Tue, 06 Dec 2011 02:06:22 GMT
Cache-Control: max-age=300
Last-Modified: Fri, 04 Nov 2011 22:44:08 GMT
Etag: &quot;cbbd7d8681a092f4f251779904e5b130&quot;
Accept-Ranges: bytes
Server: AmazonS3
Age: 3012
X-Amz-Cf-Id: BEzgXFG_-B96WgOSXRKYcWl6qxf7XuRR_RR9PwpL2xdPEuckQROWzQ==
Via: 1.0 cf7cb51bc02ef25f9235a40fba8552ee.cloudfront.net:11180 (CloudFront), 1.0 82cdda900e097a19d365892f62aa31dd.cloudfront.net (CloudFront)
X-Cache: Hit from cloudfront
GET / HTTP/1.1

Host: www.myitview.com

User-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: Thu, 08 Nov 2012 10:44:58 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Set-Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; path=/
P3P: CP=&quot;NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM&quot;
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Last-Modified: Thu, 08 Nov 2012 10:44:59 GMT
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
GET /static/c.js HTTP/1.1

Host: p.chango.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-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.myitview.com/
HTTP/1.1 200 OK

Content-Type: application/javascript
x-amz-id-2: FFm9IviqhYrCiLbRWCXbVG6eHbeXx5q6eBIxwpT2cziK0liDWL1cJejtkeqgcQz9
x-amz-request-id: 469DA1F0F9727E96
Last-Modified: Wed, 18 Apr 2012 18:17:35 GMT
Etag: &quot;e79296b0213ce2305e06c54bc24a63d5&quot;
Accept-Ranges: bytes
Content-Length: 646
Server: AmazonS3
Cache-Control: max-age=604800
Date: Thu, 08 Nov 2012 17:46:33 GMT
Connection: keep-alive
GET /c/1352396793553/c.js?&t=Welcome%20to%20your%20IT%20Community%20-%20myITview.com&p=http%3A%2F%2Fwww.myitview.com%2F&r=&aid=10959&chaid=netshelter-2 HTTP/1.1

Host: dnetshelter2.d.chango.com
GET /c/1352396793553/c.js?&amp;t=Welcome%20to%20your%20IT%20Community%20-%20myITview.com&amp;p=http%3A%2F%2Fwww.myitview.com%2F&amp;r=&amp;aid=10959&amp;chaid=netshelter-2 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.myitview.com/
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Content-Length: 0
Server: RTB
Location: /c/rt.js?p=http%3A%2F%2Fwww.myitview.com%2F&amp;chaid=netshelter-2&amp;t=Welcome+to+your+IT+Community+-+myITview.com&amp;aid=10959&amp;is_new_user=true
Pragma: no-cache
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
P3P: policyref=&quot;http://as.chango.com/static/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR DEVa TAIa OUR BUS UNI&quot;
Set-Cookie: _t=3c5f071a-29cc-11e2-95db-00259035cb72; Domain=chango.com; expires=Sun, 06 Nov 2022 17:46:33 GMT; Path=/
Connection: close
GET /plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.1.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: text/css; charset=UTF-8
Date: Thu, 08 Nov 2012 10:45:00 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Expires: Wed, 28 Nov 2012 10:45:00 GMT
Content-Encoding: gzip
Last-Modified: Fri, 19 Oct 2012 15:55:03 GMT
Connection: close
Transfer-Encoding: chunked
GET /c/rt.js?p=http%3A%2F%2Fwww.myitview.com%2F&chaid=netshelter-2&t=Welcome+to+your+IT+Community+-+myITview.com&aid=10959&is_new_user=true HTTP/1.1

Host: dnetshelter2.d.chango.com
GET /c/rt.js?p=http%3A%2F%2Fwww.myitview.com%2F&amp;chaid=netshelter-2&amp;t=Welcome+to+your+IT+Community+-+myITview.com&amp;aid=10959&amp;is_new_user=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: 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.myitview.com/
Cookie: _t=3c5f071a-29cc-11e2-95db-00259035cb72
HTTP/1.1 200 OK

Content-Type: text/javascript
Content-Length: 0
Server: RTB
Etag: &quot;da39a3ee5e6b4b0d3255bfef95601890afd80709&quot;
Pragma: no-cache
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
P3P: policyref=&quot;http://as.chango.com/static/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR DEVa TAIa OUR BUS UNI&quot;
Connection: close
GET /plugins/system/CssJsCompress/js.php?js=12f465ccac8c808952f775392b940d6c.js.gz HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.1.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Date: Thu, 08 Nov 2012 10:45:00 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Expires: Wed, 28 Nov 2012 10:45:00 GMT
Cache-Control: max-age=30
Content-Encoding: gzip
Last-Modified: Fri, 19 Oct 2012 15:54:56 GMT
Connection: close
Transfer-Encoding: chunked
GET /templates/rt_solarsentinel_j15/images/rss-top.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:01 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 13:40:11 GMT
Etag: &quot;13a0ecf-7fd-49293d95644c0&quot;
Accept-Ranges: bytes
Content-Length: 2045
Connection: close
X-Pad: avoid browser bug
GET /adj/ns.myitview/textlink;ppos=atf;kw=;tile=1;sz=1x2;ord=351825611758115? HTTP/1.1

Host: ad1.netshelter.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.myitview.com/
HTTP/1.1 302 Found

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 17:46:35 GMT
Location: http://ib.adnxs.com/ptj?member=988&amp;inv_code=ns.myitview&amp;size=1x2&amp;referrer=http%3A%2F%2Fwww.myitview.com%2F&amp;redir=http%3A%2F%2Fad.doubleclick.net%2Fadj%2Fns.myitview%2Ftextlink%3Bctx%3D5_752_m%3Bctx%3D4_332_m%3Bctx%3D6_1197_m%3Bctx%3D2_431_l%3Bctx%3D3_163_l%3Bctx%3D3_173_l%3Bips%3Dm%3Bppos%3Datf%3Bkw%3D%3Btile%3D1%3Bsz%3D1x2%3Bord%3D351825611758115%3Ban%3D%7BPRICEBUCKET%7D%3Bbu%3D%7BBUYER_MEMBER_ID%7D%3Bbr%3D%7BBRAND_ID%7D
Server: Apache
Content-Length: 625
Connection: keep-alive
GET /templates/rt_solarsentinel_j15/images/header/black/logo.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:01 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 22:02:42 GMT
Etag: &quot;13a0e74-2463-4929ade7a0480&quot;
Accept-Ranges: bytes
Content-Length: 9315
Connection: close
X-Pad: avoid browser bug
GET /www/delivery/afr.php?refresh=60&zoneid=49&target=_blank HTTP/1.1

Host: adsmmi.net
GET /www/delivery/afr.php?refresh=60&amp;zoneid=49&amp;target=_blank 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.myitview.com/
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Thu, 08 Nov 2012 19:46:24 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; path=/ OAID=d16676dd1c2704b0ad21077da28bf740; expires=Fri, 08-Nov-2013 19:46:24 GMT; path=/
Content-Length: 1345
Connection: close
GET /images/avatar/thumb_447a1be9f9996e920df991e9.jpg HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Thu, 08 Nov 2012 10:45:01 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Fri, 23 Sep 2011 16:14:13 GMT
Etag: &quot;1394c34-3af-4ad9e199cff40&quot;
Accept-Ranges: bytes
Content-Length: 943
Connection: close
X-Pad: avoid browser bug
GET /ptj?member=988&inv_code=ns.myitview&size=1x2&referrer=http%3A%2F%2Fwww.myitview.com%2F&redir=http%3A%2F%2Fad.doubleclick.net%2Fadj%2Fns.myitview%2Ftextlink%3Bctx%3D5_752_m%3Bctx%3D4_332_m%3Bctx%3D6_1197_m%3Bctx%3D2_431_l%3Bctx%3D3_163_l%3Bctx%3D3_173_l%3Bips%3Dm%3Bppos%3Datf%3Bkw%3D%3Btile%3D1%3Bsz%3D1x2%3Bord%3D351825611758115%3Ban%3D%7BPRICEBUCKET%7D%3Bbu%3D%7BBUYER_MEMBER_ID%7D%3Bbr%3D%7BBRAND_ID%7D HTTP/1.1

Host: ib.adnxs.com
GET /ptj?member=988&amp;inv_code=ns.myitview&amp;size=1x2&amp;referrer=http%3A%2F%2Fwww.myitview.com%2F&amp;redir=http%3A%2F%2Fad.doubleclick.net%2Fadj%2Fns.myitview%2Ftextlink%3Bctx%3D5_752_m%3Bctx%3D4_332_m%3Bctx%3D6_1197_m%3Bctx%3D2_431_l%3Bctx%3D3_163_l%3Bctx%3D3_173_l%3Bips%3Dm%3Bppos%3Datf%3Bkw%3D%3Btile%3D1%3Bsz%3D1x2%3Bord%3D351825611758115%3Ban%3D%7BPRICEBUCKET%7D%3Bbu%3D%7BBUYER_MEMBER_ID%7D%3Bbr%3D%7BBRAND_ID%7D 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.myitview.com/
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=Wed, 06-Feb-2013 17:46:35 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Fri, 09-Nov-2012 17:46:35 GMT; domain=.adnxs.com; HttpOnly icu=ChIIzagDEAoYASABKAEw-9_vhAUQ-9_vhAUYAA..; path=/; expires=Wed, 06-Feb-2013 17:46:35 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip4FV-LKR#O:^sF='$5w8^-wsas%]@_6; path=/; expires=Wed, 06-Feb-2013 17:46:35 GMT; domain=.adnxs.com; HttpOnly
Date: Thu, 08 Nov 2012 17:46:35 GMT
Content-Length: 260
GET /images/logos/virtustream_logo.gif HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 10:45:01 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Fri, 19 Oct 2012 09:00:07 GMT
Etag: &quot;43c009-f30-4cc65baf193c0&quot;
Accept-Ranges: bytes
Content-Length: 3888
Connection: close
GET /adj/ns.myitview/textlink;ctx=5_752_m;ctx=4_332_m;ctx=6_1197_m;ctx=2_431_l;ctx=3_163_l;ctx=3_173_l;ips=m;ppos=atf;kw=;tile=1;sz=1x2;ord=351825611758115;an=;bu=;br= HTTP/1.1

Host: ad.doubleclick.net

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

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Date: Thu, 08 Nov 2012 17:46:35 GMT
Server: cafe
Cache-Control: private
Content-Length: 39
X-XSS-Protection: 1; mode=block
GET /www/delivery/lg.php?bannerid=92&campaignid=31&zoneid=49&loc=1&referer=http%3A%2F%2Fwww.myitview.com%2F&cb=b4249c0f5e HTTP/1.1

Host: adsmmi.net
GET /www/delivery/lg.php?bannerid=92&amp;campaignid=31&amp;zoneid=49&amp;loc=1&amp;referer=http%3A%2F%2Fwww.myitview.com%2F&amp;cb=b4249c0f5e 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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=49&amp;target=_blank
Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; OAID=d16676dd1c2704b0ad21077da28bf740
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 19:46:24 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: OAID=d16676dd1c2704b0ad21077da28bf740; expires=Fri, 08-Nov-2013 19:46:25 GMT; path=/
Content-Length: 43
Connection: close
GET /images/whitepapers/riverbed_logo.png HTTP/1.1

Host: mycfoview.com

User-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.myitview.com/
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 19:46:46 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 19 Jul 2012 18:45:44 GMT
Etag: &quot;3109d0-2958-4c5332fdf2600&quot;
Accept-Ranges: bytes
Content-Length: 10584
Connection: close
X-Pad: avoid browser bug
GET /templates/rt_solarsentinel_j15/images/modules/light-div.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:02 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 13:40:11 GMT
Etag: &quot;13a0d87-4e0-49293d95644c0&quot;
Accept-Ranges: bytes
Content-Length: 1248
Connection: close
X-Pad: avoid browser bug
GET /templates/rt_solarsentinel_j15/images/modules/light-arrow.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:02 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 13:40:11 GMT
Etag: &quot;13a0d9d-514-49293d95644c0&quot;
Accept-Ranges: bytes
Content-Length: 1300
Connection: close
X-Pad: avoid browser bug
GET /www/delivery/afr.php?refresh=60&zoneid=45&target=_blank HTTP/1.1

Host: adsmmi.net
GET /www/delivery/afr.php?refresh=60&amp;zoneid=45&amp;target=_blank 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.myitview.com/
Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; OAID=d16676dd1c2704b0ad21077da28bf740
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Thu, 08 Nov 2012 19:46:25 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: OAID=d16676dd1c2704b0ad21077da28bf740; expires=Fri, 08-Nov-2013 19:46:25 GMT; path=/
Content-Length: 1269
Connection: close
GET /www/delivery/afr.php?refresh=60&zoneid=43&target=_blank HTTP/1.1

Host: adsmmi.net
GET /www/delivery/afr.php?refresh=60&amp;zoneid=43&amp;target=_blank 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.myitview.com/
Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; OAID=d16676dd1c2704b0ad21077da28bf740
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Thu, 08 Nov 2012 19:46:25 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: OAID=d16676dd1c2704b0ad21077da28bf740; expires=Fri, 08-Nov-2013 19:46:25 GMT; path=/
Content-Length: 3023
Connection: close
GET /www/delivery/afr.php?refresh=60&zoneid=47&target=_blank HTTP/1.1

Host: adsmmi.net
GET /www/delivery/afr.php?refresh=60&amp;zoneid=47&amp;target=_blank 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.myitview.com/
Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; OAID=d16676dd1c2704b0ad21077da28bf740
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Thu, 08 Nov 2012 19:46:25 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: OAID=d16676dd1c2704b0ad21077da28bf740; expires=Fri, 08-Nov-2013 19:46:25 GMT; path=/
Content-Length: 1704
Connection: close
GET /www/delivery/afr.php?refresh=60&zoneid=42&target=_blank HTTP/1.1

Host: adsmmi.net
GET /www/delivery/afr.php?refresh=60&amp;zoneid=42&amp;target=_blank 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.myitview.com/
Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; OAID=d16676dd1c2704b0ad21077da28bf740
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Date: Thu, 08 Nov 2012 19:46:25 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: OAID=d16676dd1c2704b0ad21077da28bf740; expires=Fri, 08-Nov-2013 19:46:25 GMT; path=/
Content-Length: 1346
Connection: close
GET /collect/?time=1352396795817&pid=438&url=http%3A%2F%2Fwww.myitview.com%2F&pageUrl=http%3A%2F%2Fwww.myitview.com%2F&ref=&fmt=js HTTP/1.1

Host: www.bizographics.com
GET /collect/?time=1352396795817&amp;pid=438&amp;url=http%3A%2F%2Fwww.myitview.com%2F&amp;pageUrl=http%3A%2F%2Fwww.myitview.com%2F&amp;ref=&amp;fmt=js 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.myitview.com/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Cache-Control: no-cache
Content-Language: en-US
Date: Thu, 08 Nov 2012 17:46:35 GMT
P3P: CP=&quot;NON DSP COR CURa ADMo DEVo TAIo PSAo PSDo OUR DELa IND PHY ONL UNI COM NAV DEM&quot;
Pragma: no-cache
Server: nginx/1.2.0
Set-Cookie: BizoID=94f0ba7f-5526-4864-b807-ed716aa187d6; Domain=.bizographics.com; Expires=Fri, 10-May-2013 05:46:35 GMT; Path=/ BizoData=fS4m5xZ9gvDQo0gmm2e2mtQb1MaQBj6WV4QlNoWqeHUqwKPXXDYVmk6W48vvQFWvELdSO08xXBSdkf8kozH7KfqHVFTH1xMAaj5XcunNcMDa7Re6IGD4lBnorHlyPehiiAd6xyMUDLG60DXBtcKIKf8RNoPpIiiRDhBQJfVxzXEsgW11pRw3kybRTbFa3K8N9diipUq8ovqS7x0VsE8QVEhUSj6YBLOHgipxZsOd4RZUlMFJUns5QXvYqeDbktoHqQJoTZm1NA3xyPatOS524kcdoqeV13mqW4VUMIMgtaHAPskie; Domain=.bizographics.com; Expires=Fri, 10-May-2013 05:46:35 GMT; Path=/ BizoNetworkPartnerIndex=-1; Domain=.bizographics.com; Expires=Sat, 01-Dec-2012 00:00:00 GMT; Path=/
Content-Length: 752
Connection: keep-alive
GET /adj/ns.myitview/general;ppos=btf;kw=;tile=1;dcopt=ist;sz=728x90;ord=5401074574076925? HTTP/1.1

Host: ad1.netshelter.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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=47&amp;target=_blank
HTTP/1.1 302 Found

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 17:46:35 GMT
Location: http://ib.adnxs.com/ptj?member=988&amp;inv_code=ns.myitview&amp;size=728x90&amp;referrer=http%3A%2F%2Fadsmmi.net%2Fwww%2Fdelivery%2Fafr.php%3Frefresh%3D60%26zoneid%3D47%26target%3D_blank&amp;redir=http%3A%2F%2Fad.doubleclick.net%2Fadj%2Fns.myitview%2Fgeneral%3Bctx%3Dunprocessed%3Bips%3Dunprocessed%3Bppos%3Dbtf%3Bkw%3D%3Btile%3D1%3Bdcopt%3Dist%3Bsz%3D728x90%3Bord%3D5401074574076925%3Ban%3D%7BPRICEBUCKET%7D%3Bbu%3D%7BBUYER_MEMBER_ID%7D%3Bbr%3D%7BBRAND_ID%7D
Server: Apache
Content-Length: 643
Connection: keep-alive
GET /seg?t=2&add=&redir=http%3A%2F%2Fib.adnxs.com%2Fseg%3Fadd%3D%26add_code%3Dwww_myitview_com%2Cmyitview_com%26member%3D232%26redir%3Dhttp%253A%252F%252Fib.adnxs.com%252Fgetuid%253Fhttp%25253A%25252F%25252Fimp2.bizographics.com%25252Fu%25253Fan_user_id%25253D%252524UID HTTP/1.1

Host: ib.adnxs.com
GET /seg?t=2&amp;add=&amp;redir=http%3A%2F%2Fib.adnxs.com%2Fseg%3Fadd%3D%26add_code%3Dwww_myitview_com%2Cmyitview_com%26member%3D232%26redir%3Dhttp%253A%252F%252Fib.adnxs.com%252Fgetuid%253Fhttp%25253A%25252F%25252Fimp2.bizographics.com%25252Fu%25253Fan_user_id%25253D%252524UID 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.myitview.com/
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip4FV-LKR#O:^sF='$5w8^-wsas%]@_6; sess=1; icu=ChIIzagDEAoYASABKAEw-9_vhAUQ-9_vhAUYAA..
HTTP/1.1 302 Found

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=Wed, 06-Feb-2013 17:46:36 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Fri, 09-Nov-2012 17:46:36 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip4FV-LKR#O:^sF='$5w8^-wsas%]@_6; path=/; expires=Wed, 06-Feb-2013 17:46:36 GMT; domain=.adnxs.com; HttpOnly
Location: http://ib.adnxs.com/seg?add=&amp;add_code=www_myitview_com,myitview_com&amp;member=232&amp;redir=http%3A%2F%2Fib.adnxs.com%2Fgetuid%3Fhttp%253A%252F%252Fimp2.bizographics.com%252Fu%253Fan_user_id%253D%2524UID
Date: Thu, 08 Nov 2012 17:46:36 GMT
Content-Length: 0
GET /pixel?google_nid=bizo_bk_cm&google_cm HTTP/1.1

Host: cm.g.doubleclick.net
GET /pixel?google_nid=bizo_bk_cm&amp;google_cm 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.myitview.com/
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Location: http://imp2.bizographics.com/m/1640?google_gid=CAESEI0AfbA0cKdCk-CoRkrffEs&amp;google_cver=1
Date: Thu, 08 Nov 2012 17:46:36 GMT
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Server: Cookie Matcher
Content-Length: 289
X-XSS-Protection: 1; mode=block
GET /pixel?partnerID=12&key=segment&code=H9K HTTP/1.1

Host: segment-pixel.invitemedia.com
GET /pixel?partnerID=12&amp;key=segment&amp;code=H9K 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.myitview.com/
HTTP/1.1 302 Found

HTTP/1.1 302 Found
Date: Thu, 08 Nov 2012 17:46:36 GMT
Set-Cookie: uid=907fb57a-8625-4f9c-b374-8b476bdbb59b;Path=/;Domain=invitemedia.com;Expires=Fri, 08-Nov-2013 17:46:36 GMT impressions=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT clicks=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT segments=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Pragma: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC&quot;
Cache-Control: no-cache
Location: http://cm.g.doubleclick.net/pixel?google_sc&amp;google_nid=invitemedia&amp;google_cm&amp;google_hm=kH-1eoYlT5yzdItHa9u1mw==
Content-Length: 0
Connection: close
Server: Jetty(7.3.1.v20110307)
GET /seg?add=&add_code=www_myitview_com,myitview_com&member=232&redir=http%3A%2F%2Fib.adnxs.com%2Fgetuid%3Fhttp%253A%252F%252Fimp2.bizographics.com%252Fu%253Fan_user_id%253D%2524UID HTTP/1.1

Host: ib.adnxs.com
GET /seg?add=&amp;add_code=www_myitview_com,myitview_com&amp;member=232&amp;redir=http%3A%2F%2Fib.adnxs.com%2Fgetuid%3Fhttp%253A%252F%252Fimp2.bizographics.com%252Fu%253Fan_user_id%253D%2524UID 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.myitview.com/
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip4FV-LKR#O:^sF='$5w8^-wsas%]@_6; sess=1; icu=ChIIzagDEAoYASABKAEw-9_vhAUQ-9_vhAUYAA..
HTTP/1.1 302 Found

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=Wed, 06-Feb-2013 17:46:36 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Fri, 09-Nov-2012 17:46:36 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip4FV-LKR#O:^sF='$5w8^-wsas%]@_6; path=/; expires=Wed, 06-Feb-2013 17:46:36 GMT; domain=.adnxs.com; HttpOnly
Location: http://ib.adnxs.com/getuid?http%3A%2F%2Fimp2.bizographics.com%2Fu%3Fan_user_id%3D%24UID
Date: Thu, 08 Nov 2012 17:46:36 GMT
Content-Length: 0
GET /pixel?google_sc&google_nid=invitemedia&google_cm&google_hm=kH-1eoYlT5yzdItHa9u1mw== HTTP/1.1

Host: cm.g.doubleclick.net
GET /pixel?google_sc&amp;google_nid=invitemedia&amp;google_cm&amp;google_hm=kH-1eoYlT5yzdItHa9u1mw== 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.myitview.com/
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 302 Found

Content-Type: text/html; charset=UTF-8
Location: http://g-pixel.invitemedia.com/gmatcher?google_gid=CAESEE5Cd4RhtyLOx5zauejuLUM&amp;google_cver=1
Date: Thu, 08 Nov 2012 17:46:36 GMT
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Server: Cookie Matcher
Content-Length: 293
X-XSS-Protection: 1; mode=block
GET /getuid?http%3A%2F%2Fimp2.bizographics.com%2Fu%3Fan_user_id%3D%24UID HTTP/1.1

Host: ib.adnxs.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: 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.myitview.com/
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip4FV-LKR#O:^sF='$5w8^-wsas%]@_6; sess=1; icu=ChIIzagDEAoYASABKAEw-9_vhAUQ-9_vhAUYAA..
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=Wed, 06-Feb-2013 17:46:36 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Fri, 09-Nov-2012 17:46:36 GMT; domain=.adnxs.com; HttpOnly
Location: http://imp2.bizographics.com/u?an_user_id=5858721859426781856
Date: Thu, 08 Nov 2012 17:46:36 GMT
Content-Length: 0
GET /ptj?member=988&inv_code=ns.myitview&size=728x90&referrer=http%3A%2F%2Fadsmmi.net%2Fwww%2Fdelivery%2Fafr.php%3Frefresh%3D60%26zoneid%3D47%26target%3D_blank&redir=http%3A%2F%2Fad.doubleclick.net%2Fadj%2Fns.myitview%2Fgeneral%3Bctx%3Dunprocessed%3Bips%3Dunprocessed%3Bppos%3Dbtf%3Bkw%3D%3Btile%3D1%3Bdcopt%3Dist%3Bsz%3D728x90%3Bord%3D5401074574076925%3Ban%3D%7BPRICEBUCKET%7D%3Bbu%3D%7BBUYER_MEMBER_ID%7D%3Bbr%3D%7BBRAND_ID%7D HTTP/1.1

Host: ib.adnxs.com
GET /ptj?member=988&amp;inv_code=ns.myitview&amp;size=728x90&amp;referrer=http%3A%2F%2Fadsmmi.net%2Fwww%2Fdelivery%2Fafr.php%3Frefresh%3D60%26zoneid%3D47%26target%3D_blank&amp;redir=http%3A%2F%2Fad.doubleclick.net%2Fadj%2Fns.myitview%2Fgeneral%3Bctx%3Dunprocessed%3Bips%3Dunprocessed%3Bppos%3Dbtf%3Bkw%3D%3Btile%3D1%3Bdcopt%3Dist%3Bsz%3D728x90%3Bord%3D5401074574076925%3Ban%3D%7BPRICEBUCKET%7D%3Bbu%3D%7BBUYER_MEMBER_ID%7D%3Bbr%3D%7BBRAND_ID%7D 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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=47&amp;target=_blank
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip4FV-LKR#O:^sF='$5w8^-wsas%]@_6; sess=1; icu=ChIIzagDEAoYASABKAEw-9_vhAUQ-9_vhAUYAA..
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=Wed, 06-Feb-2013 17:46:36 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Fri, 09-Nov-2012 17:46:36 GMT; domain=.adnxs.com; HttpOnly icu=ChIIzagDEAoYAiACKAIw_N_vhAUQ_N_vhAUYAQ..; path=/; expires=Wed, 06-Feb-2013 17:46:36 GMT; domain=.adnxs.com; HttpOnly acb722973=lbMRZkI/7ZHC=j@AtaS(6&gt;RH9?enc=mpmZmZmZ8T8Tg8DKoUXuPwAAAKCZmfE_E4PAyqFF7j-amZmZmZnxP-6uhe4IxRIDoArzhH1cTlH875tQAAAAACsaCADcAwAANQEAAAIAAAD3pTYAtiYBAAAAAQBVU0QAVVNEANgCWgDIJAAA3j8BAgUCAQUAAAAAkCi-aAAAAAA.&amp;tt_code=ns.myitview&amp;cnd=%21MCfU-wiC7CQQ98vaARgAILbNBDAAOMhJQABItQJQq7QgWABg2AZoAHDIA3hkgAHeCogBBJABAZgBAaABAagBA7ABALkBmpmZmZmZ8T_BAZqZmZmZmfE_yQG5mZmZmZm5P9kBAAAAAAAA8D_gAQA.&amp;udj=uf%28%27a%27%2C+40624%2C+1352396796%29%3Buf%28%27r%27%2C+3581431%2C+1352396796%29%3Bppv%2827656%2C+%27221455973846724334%27%2C+1352396796%2C+1352655996%2C+603650%2C+75446%2C+0%2C+0%2C+604800%29%3B&amp;ccd=%21BwY9NQiC7CQQ98vaARi2zQQgAA..&amp;vpid=134&amp;media_subtypes=1&amp;dlo=1; path=/; expires=Fri, 09-Nov-2012 17:46:36 GMT; domain=.adnxs.com; HttpOnly anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip4FV-LKR#O:^sF='$5w8^-wsas%]@_6; path=/; expires=Wed, 06-Feb-2013 17:46:36 GMT; domain=.adnxs.com; HttpOnly
Date: Thu, 08 Nov 2012 17:46:36 GMT
Content-Length: 235
GET /m/1640?google_gid=CAESEI0AfbA0cKdCk-CoRkrffEs&google_cver=1 HTTP/1.1

Host: imp2.bizographics.com
GET /m/1640?google_gid=CAESEI0AfbA0cKdCk-CoRkrffEs&amp;google_cver=1 HTTP/1.1

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

Content-Type: image/gif;charset=UTF-8
Cache-Control: no-cache
Date: Thu, 08 Nov 2012 17:46:43 GMT
P3P: CP=&quot;NON DSP COR CURa ADMo DEVo TAIo PSAo PSDo OUR DELa IND PHY ONL UNI COM NAV DEM&quot;
Pragma: no-cache
Server: nginx/1.2.0
Set-Cookie: BizoUserMatchHistory=1oFfpT62RAr3WSGVEEUr9pQncSvRMpZFOtHiia4Y7b2ZLzYFJzoU1Xgieie; Domain=.bizographics.com; Expires=Fri, 10-May-2013 05:46:43 GMT; Path=/
Content-Length: 46
Connection: keep-alive
GET /plugins/system/rokbox/themes/light/right.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:02 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 02:47:22 GMT
Etag: &quot;13a01ba-525-4928abaaec280&quot;
Accept-Ranges: bytes
Content-Length: 1317
Connection: close
X-Pad: avoid browser bug
GET /plugins/system/rokbox/themes/light/tl.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:02 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 02:47:22 GMT
Etag: &quot;13a01a8-5f4-4928abaaec280&quot;
Accept-Ranges: bytes
Content-Length: 1524
Connection: close
X-Pad: avoid browser bug
GET /plugins/system/rokbox/themes/light/top.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:02 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 02:47:22 GMT
Etag: &quot;13a01ab-536-4928abaaec280&quot;
Accept-Ranges: bytes
Content-Length: 1334
Connection: close
X-Pad: avoid browser bug
GET /plugins/system/rokbox/themes/light/bl.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:02 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 02:47:22 GMT
Etag: &quot;13a01bb-612-4928abaaec280&quot;
Accept-Ranges: bytes
Content-Length: 1554
Connection: close
X-Pad: avoid browser bug
GET /plugins/system/rokbox/themes/light/tr.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:02 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 02:47:22 GMT
Etag: &quot;13a01aa-643-4928abaaec280&quot;
Accept-Ranges: bytes
Content-Length: 1603
Connection: close
X-Pad: avoid browser bug
GET /plugins/system/rokbox/themes/light/left.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:02 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 02:47:22 GMT
Etag: &quot;13a01af-524-4928abaaec280&quot;
Accept-Ranges: bytes
Content-Length: 1316
Connection: close
X-Pad: avoid browser bug
GET /www/delivery/fpi.js HTTP/1.1

Host: ap.lijit.com

User-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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=45&amp;target=_blank
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Thu, 08 Nov 2012 17:46:36 GMT
Server: Apache/2.2.22 (Ubuntu)
Accept-Ranges: bytes
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Expires: Fri, 20 Mar 2009 21:49:56 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Pragma: no-cache
Content-Length: 2009
Connection: close
GET /adj/ns.myitview/general;ctx=unprocessed;ips=unprocessed;ppos=btf;kw=;tile=1;dcopt=ist;sz=728x90;ord=5401074574076925;an=90;bu=309;br=5064 HTTP/1.1

Host: ad.doubleclick.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=47&amp;target=_blank
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
Google-LineItem-Id: 43638572
Google-Creative-Id: 26391152372
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Date: Thu, 08 Nov 2012 17:46:36 GMT
Server: cafe
Cache-Control: private
Content-Length: 310
X-XSS-Protection: 1; mode=block
GET /u?an_user_id=5858721859426781856 HTTP/1.1

Host: imp2.bizographics.com

User-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.myitview.com/
Cookie: BizoID=94f0ba7f-5526-4864-b807-ed716aa187d6; BizoData=fS4m5xZ9gvDQo0gmm2e2mtQb1MaQBj6WV4QlNoWqeHUqwKPXXDYVmk6W48vvQFWvELdSO08xXBSdkf8kozH7KfqHVFTH1xMAaj5XcunNcMDa7Re6IGD4lBnorHlyPehiiAd6xyMUDLG60DXBtcKIKf8RNoPpIiiRDhBQJfVxzXEsgW11pRw3kybRTbFa3K8N9diipUq8ovqS7x0VsE8QVEhUSj6YBLOHgipxZsOd4RZUlMFJUns5QXvYqeDbktoHqQJoTZm1NA3xyPatOS524kcdoqeV13mqW4VUMIMgtaHAPskie; BizoNetworkPartnerIndex=-1
HTTP/1.1 200 OK

Content-Type: image/gif;charset=UTF-8
Cache-Control: no-cache
Date: Thu, 08 Nov 2012 17:46:43 GMT
P3P: CP=&quot;NON DSP COR CURa ADMo DEVo TAIo PSAo PSDo OUR DELa IND PHY ONL UNI COM NAV DEM&quot;
Pragma: no-cache
Server: nginx/1.2.0
Content-Length: 46
Connection: keep-alive
GET /gmatcher?google_gid=CAESEE5Cd4RhtyLOx5zauejuLUM&google_cver=1 HTTP/1.1

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

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

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

Host: ads.rubiconproject.com

User-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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=47&amp;target=_blank
Cookie: rpb=14240%3D1; put_2676=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0
HTTP/1.1 200 OK

Content-Type: text/javascript
Server: Apache/2.2.3 (CentOS)
X-Powered-By: PHP/5.2.3
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 3524
Cneonction: close
Cache-Control: max-age=86400
Expires: Fri, 09 Nov 2012 17:46:36 GMT
Date: Thu, 08 Nov 2012 17:46:36 GMT
Connection: keep-alive
GET /www/images/724fc47cca4bfd477a921f4553e8638c.swf HTTP/1.1

Host: adsmmi.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=43&amp;target=_blank
Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; OAID=d16676dd1c2704b0ad21077da28bf740
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 19:46:25 GMT
Server: Apache/2.2.17 (Fedora)
Content-Length: 321
Connection: close
GET /www/delivery/lg.php?bannerid=91&campaignid=31&zoneid=42&loc=1&referer=http%3A%2F%2Fwww.myitview.com%2F&cb=2b42c5886a HTTP/1.1

Host: adsmmi.net
GET /www/delivery/lg.php?bannerid=91&amp;campaignid=31&amp;zoneid=42&amp;loc=1&amp;referer=http%3A%2F%2Fwww.myitview.com%2F&amp;cb=2b42c5886a 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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=42&amp;target=_blank
Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; OAID=d16676dd1c2704b0ad21077da28bf740
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 19:46:25 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: OAID=d16676dd1c2704b0ad21077da28bf740; expires=Fri, 08-Nov-2013 19:46:25 GMT; path=/
Content-Length: 43
Connection: close
GET /www/delivery/lg.php?bannerid=77&campaignid=26&zoneid=45&loc=1&referer=http%3A%2F%2Fwww.myitview.com%2F&cb=3a85e5a528 HTTP/1.1

Host: adsmmi.net
GET /www/delivery/lg.php?bannerid=77&amp;campaignid=26&amp;zoneid=45&amp;loc=1&amp;referer=http%3A%2F%2Fwww.myitview.com%2F&amp;cb=3a85e5a528 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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=45&amp;target=_blank
Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; OAID=d16676dd1c2704b0ad21077da28bf740
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 19:46:25 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: OAID=d16676dd1c2704b0ad21077da28bf740; expires=Fri, 08-Nov-2013 19:46:25 GMT; path=/
Content-Length: 43
Connection: close
GET /www/delivery/fl.js HTTP/1.1

Host: adsmmi.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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=43&amp;target=_blank
Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; OAID=d16676dd1c2704b0ad21077da28bf740
HTTP/1.1 200 OK

Content-Type: text/javascript
Date: Thu, 08 Nov 2012 19:46:25 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Tue, 08 May 2012 23:51:06 GMT
Etag: &quot;a50ec0-1a33-4bf8f0f5fae80&quot;
Accept-Ranges: bytes
Content-Length: 6707
Connection: close
GET /plugins/system/rokbox/themes/light/br.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:03 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 02:47:22 GMT
Etag: &quot;13a01b0-616-4928abaaec280&quot;
Accept-Ranges: bytes
Content-Length: 1558
Connection: close
X-Pad: avoid browser bug
GET /plugins/system/rokbox/themes/light/bottom.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:03 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 02:47:22 GMT
Etag: &quot;13a01b5-537-4928abaaec280&quot;
Accept-Ranges: bytes
Content-Length: 1335
Connection: close
X-Pad: avoid browser bug
GET /templates/rt_solarsentinel_j15/images/body/white/light-close.png HTTP/1.1

Host: www.myitview.com

User-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.myitview.com/plugins/system/CssJsCompress/css.php?css=c92e40de8875a80526d3daf52b9f445f.css.gz
Cookie: 0ee1648157e1984263689bfc9cb629dd=8vfk8jls6nct9vge6ieqt78214; __utma=41911358.1051833061.1352396793.1352396793.1352396793.1; __utmb=41911358.2.10.1352396793; __utmc=41911358; __utmz=41911358.1352396793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-886871120-1352396793289
HTTP/1.1 200 OK

Content-Type: image/png
Date: Thu, 08 Nov 2012 10:45:03 GMT
Server: Apache/2.2.17 (Fedora)
Last-Modified: Thu, 14 Oct 2010 13:40:11 GMT
Etag: &quot;13a0eef-659-49293d95644c0&quot;
Accept-Ranges: bytes
Content-Length: 1625
Connection: close
X-Pad: avoid browser bug
GET /ping.js?url=http%3A%2F%2Fwww.myitview.com%2F&id=b0979864e7&u=mozilla%2F5.0%20(windows%3B%20u%3B%20windows%20nt%206.1%3B%20en-us%3B%20rv%3A1.9.2.13)%20gecko%2F20101203%20firefox%2F3.6.13&x=1352396796373&c=0&t=0&v=0&m=0&vn=2.1.2 HTTP/1.1

Host: ping.crowdscience.com
GET /ping.js?url=http%3A%2F%2Fwww.myitview.com%2F&amp;id=b0979864e7&amp;u=mozilla%2F5.0%20(windows%3B%20u%3B%20windows%20nt%206.1%3B%20en-us%3B%20rv%3A1.9.2.13)%20gecko%2F20101203%20firefox%2F3.6.13&amp;x=1352396796373&amp;c=0&amp;t=0&amp;v=0&amp;m=0&amp;vn=2.1.2 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.myitview.com/
HTTP/1.1 200 OK

Content-Type: text/plain
Content-Encoding: gzip
Date: Thu, 08 Nov 2012 17:46:55 GMT
P3P: CP=&quot;NOI DSP COR NID DEVa PSAi OUR STP OTC&quot;,policyref=&quot;/w3c/p3p.xml&quot;
Server: Apache
Set-Cookie: __csv=18819849f527eede; Domain=.crowdscience.com; expires=Wed, 06 Feb 2013 17:46:55; Path=/
Vary: Accept-Encoding
Content-Length: 319
Connection: keep-alive
GET /pixel?adv=76762&code=H9K&t=2&code=myitview.com HTTP/1.1

Host: ad.yieldmanager.com
GET /pixel?adv=76762&amp;code=H9K&amp;t=2&amp;code=myitview.com 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.myitview.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:36 GMT
Server: YTS/1.20.13
X-RightMedia-Hostname: raptor0390.rm.bf1.yahoo.com
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Set-Cookie: uid=uid=3e0f621c-29cc-11e2-9b1a-5fc492a74b33&amp;_hmacv=1&amp;_salt=4109385829&amp;_keyid=k1&amp;_hmac=5de741f21119efc6334ffd360a16a0a5fb30cf69; path=/; expires=Sat, 08-Dec-2012 17:46:36 GMT
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Vary: *
Last-Modified: Thu, 08 Nov 2012 17:46:36 GMT
Expires: Thu, 08 Nov 2012 17:46:36 GMT
Pragma: no-cache
Content-Encoding: gzip
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
GET /a/9358/16370/39994-2.js?cb=0.2635716752238161&tk_st=1&p_screen_res=1176x885&rp_s=c&rf=http%3A//www.myitview.com/ HTTP/1.1

Host: optimized-by.rubiconproject.com
GET /a/9358/16370/39994-2.js?cb=0.2635716752238161&amp;tk_st=1&amp;p_screen_res=1176x885&amp;rp_s=c&amp;rf=http%3A//www.myitview.com/ 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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=47&amp;target=_blank
Cookie: rpb=14240%3D1; put_2676=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0
HTTP/1.1 200 OK

Content-Type: text/javascript
Date: Thu, 08 Nov 2012 17:46:36 GMT
Server: RAS/1.3 (Unix)
P3P: CP=&quot;NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT&quot;, CP=&quot;NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT&quot;
Set-Cookie: ruid=591d7fa0509beffcc39f8cde1c2389^1^1352396796^3282013406; expires=Wed, 06-Feb-2013 17:46:36 GMT; max-age=7776000; path=/; domain=.rubiconproject.com; rsid=FsGVVT7or4ROW+ngdEkfzaBxZaiThR5ysPrTF1nz/jF4XeyaeR+kEfIOcY4imqkw3bZHonF7znOnaY0sdoI1UZAbqq46KBSde8i1/YqyHdw=; path=/; domain=.rubiconproject.com; rdk=9358/16370; expires=Thu, 08-Nov-2012 18:46:36 GMT; max-age=60; path=/; domain=.rubiconproject.com rdk2=0; expires=Thu, 08-Nov-2012 18:46:36 GMT; max-age=10; path=/; domain=.rubiconproject.com ses2=16370^1; expires=Fri, 09-Nov-2012 00:59:59 GMT; max-age=51203; path=/; domain=.rubiconproject.com
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: Wed, 17 Sep 1975 21:32:10 GMT
Keep-Alive: timeout=5, max=59
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /b?c1=8&c2=6135404&c3=20&c4=16370&c10=3370990&ns__t=1352396796741&ns_c=UTF-8&c8=Advertisement&c7=http%3A%2F%2Fadsmmi.net%2Fwww%2Fdelivery%2Fafr.php%3Frefresh%3D60%26zoneid%3D47%26target%3D_blank&c9=http%3A%2F%2Fwww.myitview.com%2F HTTP/1.1

Host: b.scorecardresearch.com
GET /b?c1=8&amp;c2=6135404&amp;c3=20&amp;c4=16370&amp;c10=3370990&amp;ns__t=1352396796741&amp;ns_c=UTF-8&amp;c8=Advertisement&amp;c7=http%3A%2F%2Fadsmmi.net%2Fwww%2Fdelivery%2Fafr.php%3Frefresh%3D60%26zoneid%3D47%26target%3D_blank&amp;c9=http%3A%2F%2Fwww.myitview.com%2F HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=47&amp;target=_blank
Cookie: UID=3a2b625-195.159.219.9-1352396793; UIDR=1352396793
HTTP/1.1 204 No Content

HTTP/1.1 204 No Content
Content-Length: 0
Date: Thu, 08 Nov 2012 17:46:36 GMT
Connection: keep-alive
Pragma: no-cache
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, no-store, proxy-revalidate
GET /partner/scripts/rubicon/emily.html?rtb_ext=1&pc=9358/16370&geo=eu&co=no HTTP/1.1

Host: tap2-cdn.rubiconproject.com
GET /partner/scripts/rubicon/emily.html?rtb_ext=1&amp;pc=9358/16370&amp;geo=eu&amp;co=no 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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=47&amp;target=_blank
Cookie: rpb=14240%3D1; put_2676=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0; ruid=591d7fa0509beffcc39f8cde1c2389^1^1352396796^3282013406; rsid=FsGVVT7or4ROW+ngdEkfzaBxZaiThR5ysPrTF1nz/jF4XeyaeR+kEfIOcY4imqkw3bZHonF7znOnaY0sdoI1UZAbqq46KBSde8i1/YqyHdw=; rdk=9358/16370; rdk2=0; ses2=16370^1
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Server: TRP Apache-Coyote/1.1
P3P: CP=&quot;NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT&quot;
Last-Modified: Thu, 08 Nov 2012 04:30:48 GMT
Content-Encoding: gzip
Cache-Control: max-age=600
Expires: Thu, 08 Nov 2012 17:56:36 GMT
Date: Thu, 08 Nov 2012 17:46:36 GMT
Content-Length: 5050
Connection: keep-alive
Vary: Accept-Encoding
GET /delivery/fp?&ljtiframe=1&loc=http%3A%2F%2Fadsmmi.net%2Fwww%2Fdelivery%2Fafr.php%3Frefresh%3D60%26zoneid%3D45%26target%3D_blank&od=http%3A%2F%2Fwww.myitview.com&ref=http%3A%2F%2Fwww.myitview.com%2F&ifr=1&z=169759&u=mymediainc HTTP/1.1

Host: www.lijit.com
GET /delivery/fp?&amp;ljtiframe=1&amp;loc=http%3A%2F%2Fadsmmi.net%2Fwww%2Fdelivery%2Fafr.php%3Frefresh%3D60%26zoneid%3D45%26target%3D_blank&amp;od=http%3A%2F%2Fwww.myitview.com&amp;ref=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;z=169759&amp;u=mymediainc 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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=45&amp;target=_blank
HTTP/1.1 200 OK

Content-Type: text/javascript
Date: Thu, 08 Nov 2012 17:46:36 GMT
Server: PWS/8.0.9.6
Transfer-Encoding: chunked
X-Px: ms h0-s1070.p7-fra ( fra-ti2-n21), rf-ms fra-ti2-n21 ( origin&gt;CONN)
Cache-Control: max-age=7200
Expires: Thu, 08 Nov 2012 19:46:36 GMT
Age: 0
Content-Encoding: gzip
Vary: Accept-Encoding
Connection: keep-alive
GET /campaigns/100/11/58/88/1338395464adc_adoption_balloons_728x90.jpg HTTP/1.1

Host: assets.rubiconproject.com

User-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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=47&amp;target=_blank
Cookie: rpb=14240%3D1; put_2676=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0; ruid=591d7fa0509beffcc39f8cde1c2389^1^1352396796^3282013406; rsid=FsGVVT7or4ROW+ngdEkfzaBxZaiThR5ysPrTF1nz/jF4XeyaeR+kEfIOcY4imqkw3bZHonF7znOnaY0sdoI1UZAbqq46KBSde8i1/YqyHdw=; rdk=9358/16370; rdk2=0; ses2=16370^1
HTTP/1.1 200 OK

Content-Type: image/jpeg
Server: Apache/2.2.3 (CentOS)
Last-Modified: Wed, 30 May 2012 16:42:57 GMT
Etag: &quot;12d0bd-2b9c-4c143a4b2e640&quot;
Accept-Ranges: bytes
Content-Length: 11164
Cneonction: close
Date: Thu, 08 Nov 2012 17:46:36 GMT
Connection: keep-alive
GET /www/images/724fc47cca4bfd477a921f4553e8638c.swf HTTP/1.1

Host: adsmmi.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=43&amp;target=_blank
Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; OAID=d16676dd1c2704b0ad21077da28bf740
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Thu, 08 Nov 2012 19:46:26 GMT
Server: Apache/2.2.17 (Fedora)
Content-Length: 321
Connection: close
GET /www/delivery/lg.php?bannerid=106&campaignid=35&zoneid=43&loc=http%3A%2F%2Fwww.myitview.com%2F&oxfb=1&cb=02ff9a7973 HTTP/1.1

Host: adsmmi.net
GET /www/delivery/lg.php?bannerid=106&amp;campaignid=35&amp;zoneid=43&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;oxfb=1&amp;cb=02ff9a7973 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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=43&amp;target=_blank
Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; OAID=d16676dd1c2704b0ad21077da28bf740
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 19:46:26 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: OAID=d16676dd1c2704b0ad21077da28bf740; expires=Fri, 08-Nov-2013 19:46:26 GMT; path=/
Content-Length: 43
Connection: close
GET /p?c1=8&c2=3005693&c3=102&c4=&c5=&c6=&c15=&cv=2.0&cj=1&ljt_r=828942026 HTTP/1.1

Host: b.scorecardresearch.com
GET /p?c1=8&amp;c2=3005693&amp;c3=102&amp;c4=&amp;c5=&amp;c6=&amp;c15=&amp;cv=2.0&amp;cj=1&amp;ljt_r=828942026 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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=45&amp;target=_blank
Cookie: UID=3a2b625-195.159.219.9-1352396793; UIDR=1352396793
HTTP/1.1 200 OK

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

Host: pixel.quantserve.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=45&amp;target=_blank
Cookie: mc=509beff9-653e3-f8718-4a00f
HTTP/1.1 200 OK

Content-Type: image/gif
Connection: close
Cache-Control: private, no-cache, no-store, proxy-revalidate
Pragma: no-cache
Expires: Fri, 04 Aug 1978 12:00:00 GMT
Content-Length: 35
Date: Thu, 08 Nov 2012 17:46:36 GMT
Server: QS
GET /r1/ruum HTTP/1.1

Host: rp.gwallet.com

User-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://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?rtb_ext=1&amp;pc=9358/16370&amp;geo=eu&amp;co=no
HTTP/1.1 302 Found

Content-Type: application/octet-stream
Content-Length: 0
Server: radiumone/1.2
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Expires: Tue, 29 Oct 2002 19:50:44 GMT
Location: http://pixel.rubiconproject.com/tap.php?v=7935&amp;nid=2271&amp;expires=30&amp;put=QEZcQAM8gJydcfsouJk6KboXtdU
Pragma: no-cache
P3P: CP=&quot;RadiumOne does not have a P3P policy. For information on our privacy policy please visit http://radiumone.com/about/privacy.html&quot;
Set-Cookie: ra1_uid=5562978853472034304; Expires=Fri, 08-Nov-2013 17:46:37 GMT; Path=/; Domain=gwallet.com; Version=1
GET /int/integration?pixel=303852&nid=302660 HTTP/1.1

Host: i.ctnsnet.com
GET /int/integration?pixel=303852&amp;nid=302660 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://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?rtb_ext=1&amp;pc=9358/16370&amp;geo=eu&amp;co=no
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Server: Apache-Coyote/1.1
P3P: CP=&quot;NOI DSP COR NID CUR OUR NOR&quot;
Set-Cookie: px=AAAEouxQw3z9; path=/; domain=.ctnsnet.com; expires=Fri, 08-Mar-2013 17:46:37 GMT; pb=AAAEowJQw3z9; path=/; domain=.ctnsnet.com; expires=Mon, 07-Jan-2013 17:46:37 GMT; cid_41c442f26bd8459f94d2a76f62ad11a4=1; path=/; domain=.ctnsnet.com; expires=Fri, 08-Nov-2013 17:46:37 GMT; opt=0; path=/; domain=.ctnsnet.com; expires=Fri, 08-Nov-2013 17:46:37 GMT;
Pragma: no-cache
Cache-Control: private, no-cache, no-store, max-age=0
Location: http://pixel.rubiconproject.com/tap.php?v=14965&amp;nid=2731&amp;put=41c442f26bd8459f94d2a76f62ad11a4&amp;expires=30
Content-Length: 0
Date: Thu, 08 Nov 2012 17:46:36 GMT
Connection: close
GET /www/delivery/lg.php?bannerid=49&campaignid=20&zoneid=47&loc=1&referer=http%3A%2F%2Fwww.myitview.com%2F&cb=46df7fb12e HTTP/1.1

Host: adsmmi.net
GET /www/delivery/lg.php?bannerid=49&amp;campaignid=20&amp;zoneid=47&amp;loc=1&amp;referer=http%3A%2F%2Fwww.myitview.com%2F&amp;cb=46df7fb12e 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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=47&amp;target=_blank
Cookie: OAGEO=NO%7C%7C%7C%7C%7C%7C%7C%7C%7C%7C; OAID=d16676dd1c2704b0ad21077da28bf740
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 19:46:26 GMT
Server: Apache/2.2.17 (Fedora)
X-Powered-By: PHP/5.3.6
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: OAID=d16676dd1c2704b0ad21077da28bf740; expires=Fri, 08-Nov-2013 19:46:26 GMT; path=/
Content-Length: 43
Connection: close
GET /partner/agent/rubicon/channels.js?cb=oz_onPixelsLoaded HTTP/1.1

Host: tap.rubiconproject.com

User-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://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?rtb_ext=1&amp;pc=9358/16370&amp;geo=eu&amp;co=no
Cookie: rpb=14240%3D1; put_2676=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0; ruid=591d7fa0509beffcc39f8cde1c2389^1^1352396796^3282013406; rsid=FsGVVT7or4ROW+ngdEkfzaBxZaiThR5ysPrTF1nz/jF4XeyaeR+kEfIOcY4imqkw3bZHonF7znOnaY0sdoI1UZAbqq46KBSde8i1/YqyHdw=; rdk=9358/16370; rdk2=0; ses2=16370^1
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=UTF-8
Date: Thu, 08 Nov 2012 17:46:37 GMT
Server: TRP Apache-Coyote/1.1
Cache-Control: no-store, no-cache, must-revalidate, private
Content-Length: 535
Set-Cookie: SERVERID=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/
Keep-Alive: timeout=5, max=177
Connection: Keep-Alive
GET /site/5969 HTTP/1.1

Host: tags.bluekai.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=45&amp;target=_blank
HTTP/1.1 302 Found

Content-Type: text/html
Date: Thu, 08 Nov 2012 17:46:37 GMT
Server: Apache/2.2.3 (CentOS)
P3P: CP=&quot;NOI DSP COR CUR ADMo DEVo PSAo PSDo OUR SAMo BUS UNI NAV&quot;, policyref=&quot;http://tags.bluekai.com/w3c/p3p.xml&quot;
Set-Cookie: bkc=KJynas5QisaCRwMf47R99h999ObR9b9=; expires=Tue, 07-May-2013 17:46:37 GMT; path=/; domain=.bluekai.com bklc=0; expires=Tue, 07-May-2013 17:46:37 GMT; path=/; domain=.bluekai.com bko=; expires=Tue, 07-May-2013 17:46:37 GMT; path=/; domain=.bluekai.com bkp1=; expires=Tue, 07-May-2013 17:46:37 GMT; path=/; domain=.bluekai.com bku=DHz99wlFZNYIfc8O; expires=Tue, 07-May-2013 17:46:37 GMT; path=/; domain=.bluekai.com bkw5=; expires=Tue, 07-May-2013 17:46:37 GMT; path=/; domain=.bluekai.com bkdc=wdc; expires=Sat, 08-Dec-2012 17:46:37 GMT; path=/; domain=.bluekai.com
Location: http://tags.bluekai.com/site/5969?dt=0&amp;r=122890864&amp;sig=2166136261&amp;bkca=KJye999999W=
BK-Server: 6e31
Content-Length: 0
GET /dmp/pixelSync?network=Rubicon HTTP/1.1

Host: pixel.sitescout.com

User-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://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?rtb_ext=1&amp;pc=9358/16370&amp;geo=eu&amp;co=no
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Server: Apache-Coyote/1.1
Location: http://ad.crwdcntrl.net/5/c=1389/pe=y?http%3A%2F%2Fpixel.sitescout.com%2Fdmp%2Fset%3Fprovider%3D1%26audiences%3D%24%7Baud_ids%7D%26r%3Dhttp%253A%252F%252Fpixel.rubiconproject.com%252Ftap.php%253Fv%253D7430%2526nid%253D2238%2526put%253D%2524userId%2526expires%253D360
Content-Length: 0
Date: Thu, 08 Nov 2012 17:46:37 GMT
GET ///www/delivery/ajs.php?zoneid=169759&username=mymediainc&numAds=1&premium=1&eleid=lijit_region_169759&abf=true&tid=169759_1352396796933ee9fff434566&lijit_kw=&cb=3879664183&flv=10.0.45&time=18:46:36&ifr=1&loc=http%3A%2F%2Fwww.myitview.com%2F&od=myitview.com&referer=http%3A%2F%2Fwww.myitview.com%2F HTTP/1.1

Host: apr.lijit.com
GET ///www/delivery/ajs.php?zoneid=169759&amp;username=mymediainc&amp;numAds=1&amp;premium=1&amp;eleid=lijit_region_169759&amp;abf=true&amp;tid=169759_1352396796933ee9fff434566&amp;lijit_kw=&amp;cb=3879664183&amp;flv=10.0.45&amp;time=18:46:36&amp;ifr=1&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;od=myitview.com&amp;referer=http%3A%2F%2Fwww.myitview.com%2F HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=45&amp;target=_blank
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=UTF-8
Date: Thu, 08 Nov 2012 17:46:37 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljt_reader=f64cddcc104b9082fb7e807d1f807795; expires=Fri, 08-Nov-2013 17:46:37 GMT; path=/; domain=.lijit.com
Expires: Fri, 20 Mar 2009 21:49:56 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 235
Connection: close
GET /site/5969?dt=0&r=122890864&sig=2166136261&bkca=KJye999999W= HTTP/1.1

Host: tags.bluekai.com
GET /site/5969?dt=0&amp;r=122890864&amp;sig=2166136261&amp;bkca=KJye999999W= 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://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=45&amp;target=_blank
Cookie: bkc=KJynas5QisaCRwMf47R99h999ObR9b9=; bklc=0; bko=; bkp1=; bku=DHz99wlFZNYIfc8O; bkw5=; bkdc=wdc
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:37 GMT
Server: Apache/2.2.3 (CentOS)
P3P: CP=&quot;NOI DSP COR CUR ADMo DEVo PSAo PSDo OUR SAMo BUS UNI NAV&quot;, policyref=&quot;http://tags.bluekai.com/w3c/p3p.xml&quot;
Expires: Fri, 09 Nov 2012 17:46:37 GMT
Cache-Control: max-age=86400, private
Set-Cookie: bkc=KJpM8sJQteb5QKcFI2AOM9y1eJh94rkDPcTYsC2WydiOTQy1GRKRDwQ4+bc0lbwhRNQQIGazOQ9qMuee; expires=Tue, 07-May-2013 17:46:37 GMT; path=/; domain=.bluekai.com bklc=509beffd; expires=Tue, 07-May-2013 17:46:37 GMT; path=/; domain=.bluekai.com bkdc=wdc; expires=Sat, 08-Dec-2012 17:46:37 GMT; path=/; domain=.bluekai.com
BK-Server: a781
Content-Length: 62
GET /5/c=1389/pe=y?http%3A%2F%2Fpixel.sitescout.com%2Fdmp%2Fset%3Fprovider%3D1%26audiences%3D%24%7Baud_ids%7D%26r%3Dhttp%253A%252F%252Fpixel.rubiconproject.com%252Ftap.php%253Fv%253D7430%2526nid%253D2238%2526put%253D%2524userId%2526expires%253D360 HTTP/1.1

Host: ad.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://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?rtb_ext=1&amp;pc=9358/16370&amp;geo=eu&amp;co=no
HTTP/1.1 302 Found

Content-Type: text/plain; charset=UTF-8
Date: Thu, 08 Nov 2012 17:46:37 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.84
Location: http://pixel.sitescout.com/dmp/set?provider=1&amp;audiences=&amp;r=http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D7430%26nid%3D2238%26put%3D%24userId%26expires%3D360
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 20
GET /tap.php?v=14965&nid=2731&put=41c442f26bd8459f94d2a76f62ad11a4&expires=30 HTTP/1.1

Host: pixel.rubiconproject.com
GET /tap.php?v=14965&amp;nid=2731&amp;put=41c442f26bd8459f94d2a76f62ad11a4&amp;expires=30 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://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?rtb_ext=1&amp;pc=9358/16370&amp;geo=eu&amp;co=no
Cookie: rpb=14240%3D1; rpx=14240%3D24447%2C0%2C1%2C%2C; put_2676=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0; ruid=591d7fa0509beffcc39f8cde1c2389^1^1352396796^3282013406; rsid=FsGVVT7or4ROW+ngdEkfzaBxZaiThR5ysPrTF1nz/jF4XeyaeR+kEfIOcY4imqkw3bZHonF7znOnaY0sdoI1UZAbqq46KBSde8i1/YqyHdw=; rdk=9358/16370; rdk2=0; ses2=16370^1
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:37 GMT
Server: Apache/2.2.3 (CentOS)
X-Powered-By: PHP/5.3.3
P3P: CP=&quot;NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT&quot;
Set-Cookie: rpb=14240%3D1%2614965%3D1; expires=Sat, 08-Dec-2012 17:46:37 GMT; path=/; domain=.rubiconproject.com rpx=14240%3D24447%2C0%2C1%2C%2C%2614965%3D25017%2C0%2C1%2C%2C; expires=Sat, 08-Dec-2012 17:46:37 GMT; path=/; domain=.pixel.rubiconproject.com put_2731=41c442f26bd8459f94d2a76f62ad11a4; expires=Sat, 08-Dec-2012 17:46:37 GMT; path=/; domain=.rubiconproject.com
Content-Length: 49
Keep-Alive: timeout=30, max=9761
Connection: Keep-Alive
GET /tap.php?v=7935&nid=2271&expires=30&put=QEZcQAM8gJydcfsouJk6KboXtdU HTTP/1.1

Host: pixel.rubiconproject.com
GET /tap.php?v=7935&amp;nid=2271&amp;expires=30&amp;put=QEZcQAM8gJydcfsouJk6KboXtdU 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://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?rtb_ext=1&amp;pc=9358/16370&amp;geo=eu&amp;co=no
Cookie: rpb=14240%3D1; rpx=14240%3D24447%2C0%2C1%2C%2C; put_2676=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0; ruid=591d7fa0509beffcc39f8cde1c2389^1^1352396796^3282013406; rsid=FsGVVT7or4ROW+ngdEkfzaBxZaiThR5ysPrTF1nz/jF4XeyaeR+kEfIOcY4imqkw3bZHonF7znOnaY0sdoI1UZAbqq46KBSde8i1/YqyHdw=; rdk=9358/16370; rdk2=0; ses2=16370^1
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:37 GMT
Server: Apache/2.2.3 (CentOS)
X-Powered-By: PHP/5.3.3
P3P: CP=&quot;NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT&quot;
Set-Cookie: rpb=14240%3D1%267935%3D1; expires=Sat, 08-Dec-2012 17:46:37 GMT; path=/; domain=.rubiconproject.com rpx=14240%3D24447%2C0%2C1%2C%2C%267935%3D25017%2C0%2C1%2C%2C; expires=Sat, 08-Dec-2012 17:46:37 GMT; path=/; domain=.pixel.rubiconproject.com put_2271=QEZcQAM8gJydcfsouJk6KboXtdU; expires=Sat, 08-Dec-2012 17:46:37 GMT; path=/; domain=.rubiconproject.com
Content-Length: 49
Keep-Alive: timeout=30, max=9857
Connection: Keep-Alive
GET /beacon?viewId=13523967972739a8520855d3a&rand=1352396797273&uri=http://www.lijit.com/users/mymediainc&informer=10017205&type=fpads&loc=http%3A%2F%2Fwww.myitview.com%2F&ifr=1&v=1.0&rr=http%3A%2F%2Fwww.myitview.com%2F HTTP/1.1

Host: vbp6iad3.lijit.com
GET /beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://adsmmi.net/www/delivery/afr.php?refresh=60&amp;zoneid=45&amp;target=_blank
Cookie: ljt_reader=f64cddcc104b9082fb7e807d1f807795
HTTP/1.0 200 OK

Content-Type: text/html
Server: Lijit Blackbird 0.0.2
Connection: close
Cache-Control: no-cache, no-store, must-revalidate, max-age=0
Content-Length: 1142
Set-Cookie: tpro=eJxNkMtugzAQRf9l1lZkAiaU32h2VWVZZgBL2EY2VKoi%2Fr3joYmyO%2FO4dx4PyG7DDP3Xt4C4zZigf4CPg7ZxDxv0UoDfnEemH0zZxQA9wCEg4YgpuTB9okl2vmPy%2F0ZriqNbsFi5YKNnqqTU67JTi7xcbwJaqSnFUSeglrqVz5LUNXPV0RgzsbxWuvkoyVqAenNSpNXVtbAkrii4sZa403XDErKxcVnwtJqSGXS2M7ept5K8NAJCDCeqoprdMiQMRfaLPLG5lp5Cqqw3YRjOr43ozcJS8nxheZSxPNea3ZZc93o17Ux7zi6vzC1dm50Jz2PMmLTxHHXHcfwBlZh51Q%3D%3D%00;Expires=Fri, 8-Nov-13 17:46:37 GMT;Domain=localhost tpro_inst=e170f1e45365436cddf6094574804dd5;Expires=Fri, 8-Nov-13 17:46:37 GMT;Domain=localhost
GET /di.php?v=2372|0||2373||2374|0||&r=3761|0,3169,3578,3577,2110,2195,2196,2197,2579,2198,4134,3734,2199,2364,2362,2363,2200,3810,2111,2494,2201,3513,2202,2496,2202,2496,2203,2204,2189,2112,2497,2205,2355,2495,5838,3811,3512,2109,3812,2239,2190,2206,2113,2206,2113,4552,2765,6184,2240,4105,4193,2372,2373,2374,2375, HTTP/1.1

Host: pixel.rubiconproject.com
GET /di.php?v=2372|0||2373||2374|0||&amp;r=3761|0,3169,3578,3577,2110,2195,2196,2197,2579,2198,4134,3734,2199,2364,2362,2363,2200,3810,2111,2494,2201,3513,2202,2496,2202,2496,2203,2204,2189,2112,2497,2205,2355,2495,5838,3811,3512,2109,3812,2239,2190,2206,2113,2206,2113,4552,2765,6184,2240,4105,4193,2372,2373,2374,2375, 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://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?rtb_ext=1&amp;pc=9358/16370&amp;geo=eu&amp;co=no
Cookie: rpb=14240%3D1; rpx=14240%3D24447%2C0%2C1%2C%2C; put_2676=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0; ruid=591d7fa0509beffcc39f8cde1c2389^1^1352396796^3282013406; rsid=FsGVVT7or4ROW+ngdEkfzaBxZaiThR5ysPrTF1nz/jF4XeyaeR+kEfIOcY4imqkw3bZHonF7znOnaY0sdoI1UZAbqq46KBSde8i1/YqyHdw=; rdk=9358/16370; rdk2=0; ses2=16370^1
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:37 GMT
Server: Apache/2.2.3 (CentOS)
X-Powered-By: PHP/5.3.3
P3P: CP=&quot;NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT&quot;
Set-Cookie: rpb=14240%3D1%262373%3D1; expires=Tue, 07-May-2013 17:46:37 GMT; path=/; domain=.rubiconproject.com
Content-Length: 49
Keep-Alive: timeout=30, max=9800
Connection: Keep-Alive
GET /getuid?http://ce.lijit.com/merge?pid=12&3pid=$UID HTTP/1.1

Host: ib.adnxs.com
GET /getuid?http://ce.lijit.com/merge?pid=12&amp;3pid=$UID HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip4FV-LKR#O:^sF='$5w8^-wsas%]@_6; sess=1; icu=ChIIzagDEAoYAiACKAIw_N_vhAUQ_N_vhAUYAQ..; acb722973=lbMRZkI/7ZHC=j@AtaS(6&gt;RH9?enc=mpmZmZmZ8T8Tg8DKoUXuPwAAAKCZmfE_E4PAyqFF7j-amZmZmZnxP-6uhe4IxRIDoArzhH1cTlH875tQAAAAACsaCADcAwAANQEAAAIAAAD3pTYAtiYBAAAAAQBVU0QAVVNEANgCWgDIJAAA3j8BAgUCAQUAAAAAkCi-aAAAAAA.&amp;tt_code=ns.myitview&amp;cnd=%21MCfU-wiC7CQQ98vaARgAILbNBDAAOMhJQABItQJQq7QgWABg2AZoAHDIA3hkgAHeCogBBJABAZgBAaABAagBA7ABALkBmpmZmZmZ8T_BAZqZmZmZmfE_yQG5mZmZmZm5P9kBAAAAAAAA8D_gAQA.&amp;udj=uf%28%27a%27%2C+40624%2C+1352396796%29%3Buf%28%27r%27%2C+3581431%2C+1352396796%29%3Bppv%2827656%2C+%27221455973846724334%27%2C+1352396796%2C+1352655996%2C+603650%2C+75446%2C+0%2C+0%2C+604800%29%3B&amp;ccd=%21BwY9NQiC7CQQ98vaARi2zQQgAA..&amp;vpid=134&amp;media_subtypes=1&amp;dlo=1
HTTP/1.1 302 Moved

Content-Type: text/html; charset=ISO-8859-1
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Wed, 06-Feb-2013 17:46:37 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Fri, 09-Nov-2012 17:46:37 GMT; domain=.adnxs.com; HttpOnly
Location: http://ce.lijit.com/merge?pid=12&amp;3pid=5858721859426781856
Date: Thu, 08 Nov 2012 17:46:37 GMT
Content-Length: 0
GET /cm?in=1&pub=1827 HTTP/1.1

Host: p.rfihub.com
GET /cm?in=1&amp;pub=1827 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
HTTP/1.1 302 Found

HTTP/1.1 302 Found
P3P: CP=&quot;NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT&quot;
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: s6=1352396797690;Path=/;Domain=.rfihub.com;Expires=Mon, 27-Apr-15 17:46:37 GMT u=&quot;aABHwTBGw==AI3oyfww==AAABOuEhdvo=&quot;;Path=/;Domain=.rfihub.com;Expires=Mon, 27-Apr-15 17:46:37 GMT e=cr;Path=/;Domain=.rfihub.com;Expires=Mon, 27-Apr-15 17:46:37 GMT a=c638103773992962239;Path=/;Domain=.rfihub.com;Expires=Mon, 27-Apr-15 17:46:37 GMT j=c638103773992962239;Path=/;Domain=.rfihub.com r=1352396797690;Path=/;Domain=.rfihub.com;Expires=Mon, 27-Apr-15 17:46:37 GMT o=1-6pOWW_cAccS_;Path=/;Domain=.rfihub.com;Expires=Mon, 27-Apr-15 17:46:37 GMT p=1-6pOWW_cAccS_;Path=/;Domain=.rfihub.com
Location: http://ce.lijit.com/merge?pid=10&amp;3pid=638103773992962239&amp;forward=
Content-Length: 0
GET /lj_match?r=1352396797535 HTTP/1.1

Host: um.simpli.fi

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
HTTP/1.1 302 Moved Temporarily

Content-Type: text/plain
Server: nginx
Date: Thu, 08 Nov 2012 17:46:37 GMT
Transfer-Encoding: chunked
Connection: close
Set-Cookie: uid=0tb63lNLj3P621SgK02Rm1%3D%3D; path=/; expires=Fri, 08 Nov 2013 17:46:37 GMT; domain=.simpli.fi
Location: http://ce.lijit.com/merge?pid=2&amp;3pid=DEFAD6D2738F4B53A054DBFA9B914D2B
P3P: policyref=&quot;http://www.simplifi.com/w3c/Policies.xml&quot;, CP=&quot;ADMa DEVa PSAa PSDa OUR IND DSP NON COR&quot;
GET /dmp/set?provider=1&audiences=&r=http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D7430%26nid%3D2238%26put%3D%24userId%26expires%3D360 HTTP/1.1

Host: pixel.sitescout.com
GET /dmp/set?provider=1&amp;audiences=&amp;r=http%3A%2F%2Fpixel.rubiconproject.com%2Ftap.php%3Fv%3D7430%26nid%3D2238%26put%3D%24userId%26expires%3D360 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://tap2-cdn.rubiconproject.com/partner/scripts/rubicon/emily.html?rtb_ext=1&amp;pc=9358/16370&amp;geo=eu&amp;co=no
HTTP/1.1 200 OK

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: max-age=0,no-cache,no-store
Pragma: no-cache
Expires: Tue, 11 Oct 1977 12:34:56 GMT
Content-Length: 0
Date: Thu, 08 Nov 2012 17:46:37 GMT
GET /sync/img?mt_exid=17&redirect=http%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D3%263pid%3D%5BMM_UUID%5D HTTP/1.1

Host: sync.mathtag.com
GET /sync/img?mt_exid=17&amp;redirect=http%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D3%263pid%3D%5BMM_UUID%5D HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
HTTP/1.1 302 Found

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:37 GMT
Content-Length: 0
Connection: keep-alive
Server: mt2/2.6.2.2465 Sep 24 2012 22:21:34 zrh-pixel-x3 pid 0x9ff 2559
Cache-Control: no-cache
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Set-Cookie: uuid=509beffd-e32b-fc4a-2924-bc389097c2f9; domain=.mathtag.com; path=/; expires=Fri, 08-Nov-2013 17:46:37 GMT
Location: http://sync.mathtag.com/sync/img?mt_exid=17&amp;redirect=http%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D3%263pid%3D%5BMM_UUID%5D&amp;mm_bnc
GET /match?p=31&ord=20120711T025630 HTTP/1.1

Host: match.rtbidder.net
GET /match?p=31&amp;ord=20120711T025630 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
HTTP/1.1 302 Moved Temporarily

Content-Type: text/plain
Server: rtbidder
Date: Thu, 08 Nov 2012 17:46:37 GMT
Content-Length: 233
P3P: policyref=&quot;http://match.rtbidder.net/p3p.xml&quot;, CP=&quot;NOI DSP COR CURa ADMa DEVa TAIo PSAo PSDo IVAo IVDo CONo HISa TELo OUR STP&quot;
Pragma: no-cache
Set-Cookie: bsuid=%3Es0vT%5DK%40%406TN7hI; path=/; domain=.rtbidder.net; expires=Wed, 06-Feb-2013 17:46:37 GMT
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-store, no-cache
Expires: Thu, 01 Dec 1994 16:00:00 GMT
Location: http://ce.lijit.com/merge?pid=13&amp;3pid=509beffdac879c4193bebebd
GET /server/pixel.htm?fpid=13&r=1352396797535 HTTP/1.1

Host: ad.turn.com
GET /server/pixel.htm?fpid=13&amp;r=1352396797535 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://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
HTTP/1.1 200 OK

Content-Type: text/html;charset=UTF-8
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV&quot;
Cache-Control: max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0
Pragma: no-cache
Set-Cookie: uid=7592766575193689145; Domain=.turn.com; Expires=Tue, 07-May-2013 17:46:37 GMT; Path=/
Transfer-Encoding: chunked
Content-Encoding: gzip
Vary: Accept-Encoding
Date: Thu, 08 Nov 2012 17:46:37 GMT
GET /sync/img?mt_exid=17&redirect=http%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D3%263pid%3D%5BMM_UUID%5D&mm_bnc HTTP/1.1

Host: sync.mathtag.com
GET /sync/img?mt_exid=17&amp;redirect=http%3A%2F%2Fce.lijit.com%2Fmerge%3Fpid%3D3%263pid%3D%5BMM_UUID%5D&amp;mm_bnc 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://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
Cookie: uuid=509beffd-e32b-fc4a-2924-bc389097c2f9
HTTP/1.1 302 Found

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:37 GMT
Content-Length: 0
Connection: keep-alive
Server: mt2/2.6.2.2465 Sep 24 2012 22:21:34 zrh-pixel-x3 pid 0x9fd 2557
Cache-Control: no-cache
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Set-Cookie: mt_mop=17:1352396797; domain=.mathtag.com; path=/; expires=Sat, 08-Dec-2012 17:46:37 GMT
Location: http://ce.lijit.com/merge?pid=3&amp;3pid=509beffd-e32b-fc4a-2924-bc389097c2f9
GET /server/ddc.htm?uid=7592766575193689145&rnd=7664824169231617081&fpid=13&nu=y&t=&sp=n&purl=&ctid=3&cyid=11 HTTP/1.1

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

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

Content-Type: text/html;charset=UTF-8
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV&quot;
Pragma: no-cache
Content-Encoding: gzip
Cache-Control: private, no-cache, no-store, must-revalidate
Date: Thu, 08 Nov 2012 17:46:37 GMT
Content-Length: 4143
Connection: keep-alive
Vary: Accept-Encoding
GET /merge?pid=12&3pid=5858721859426781856 HTTP/1.1

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

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
Cookie: ljt_reader=f64cddcc104b9082fb7e807d1f807795
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:37 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJyrVjI0UrJSMrUwtTA3MrQwtTQxMjO3ADLMlGoBVsoGFw%3D%3D; expires=Fri, 08-Nov-2013 17:46:37 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Fri, 09 Nov 2012 17:46:37 GMT
Connection: close
GET /m/lj?r=1352396797535 HTTP/1.1

Host: lj.d.chango.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
Cookie: _t=3c5f071a-29cc-11e2-95db-00259035cb72
HTTP/1.1 200 OK

Content-Type: image/gif
Content-Length: 35
Server: RTB
Etag: &quot;0f4e929dd5bb2564f7ab9c76338e04e292a42ace&quot;
Pragma: no-cache
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
P3P: policyref=&quot;http://as.chango.com/static/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR DEVa TAIa OUR BUS UNI&quot;
Set-Cookie: _t=3c5f071a-29cc-11e2-95db-00259035cb72; Domain=chango.com; expires=Sun, 06 Nov 2022 17:46:37 GMT; Path=/
Connection: close
GET /pixel?google_nid=turn1&google_cm&google_hm=NzU5Mjc2NjU3NTE5MzY4OTE0NQ== HTTP/1.1

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

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

Content-Type: text/html; charset=UTF-8
Location: http://r.turn.com/r/cms/id/0/ddc/1/pid/18/uid/?google_gid=CAESED7yEyqvwHaZ756lIOe7tfw&amp;google_cver=1
Date: Thu, 08 Nov 2012 17:46:37 GMT
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
Server: Cookie Matcher
Content-Length: 300
X-XSS-Protection: 1; mode=block
GET /getuid?http://r.turn.com/r/bd?ddc=1&pid=54&cver=1&uid=$UID HTTP/1.1

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

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=7592766575193689145&amp;rnd=7664824169231617081&amp;fpid=13&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: uuid2=5858721859426781856; anj=Kfu=8fG7]PCxrx)0s]#%2L_'x%SEV/hnJip4FV-LKR#O:^sF='$5w8^-wsas%]@_6; sess=1; icu=ChIIzagDEAoYAiACKAIw_N_vhAUQ_N_vhAUYAQ..; acb722973=lbMRZkI/7ZHC=j@AtaS(6&gt;RH9?enc=mpmZmZmZ8T8Tg8DKoUXuPwAAAKCZmfE_E4PAyqFF7j-amZmZmZnxP-6uhe4IxRIDoArzhH1cTlH875tQAAAAACsaCADcAwAANQEAAAIAAAD3pTYAtiYBAAAAAQBVU0QAVVNEANgCWgDIJAAA3j8BAgUCAQUAAAAAkCi-aAAAAAA.&amp;tt_code=ns.myitview&amp;cnd=%21MCfU-wiC7CQQ98vaARgAILbNBDAAOMhJQABItQJQq7QgWABg2AZoAHDIA3hkgAHeCogBBJABAZgBAaABAagBA7ABALkBmpmZmZmZ8T_BAZqZmZmZmfE_yQG5mZmZmZm5P9kBAAAAAAAA8D_gAQA.&amp;udj=uf%28%27a%27%2C+40624%2C+1352396796%29%3Buf%28%27r%27%2C+3581431%2C+1352396796%29%3Bppv%2827656%2C+%27221455973846724334%27%2C+1352396796%2C+1352655996%2C+603650%2C+75446%2C+0%2C+0%2C+604800%29%3B&amp;ccd=%21BwY9NQiC7CQQ98vaARi2zQQgAA..&amp;vpid=134&amp;media_subtypes=1&amp;dlo=1
HTTP/1.1 302 Moved

Content-Type: text/html; charset=ISO-8859-1
Cache-Control: no-store, no-cache, private
Pragma: no-cache
Expires: Sat, 15 Nov 2008 16:00:00 GMT
P3P: policyref=&quot;http://cdn.adnxs.com/w3c/policy/p3p.xml&quot;, CP=&quot;NOI DSP COR ADM PSAo PSDo OURo SAMo UNRo OTRo BUS COM NAV DEM STA PRE&quot;
X-XSS-Protection: 0
Set-Cookie: uuid2=5858721859426781856; path=/; expires=Wed, 06-Feb-2013 17:46:37 GMT; domain=.adnxs.com; HttpOnly sess=1; path=/; expires=Fri, 09-Nov-2012 17:46:37 GMT; domain=.adnxs.com; HttpOnly
Location: http://r.turn.com/r/bd?ddc=1&amp;pid=54&amp;cver=1&amp;uid=5858721859426781856
Date: Thu, 08 Nov 2012 17:46:37 GMT
Content-Length: 0
GET /merge?pid=10&3pid=638103773992962239&forward= HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=10&amp;3pid=638103773992962239&amp;forward= HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
Cookie: ljt_reader=f64cddcc104b9082fb7e807d1f807795
HTTP/1.1 302 Found

Content-Type: text/html
Date: Thu, 08 Nov 2012 17:46:37 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=0, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJyrVjI0ULJSMjO2MDQwNjc3trQ0sjQzMjK2VKoFAFAUBdU%3D; expires=Fri, 08-Nov-2013 17:46:37 GMT; path=/; domain=.lijit.com
Expires: Thu, 08 Nov 2012 17:46:37 GMT
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 20
Connection: close
GET /merge?pid=2&3pid=DEFAD6D2738F4B53A054DBFA9B914D2B HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=2&amp;3pid=DEFAD6D2738F4B53A054DBFA9B914D2B 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://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
Cookie: ljt_reader=f64cddcc104b9082fb7e807d1f807795
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:37 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJyrVjJSslJycXVzdDFzMTI3tnAzcTI1djQwNXFxcnO0dLI0NHExclKqBQC%2BvQlr; expires=Fri, 08-Nov-2013 17:46:37 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Fri, 09 Nov 2012 17:46:37 GMT
Connection: close
GET /set?pid=21a19823-5de3-4917-bc81-a4edea5127ff&rtb=7592766575193689145 HTTP/1.1

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

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

Content-Type: text/html; charset=UTF-8
Date: Thu, 08 Nov 2012 17:46:38 GMT
Server: Apache
Cache-Control: no-cache, must-revalidate
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: i=e2931909-764c-400b-bb75-aeaabf299f5e; expires=Sat, 08-Nov-2014 17:46:38 GMT; path=/; domain=.openx.net
Location: /set?pid=21a19823-5de3-4917-bc81-a4edea5127ff&amp;rtb=7592766575193689145&amp;cc=1
Content-Length: 0
Connection: close
GET /tap.php?v=4212&nid=1185&put=7592766575193689145&expires=60 HTTP/1.1

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

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=7592766575193689145&amp;rnd=7664824169231617081&amp;fpid=13&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: rpb=14240%3D1%262373%3D1; rpx=14240%3D24447%2C0%2C1%2C%2C%267935%3D25017%2C0%2C1%2C%2C; put_2676=paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0; ruid=591d7fa0509beffcc39f8cde1c2389^1^1352396796^3282013406; rsid=FsGVVT7or4ROW+ngdEkfzaBxZaiThR5ysPrTF1nz/jF4XeyaeR+kEfIOcY4imqkw3bZHonF7znOnaY0sdoI1UZAbqq46KBSde8i1/YqyHdw=; rdk=9358/16370; rdk2=0; ses2=16370^1; put_2731=41c442f26bd8459f94d2a76f62ad11a4; put_2271=QEZcQAM8gJydcfsouJk6KboXtdU
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:37 GMT
Server: Apache/2.2.3 (CentOS)
X-Powered-By: PHP/5.3.3
P3P: CP=&quot;NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT&quot;
Set-Cookie: rpb=14240%3D1%262373%3D1%264212%3D1; expires=Sat, 08-Dec-2012 17:46:37 GMT; path=/; domain=.rubiconproject.com rpx=14240%3D24447%2C0%2C1%2C%2C%264212%3D25017%2C0%2C1%2C%2C%262373%3D25017%2C0%2C1%2C%2C; expires=Sat, 08-Dec-2012 17:46:37 GMT; path=/; domain=.pixel.rubiconproject.com put_1185=7592766575193689145; expires=Mon, 07-Jan-2013 17:46:37 GMT; path=/; domain=.rubiconproject.com
Content-Length: 49
Keep-Alive: timeout=30, max=9798
Connection: Keep-Alive
GET /r/pu?&pid=4&tuid=7592766575193689145 HTTP/1.1

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

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

Content-Type: image/gif
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV&quot;
Cache-Control: max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0
Pragma: no-cache
Content-Length: 43
Date: Thu, 08 Nov 2012 17:46:36 GMT
GET /lijit_sync HTTP/1.1

Host: ca.lijit.pixel.invitemedia.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
Cookie: uid=907fb57a-8625-4f9c-b374-8b476bdbb59b; exchange_uid=&quot;eyI0IjpbIkNBRVNFRTVDZDRSaHR5TE94NXphdWVqdUxVTSIsNzM0ODE1XX0=&quot;
HTTP/1.1 302 Found

HTTP/1.1 302 Found
Date: Thu, 08 Nov 2012 17:46:37 GMT
Pragma: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;OTI DSP COR ADMo TAIo PSAo PSDo CONo OUR SAMo OTRo STP UNI PUR COM NAV INT DEM STA PRE LOC&quot;
Cache-Control: no-cache
Location: http://ce.lijit.com/merge?3pid=907fb57a-8625-4f9c-b374-8b476bdbb59b&amp;pid=11
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Length: 0
Connection: close
Server: Jetty(7.3.1.v20110307)
Set-Cookie: impressions=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT clicks=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT segments=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT io_frequency=;Path=/;Domain=invitemedia.com;Expires=Thu, 01-Jan-1970 00:00:01 GMT
GET /match?admeld_adprovider_id=24&external_user_id=7592766575193689145 HTTP/1.1

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

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

Content-Type: image/gif
Server: Apache
P3P: policyref=&quot;http://tag.admeld.com/w3c/p3p.xml&quot;, CP=&quot;PSAo PSDo OUR SAM OTR BUS DSP ALL COR&quot;
Pragma: no-cache
Cache-Control: no-store
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Content-Length: 35
Date: Thu, 08 Nov 2012 17:46:37 GMT
Connection: keep-alive
GET /r/bd?ddc=1&pid=54&cver=1&uid=5858721859426781856 HTTP/1.1

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

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

Content-Type: image/gif
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV&quot;
Cache-Control: max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0
Pragma: no-cache
Set-Cookie: uid=7592766575193689145; Domain=.turn.com; Expires=Tue, 07-May-2013 17:46:37 GMT; Path=/
Content-Length: 43
Date: Thu, 08 Nov 2012 17:46:37 GMT
GET /adscale-ih/tpui?tpid=30&tpuid=7592766575193689145 HTTP/1.1

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

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

Content-Type: image/gif
Server: Apache-Coyote/1.1
P3P: CP=NOI PSA OUR
Expires: Thu, 08 Nov 2012 17:46:37 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 08 Nov 2012 17:46:37 GMT
Content-Length: 49
Connection: keep-alive
Set-Cookie: uu=421681350344862462; Domain=.adscale.de; Expires=Wed, 06-Nov-2013 10:13:17 GMT; Path=/ tu=1#1866487420#42~paebqcWa9Kg4ukszB6hDMjPkTESS5L7Q0~15628#30~7592766575193689145~15652; Expires=Sat, 08-Dec-2012 17:46:37 GMT VAR=jMYmklZk8QjuTGS3pDUwBGOdRUDhI0V2; path=/; domain=ih.adscale.de DCID=node05; path=/; domain=ih.adscale.de
GET /AdServer/Pug?vcode=bz0yJnR5cGU9MSZqcz0xJmNvZGU9ODImdGw9MTU3NjgwMCZkcF9pZD0yMg==&piggybackCookie=pcv:1|uid:7592766575193689145 HTTP/1.1

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

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

Content-Type: text/html
Date: Thu, 08 Nov 2012 17:46:34 GMT
Server: Apache/2.2.4 (Unix) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.7a mod_fastcgi/2.4.2
Set-Cookie: KRTBCOOKIE_22=488-pcv:1|uid:7592766575193689145; domain=pubmatic.com; expires=Sat, 08-Nov-2014 17:46:34 GMT; path=/ PUBRETARGET=82_1447004794; domain=pubmatic.com; expires=Sun, 08-Nov-2015 17:46:34 GMT; path=/
Content-Length: 1
P3P: CP=&quot;NOI DSP COR LAW CUR ADMo DEVo TAIo PSAo PSDo IVAo IVDo HISo OTPo OUR SAMo BUS UNI COM NAV INT DEM CNT STA PRE LOC&quot;
Connection: close
GET /r/cms/id/0/ddc/1/pid/18/uid/?google_gid=CAESED7yEyqvwHaZ756lIOe7tfw&google_cver=1 HTTP/1.1

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

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

Content-Type: image/gif
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV&quot;
Cache-Control: max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0
Pragma: no-cache
Set-Cookie: uid=7592766575193689145; Domain=.turn.com; Expires=Tue, 07-May-2013 17:46:37 GMT; Path=/
Content-Length: 43
Date: Thu, 08 Nov 2012 17:46:37 GMT
GET /AdJugTracking/Tracker.aspx?EXCOOKIE_RTB/CacheBuster=111299241&AdJugAgencyId=5626&AdJugCurrencyId=1&ExternalUserGUID=7592766575193689145 HTTP/1.1

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

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

Content-Type: image/gif
Server: Microsoft-IIS/6.0
X-AspNet-Version: 2.0.50727
Cache-Control: no-cache
P3P: policyref=&quot;http://tracking.adjug.com/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR LAW CUR ADM TAI PSA PSD IVA IVD HIS OUR SAM OTR LEG UNI COM NAV DEM CNT LOC&quot;
Date: Thu, 08 Nov 2012 17:44:09 GMT
Expires: -1
Pragma: no-cache, no-cache
Connection: Keep-Alive
Set-Cookie: AJEAUDs=5626=7592766575193689145; domain=adjug.com; expires=Wed, 08-Nov-2017 17:44:09 GMT; path=/ AJUserGUID=b59ec219-63ed-439d-9777-bbe308799948; domain=adjug.com; expires=Wed, 08-Nov-2017 17:44:09 GMT; path=/
X-Powered-By: ASP.NET
Content-Length: 43
GET /cms/v1?esig=1~862d802dd86fb59368388ad078a7f298ddbbd0b7&nwid=10000424978&sigv=1 HTTP/1.1

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

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=7592766575193689145&amp;rnd=7664824169231617081&amp;fpid=13&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: uid=uid=3e0f621c-29cc-11e2-9b1a-5fc492a74b33&amp;_hmacv=1&amp;_salt=4109385829&amp;_keyid=k1&amp;_hmac=5de741f21119efc6334ffd360a16a0a5fb30cf69
HTTP/1.1 302 Found

Content-Type: text/plain; charset=utf-8
Date: Thu, 08 Nov 2012 17:46:37 GMT
P3P: policyref=&quot;http://p3p.yahoo.com/w3c/p3p.xml&quot;, CP=&quot;CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE GOV&quot;
Location: http://r.turn.com/r/cms/id/0/ddc/1/pid/43/uid/?xid=E0
Cache-Control: private
Age: 0
Transfer-Encoding: chunked
Connection: keep-alive
Server: YTS/1.20.13
GET /merge?pid=13&3pid=509beffdac879c4193bebebd HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=13&amp;3pid=509beffdac879c4193bebebd 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://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
Cookie: ljt_reader=f64cddcc104b9082fb7e807d1f807795
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:37 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJyrVjI0VrJSMjWwTEpNS0tJTLYwt0w2MbQ0TkoFwhSlWgCY9Qmo; expires=Fri, 08-Nov-2013 17:46:37 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Fri, 09 Nov 2012 17:46:37 GMT
Connection: close
GET /r/cms/id/0/ddc/1/pid/43/uid/?xid=E0 HTTP/1.1

Host: r.turn.com

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

Content-Type: image/gif
Server: Apache-Coyote/1.1
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI CURa DEVa TAIa PSAa PSDa IVAa IVDa OUR IND UNI NAV&quot;
Cache-Control: max-age=0, no-cache, no-store, private, must-revalidate, s-maxage=0
Pragma: no-cache
Set-Cookie: uid=7592766575193689145; Domain=.turn.com; Expires=Tue, 07-May-2013 17:46:38 GMT; Path=/
Content-Length: 43
Date: Thu, 08 Nov 2012 17:46:37 GMT
GET /match?publisher_dsp_id=4&external_user_id=7592766575193689145 HTTP/1.1

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

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

Content-Type: image/gif
Set-Cookie: tuuid=5913710b-d826-4b7c-96b6-9295f2788b78; path=/; expires=Thu, 08-Nov-2012 17:46:39 GMT; domain=ad.360yield.com
tuuid=5913710b-d826-4b7c-96b6-9295f2788b78; path=/; expires=Sat, 08-Nov-2014 17:46:38 GMT
um=!4,ChM3NTkyNzY2NTc1MTkzNjg5MTQ1,1415468798!42,CiFwYWVicWNXYTlLZzR1a3N6QjZoRE1qUGtURVNTNUw3UTA#,1413416862; path=/; expires=Sat, 08-Nov-2014 17:46:38 GMT
P3P: CP=&quot;NOI DSP COR NID CURa ADMa DEVa PSAa PSDa OUR BUS COM INT OTC PUR STA&quot;
Cache-Control: no-cache, no-store, must-revalidate
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Content-Length: 43
Date: Thu, 08 Nov 2012 17:46:38 GMT
GET /set?pid=21a19823-5de3-4917-bc81-a4edea5127ff&rtb=7592766575193689145&cc=1 HTTP/1.1

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

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://cdn.turn.com/server/ddc.htm?uid=7592766575193689145&amp;rnd=7664824169231617081&amp;fpid=13&amp;nu=y&amp;t=&amp;sp=n&amp;purl=&amp;ctid=3&amp;cyid=11
Cookie: i=e2931909-764c-400b-bb75-aeaabf299f5e
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:38 GMT
Server: Apache
Cache-Control: public, max-age=30, proxy-revalidate
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: i=e2931909-764c-400b-bb75-aeaabf299f5e; expires=Sat, 08-Nov-2014 17:46:38 GMT; path=/; domain=.openx.net
Content-Length: 43
Connection: close
GET /merge?pid=3&3pid=509beffd-e32b-fc4a-2924-bc389097c2f9 HTTP/1.1

Host: ce.lijit.com
GET /merge?pid=3&amp;3pid=509beffd-e32b-fc4a-2924-bc389097c2f9 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://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
Cookie: ljt_reader=f64cddcc104b9082fb7e807d1f807795
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:38 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJyrVjJWslIyNbBMSk1LS9FNNTZK0k1LNknUNbI0MtFNSja2sDSwNE82SrNUqgUACLYLzw%3D%3D; expires=Fri, 08-Nov-2013 17:46:38 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Fri, 09 Nov 2012 17:46:38 GMT
Connection: close
GET /merge?pid=1&3pid=7592766575193689145 HTTP/1.1

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

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

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:38 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJyrVjJUslIyN7U0MjczMzU3NbQ0NrOwNDQxVaoFAFE6BeU%3D; expires=Fri, 08-Nov-2013 17:46:38 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Fri, 09 Nov 2012 17:46:38 GMT
Connection: close
GET /orbserv/hbpix?pixId=8696 HTTP/1.1

Host: idpix.media6degrees.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:38 GMT
Server: Apache/2.2.3 (CentOS)
Last-Modified: Tue, 16 Dec 2008 21:07:52 GMT
Etag: &quot;1b40012-2b-45e305a397a00&quot;
Accept-Ranges: bytes
Content-Length: 43
Connection: close
GET /adserver/vdi/742697?d=7592766575193689145 HTTP/1.1

Host: ads.adbrite.com

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

Content-Type: image/gif
Content-Encoding: gzip
Accept-Ranges: none
Cache-Control: no-cache, no-store, must-revalidate
Date: Thu, 08 Nov 2012 17:46:38 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: policyref=&quot;http://files.adbrite.com/w3c/p3p.xml&quot;,CP=&quot;NOI PSA PSD OUR IND UNI NAV DEM STA OTC&quot;
Server: XPEHb/1.2
Set-Cookie: Apache=&quot;168362028x0.069+1352396798x-1790533987&quot;; path=/; domain=.adbrite.com; expires=Wed, 03-Nov-2032 17:46:38 GMT rb2=CiQKBjc0MjY5Nxj1lIvQwQEiEzc1OTI3NjY1NzUxOTM2ODkxNDUQAQ; path=/; domain=.adbrite.com; expires=Wed, 06-Feb-2013 17:46:38 GMT
Content-Length: 59
GET /adserver/vdi/1113874?d=7592766575193689145 HTTP/1.1

Host: ads.adbrite.com

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

Content-Type: image/gif
Content-Encoding: gzip
Accept-Ranges: none
Cache-Control: no-cache, no-store, must-revalidate
Date: Thu, 08 Nov 2012 17:46:38 GMT
Expires: Mon, 26 Jul 1997 05:00:00 GMT
P3P: policyref=&quot;http://files.adbrite.com/w3c/p3p.xml&quot;,CP=&quot;NOI PSA PSD OUR IND UNI NAV DEM STA OTC&quot;
Server: XPEHb/1.2
Set-Cookie: Apache=&quot;168362068x0.099+1352396798x523619492&quot;; path=/; domain=.adbrite.com; expires=Wed, 03-Nov-2032 17:46:38 GMT rb2=CiUKBzExMTM4NzQYk5WL0MEBIhM3NTkyNzY2NTc1MTkzNjg5MTQ1EAE; path=/; domain=.adbrite.com; expires=Wed, 06-Feb-2013 17:46:38 GMT
Content-Length: 59
GET /fr/u.php?p=328546547221502&m=7592766575193689145&t=2592000 HTTP/1.1

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

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

Content-Type: image/gif
Cache-Control: public, max-age=0
Date: Thu, 08 Nov 2012 09:46:38 PST
Expires: Thu, 08 Nov 2012 09:46:38 PST
Pragma: public
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Content-Encoding: gzip
X-FB-Debug: kNdDH0AH5GhLGz9BvfG8mt4p65tq2h4PXLpb+2o+JBY=
Transfer-Encoding: chunked
Connection: keep-alive
GET /ad?mode=7&publisher_dsp_id=2&external_user_id=7592766575193689145 HTTP/1.1

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

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

Content-Type: image/gif
Connection: close
Cache-Control: private, max-age=0, no-cache, no-store, must-revalidate, proxy-revalidate
Expires: Sat, 1 Jan 2000 01:01:00 GMT
Last-Modified: Sat, 1 Jan 2000 01:01:00 GMT
Pragma: no-cache
Server: AdifyServer
Content-Length: 45
Set-Cookie: a=6444QJB5FkeYd4pCw7lL9A; path=/; expires=Sat, 08-Nov-2014 17:46:38 GMT; domain=afy11.net; s=1,2*509beffe*eyfYd1FujG*3t41FmtsTegfqPg8mehhD5Vk7A==*; path=/; expires=Sat, 08-Nov-2014 17:46:38 GMT; domain=afy11.net;
P3P: policyref=&quot;http://ad.afy11.net/privacy.xml&quot;, CP=&quot; NOI DSP NID ADMa DEVa PSAa PSDa OUR OTRa IND COM NAV STA OTC&quot;
GET /merge?3pid=907fb57a-8625-4f9c-b374-8b476bdbb59b&pid=11 HTTP/1.1

Host: ce.lijit.com
GET /merge?3pid=907fb57a-8625-4f9c-b374-8b476bdbb59b&amp;pid=11 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://vbp6iad3.lijit.com/beacon?viewId=13523967972739a8520855d3a&amp;rand=1352396797273&amp;uri=http://www.lijit.com/users/mymediainc&amp;informer=10017205&amp;type=fpads&amp;loc=http%3A%2F%2Fwww.myitview.com%2F&amp;ifr=1&amp;v=1.0&amp;rr=http%3A%2F%2Fwww.myitview.com%2F
Cookie: ljt_reader=f64cddcc104b9082fb7e807d1f807795; ljtrtb=eJyrVjJSslJycXVzdDFzMTI3tnAzcTI1djQwNXFxcnO0dLI0NHExclKqBQC%2BvQlr
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 08 Nov 2012 17:46:38 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.4
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache, max-age=86400, must-revalidate
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
Set-Cookie: ljtrtb=eJwNysENgCAMAMBd%2BpYESkupP5rKHlbDEsbd9d73AMIOfszhzVFqn2RcR2Zym0NNCzkabFDK%2FzTLCpYz9YacaOmVogqlHiQt7gjWgPcDNkkURA%3D%3D; expires=Fri, 08-Nov-2013 17:46:38 GMT; path=/; domain=.lijit.com
Content-Length: 43
Expires: Fri, 09 Nov 2012 17:46:38 GMT
Connection: close
GET /rum?cm_dsp_id=4&external_user_id=7592766575193689145 HTTP/1.1

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

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

Content-Type: image/gif
Server: Apache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR DEVa TAIa OUR BUS UNI&quot;
Expires: Thu, 08 Nov 2012 17:46:38 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 08 Nov 2012 17:46:38 GMT
Content-Length: 43
Connection: keep-alive
Set-Cookie: CMID=asCGD0PS1I0AAH1kNpcAAABK;domain=casalemedia.com;path=/;expires=Fri, 08 Nov 2013 17:46:38 GMT CMPS=134;domain=casalemedia.com;path=/;expires=Wed, 06 Feb 2013 17:46:38 GMT CMPP=008;domain=casalemedia.com;path=/;expires=Wed, 06 Feb 2013 17:46:38 GMT CMRUM2=04000000007592766575193689145;domain=casalemedia.com;path=/;expires=Fri, 08 Nov 2013 17:46:38 GMT CMST=UJvv-lCb7-4A;domain=casalemedia.com;path=/;expires=Fri, 09 Nov 2012 17:46:38 GMT CMSC=UJvv-g**;domain=casalemedia.com;path=/; CMDD=;domain=casalemedia.com;path=/;expires=Fri, 09 Nov 2012 17:46:38 GMT
GET /sync?type=gif&key=turn&uid=7592766575193689145 HTTP/1.1

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

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

Content-Type: image/gif
Server: adaptv/1.0
Connection: Keep-Alive
Set-Cookie: rtbData0=&quot;key=turn:value=7592766575193689145:expiresAt=Thu+Nov+15+09%3A46%3A38+PST+2012:32-Compatible=true&quot;;Path=/;Domain=.adap.tv;Expires=Sat, 08-Nov-2014 17:46:38 GMT
Content-Length: 42
GET /bh/rtset?do=add&pid=535461&ev=7592766575193689145 HTTP/1.1

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

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

Content-Type: image/gif;charset=ISO-8859-1
Cache-Control: private, max-age=0, no-cache, no-store
Content-Language: en-US
CW-Server: ip-10-79-86-203
Date: Thu, 08 Nov 2012 17:46:45 GMT
Expires: -1
P3P: policyref=&quot;/bh/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURa DEVa PSAa OUR BUS COM NAV INT&quot;
Server: GlassFish v3
Set-Cookie: V=lADUPj7PaYjw; Domain=.contextweb.com; Expires=Sun, 03-Nov-2013 17:46:46 GMT; Path=/ pb_rtb_ev=2-535461.7592766575193689145.0.0.1352396806431; Domain=.contextweb.com; Expires=Fri, 08-Nov-2013 17:46:46 GMT; Path=/
Content-Length: 49
Connection: keep-alive
GET /partner?adv_id=6481&img=1&uid=7592766575193689145 HTTP/1.1

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

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