if (!Function.prototype.bindAsEventListener) {
	Function.prototype.bindAsEventListener = function() {
		var __method = this, args = $A(arguments), object = args.shift();
		return function(event) {
			return __method.apply(object, [event || window.event].concat(args));
		}
	}
}
var $A = Array.from = function(iterable) {
	if (!iterable) return [];
	if (iterable.toArray) {
		return iterable.toArray();
	} else {
		var results = [];
		for (var i = 0; i < iterable.length; i++)
			results.push(iterable[i]);
		return results;
	}
}
if (!Math.customRound) {
	Math.customRound = function (number, digits) {
		if (arguments.length == 1) var digits = 2;
		var d = Math.pow(10, digits);
		return parseInt(number * d) / d;
	}
}
if (typeof(IDTVVWP) == "undefined") {
	IDTVVWP = function () {this.initialize.apply(this, arguments);};
	IDTVVWP.prototype = {
		frame: null,
		initialize: function (ds) {

			this.ds = ds;
			this.element = document.getElementById('IDTVP_' + this.ds.id);
			if (!this.element && document.getElementsByClassName)
				try {
					this.element = document.getElementsByClassName ('idtv_4256735f9f')[0];
				} catch(e) {}
			if (!this.element) { alert ('The iDesktop.tv video wall is not not embedded properly!'); return;}
			this.element.innerHTML = '<div class="idtv_' + this.ds.id + '"><div class="idtv_inres"></div><div class="idtv_bb">' +
				'<div class="idtv_btn_prev"></div><div class="idtv_btn_next"></div><div class="idtv_bb_pages"></div></div></div>';
			var divs = this.element.getElementsByTagName('div');
			this.elementout = divs[0];
			this.elementin = divs[1];
			this.btn_prev = divs[3];
			this.btn_next = divs[4];
			this.pagers_area = divs[5];
			if (this.ds.data.error) {
				this.elementin.innerHTML = '<div style="text-align:center">' + this.ds.data.error + '</div>';
			} else {
				this.btn_prev.onclick = this.prevP.bindAsEventListener(this);
				this.btn_next.onclick = this.nextP.bindAsEventListener(this);
				if (this.ds.only_public) { // go trough ds.data.results and remove all private videos
					var newdata = new Array();
					for (var i = 0; i < this.ds.data.results.length; i ++)
						if (!this.ds.data.results[i].isprivate)
							newdata.push(this.ds.data.results[i]);
					this.ds.data.results = newdata;
				}
				this.results = new Array();
				var jsonArr = this.ds.data.results;
				this.page = 0; this.resc = jsonArr.length;
				this.maxpage = Math.ceil(this.resc/this.ds.pp) ;
				for (var i = 0, n = this.resc; i < n; i ++) {
					if (this.ds.only_public && jsonArr[i].isprivate) continue;
					var nr = document.createElement('div');
					nr.className = 'idtv_res';
					if ((i % this.ds.cols + Math.floor(i / this.ds.cols)) % 2) nr.className += ' alt';
					jsonArr[i].title_esc = (jsonArr[i].title ? jsonArr[i].title.replace(/"/g, "&quot;") : '');  // comment only to fix code coloring "
					var title = jsonArr[i].title_esc + (this.ds.thumb_show_length && jsonArr[i].length_seconds ?' (' + jsonArr[i].length_seconds + ')':'');
					var t = '<img src="' + jsonArr[i].thumbnail_url + '" alt="' + jsonArr[i].title_esc + '" title="' + title + '" />';
					if (this.ds.thumb_show_title || this.ds.thumb_show_author || this.ds.thumb_show_length || this.ds.thumb_show_rating || this.ds.thumb_show_description) {
						var at = '';
						if (this.ds.thumb_show_title)
							//at = '<a href="http://www.idesktop.tv/?watch=' + jsonArr[i].id + '" title="' + jsonArr[i].title + '" target="_blank">' + jsonArr[i].title + "</a>";
							at = '<span class="t">' + (jsonArr[i].title ? jsonArr[i].title : '') + "</span>";
						if (this.ds.thumb_show_author) {
							at += '<span class="ah">' + (this.ds.thumb_show_labels?'<span class="lb">Author: </span>':'') + (jsonArr[i].author ? jsonArr[i].author : '') + '</span>';
						}
						if (this.ds.thumb_show_length || this.ds.thumb_show_views) {
							at += '<span class="lv">';
							if (this.ds.thumb_show_length) at += (this.ds.thumb_show_labels?'<span class="lb">Length: </span>':'') + (jsonArr[i].length_seconds ? jsonArr[i].length_seconds : '');
							if (this.ds.thumb_show_length && this.ds.thumb_show_views) at += ' | ';
							if (this.ds.thumb_show_views) at += (this.ds.thumb_show_labels?'<span class="lb">Views: </span>':'') + (jsonArr[i].view_count ? this.formatCommasInt(jsonArr[i].view_count) : '');
							at += '</span>';
						}
						if (this.ds.thumb_show_rating)
							at += '<span class="r">' + (this.ds.thumb_show_labels?'<span class="lb">Rating: </span>':'') + (jsonArr[i].rating_avg ? Math.customRound(jsonArr[i].rating_avg, 1) : '') + "</span>";
						if (this.ds.thumb_show_description) {
							at += '<span class="d">' + (jsonArr[i].description ? jsonArr[i].description : '') + "</span>";
						}
						t = t + '<div class="out" title="' + title + '"><div class="in">' + at + '</div></div>';
					}
					if (this.ds.mark_private && jsonArr[i].isprivate)
						nr.innerHTML += '<div class="private_mark">PRIVATE</div>';
					nr.innerHTML += t;
					this.elementin.appendChild(nr);
					nr.style.display = 'none';
					this.results.push(nr);
					nr.onclick = this.onresclick.bindAsEventListener(this, i);
				}
				this.showRes();
			}
			var f = document.createElement('iframe');
			f.src = "http://www.idesktop.tv/embed/4256735f9f/utr.html?r=" + document.location;
			f.style.cssText = 'width:0;height:0;border:none;';
			f.frameborder = f.frameBorder = f.border = "0";
			this.element.appendChild(f);
		},
		onresclick: function (event,i) {
			var elem = event.target || event.srcElement;
			if (elem.tagName == 'A') return;
			if (this.ds.plpl == "newwin") {
				var loaded = false;
				if (this.frw) {
					try {
						this.frw.Player.playlist.selectItem(i);
						this.frw.Player.playlist.playSelected();
						loaded = true;
					} catch(e) {
						loaded = false;
					}
				}
				if (!loaded) {
					this.frw = window.open ('http://'+this.ds.chost+'/embed/'+this.ds.id+'/play.html?vid='+this.ds.data.results[i].id, 'idtvwin', 'width=' + this.ds.plw + ',height=' + this.ds.plh);
				}
				return;
			}
			if (!this.frame) {
				this.plclbtn = document.createElement('img');
				this.plclbtn.src = this.ds.clbtnsrc;
				this.plclbtn.onclick = this.closeplr.bindAsEventListener(this);
				this.plclbtn.className = 'idtvp_clbtn';
				this.frameholder = document.createElement('div');
				this.frameholder.id = 'idtvpfh' + this.ds.id;
				this.frame = document.createElement('iframe');
				this.frame.id = 'idtvpf' + this.ds.id;
				this.frame.frameborder = this.frame.frameBorder = this.frame.border = "0";
				try {
					document.body.appendChild(this.frameholder);
					this.ba = true;
				} catch (e) {
					this.elementout.appendChild(this.frameholder);
					this.ba = false;
				}
				this.frameholder.appendChild(this.plclbtn);

			}
			/*this.frameholder.style.top = this.results[i].offsetTop + "px";
			this.frameholder.style.left = this.results[i].offsetLeft + this.results[i].offsetWidth + "px";*/
			var scrlX = (window.pageXOffset || document.body.scrollLeft || document.documentElement.scrollLeft);
		    var scrlY = (window.pageYOffset || document.body.scrollTop || document.documentElement.scrollTop);
		    var viewportW = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth ;
		    var viewportH = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
		    var element = this.elementout;
			var elFixedX = 0, elFixedY = 0;
		    do {
		    	elFixedY += element.offsetTop  || 0; elFixedX += element.offsetLeft || 0; element = element.offsetParent || element.parentNode;
		    } while (element);
		    var nx = 0, ny =0;
			switch (this.ds.plpl) {
				case "center":
					nx = scrlX + ((viewportW - this.ds.plw) / 2) - elFixedX;
					ny = scrlY + ((viewportH - this.ds.plh) / 2) - elFixedY;
					break;
				case "left":
					nx = this.results[i].offsetLeft - this.ds.plw;
					ny = this.results[i].offsetTop - this.ds.pldelta;
					break;
				case "right":
					nx = this.results[i].offsetLeft + this.results[i].offsetWidth;
					ny = this.results[i].offsetTop - this.ds.pldelta;
					break;
				case "top":
					nx = this.results[i].offsetLeft - this.ds.pldelta;
					ny = this.results[i].offsetTop - this.ds.plh;
					break;
				case "bottom":
					nx = this.results[i].offsetLeft - this.ds.pldelta;
					ny = this.results[i].offsetTop + this.results[i].offsetHeight;
					break;
				default: return;
			}
			if (this.ba) {
				nx += elFixedX; ny += elFixedY;
				if (nx < 0) nx = 0;
				if (ny < 0) ny = 0;
			} else {
				if (this.ds.plpl != "center") { // some checks if top/left it is out of the viewport
					var rx = nx + elFixedX, ry = ny + elFixedY;
					if (rx < 0) nx -= rx;
					if (ry < 0) ny -= ry;
				}
			}
			this.frameholder.style.left = nx + "px";
			this.frameholder.style.top = ny + "px";

			this.frameholder.style.display = 'block';
			var loaded = false;
			try {
				if (this.frame.contentWindow && this.frame.contentWindow.Player) { // detect if script access is allowed
					this.frame.contentWindow.Player.playlist.selectItem(i);
					this.frame.contentWindow.Player.playlist.playSelected();
					loaded = true;
				}
			} catch (e) {};
			if (!loaded) {
				if (this.frame.parentNode == this.frameholder) this.frameholder.removeChild(this.frame);
				this.frame.src = 'http://'+this.ds.chost+'/embed/'+this.ds.id+'/play.html?vid='+(this.ds.data.results[i].id ? this.ds.data.results[i].id : i);
				this.frameholder.appendChild(this.frame);
			}
		},
		closeplr: function (event) { this.frameholder.style.display='none'; this.frameholder.removeChild(this.frame); },
		showRes: function () {
			if (this.results.length == 0)
				this.pagers_area.innerHTML = 'no results';
			else {
				var s = this.page * this.ds.pp, e = Math.min (s + this.ds.pp, this.results.length) - 1;
				for (var i = 0, n = this.results.length; i < n; i ++)
					this.results[i].style.display =  (i < s || i > e ? 'none' : 'block');
				this.pagers_area.innerHTML = (s+1) + ' - ' + (e+1) + ' (' + this.results.length + ')';
			}
		},
		nextP: function () { if (this.page < this.maxpage - 1) { this.page ++; this.showRes(); } },
		prevP: function () { if (this.page > 0) { this.page --; this.showRes(); } },
		formatCommasInt: function (val) {
			var s = new String(val);
			var rgx = /(\d+)(\d{3})/;
			while (rgx.test(s)) s = s.replace(rgx, '$1' + ',' + '$2');
			return s;
		}
	}
}

var IDTVLBDataSource4256735f9f = {
	id: '4256735f9f', chost:'www.idesktop.tv',clbtnsrc:'http://www.idesktop.tv/images/player_icons/close.gif',
	width: 384, height: 328, pp: 8,
	rows: 4, cols: 2,
	plw: 500, plh: 420,
	createP: function () {
		if (this.reverse_playlist) this.data.results = this.data.results.reverse();
		this.p = new IDTVVWP(this);
	},
	plpl: 'center',
	only_public:true,mark_private:true,
	thumb_show_title : true, thumb_show_author : false,
	thumb_show_rating : true, thumb_show_views: false,
	thumb_show_length : false, thumb_show_description : false,
	thumb_show_labels : true,
	thumbnail_text: 'L',
	reverse_playlist: false,
	pldelta: 0,
Table './idesktop/yt_cache' is marked as crashed and should be repaired<br>Query: insert into yt_cache values ('http://gdata.youtube.com/feeds/api/standardfeeds/recently_featured?max-results=50&start-index=1&safeSearch=moderate&format=5&v=2&client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&key=AI39si5QWl6WGY_2385XkoUaIPz1HOMVnixcqhiWVfd_YNvJAeHGWsXOBTb-a3jz5noA5jGUkd5ydVTwzEy8OLkG4jC_Lh7Mew', 218, '<?xml version=\'1.0\' encoding=\'UTF-8\'?><feed xmlns=\'http://www.w3.org/2005/Atom\' xmlns:app=\'http://www.w3.org/2007/app\' xmlns:media=\'http://search.yahoo.com/mrss/\' xmlns:openSearch=\'http://a9.com/-/spec/opensearch/1.1/\' xmlns:gd=\'http://schemas.google.com/g/2005\' xmlns:gml=\'http://www.opengis.net/gml\' xmlns:yt=\'http://gdata.youtube.com/schemas/2007\' xmlns:georss=\'http://www.georss.org/georss\' gd:etag=\'W/&quot;DEcCRHkyeCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:standardfeed:us:recently_featured</id><updated>2012-02-08T21:41:05.790-08:00</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><title>Spotlight Videos</title><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/browse?s=rf\'/><link rel=\'http://schemas.google.com/g/2005#feed\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/recently_featured?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://schemas.google.com/g/2005#batch\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/batch?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/recently_featured?start-index=1&amp;max-results=50&amp;client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;restriction=38.107.179.208&amp;format=5&amp;safeSearch=moderate&amp;v=2\'/><link rel=\'service\' type=\'application/atomsvc+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured?alt=atom-service&amp;v=2\'/><link rel=\'next\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/recently_featured?start-index=51&amp;max-results=50&amp;client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;restriction=38.107.179.208&amp;format=5&amp;safeSearch=moderate&amp;v=2\'/><author><name>YouTube</name><uri>http://www.youtube.com/</uri></author><generator version=\'2.1\' uri=\'http://gdata.youtube.com\'>YouTube data API</generator><openSearch:totalResults>99</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>50</openSearch:itemsPerPage><entry gd:etag=\'W/&quot;DEABQ347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:dyNPeLJBo7Y</id><published>2012-02-06T16:51:41.000Z</published><updated>2012-02-09T05:52:32.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Sports\' label=\'Sports\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NewYorkGiants\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Super Bowl\'/><title>New York Giants on plane celebrating</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/dyNPeLJBo7Y?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=dyNPeLJBo7Y&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/dyNPeLJBo7Y/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/dyNPeLJBo7Y/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/dyNPeLJBo7Y/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/dyNPeLJBo7Y/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=dyNPeLJBo7Y\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/dyNPeLJBo7Y?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>markherzlich</name><uri>http://gdata.youtube.com/feeds/api/users/FTcfRMHRdp2gBFFvXZyDwA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/dyNPeLJBo7Y/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'3963\'/></gd:comments><media:group><media:category label=\'Sports\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Sports</media:category><media:content url=\'http://www.youtube.com/v/dyNPeLJBo7Y?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'50\' yt:format=\'5\'/><media:content url=\'rtsp://v8.cache7.c.youtube.com/CnELENy73wIaaAm2o0GyeE8jdxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'50\' yt:format=\'1\'/><media:content url=\'rtsp://v5.cache1.c.youtube.com/CnELENy73wIaaAm2o0GyeE8jdxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'50\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>markherzlich</media:credit><media:description type=\'plain\'>Andre Brown singing \"I got a ring\"   Follow me @MarkHerzlich on twitter.</media:description><media:keywords>NewYorkGiants, Super Bowl</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=dyNPeLJBo7Y&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dyNPeLJBo7Y/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:25\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dyNPeLJBo7Y/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dyNPeLJBo7Y/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:12.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dyNPeLJBo7Y/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:25\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/dyNPeLJBo7Y/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:37.500\' yt:name=\'end\'/><media:title type=\'plain\'>New York Giants on plane celebrating</media:title><yt:duration seconds=\'50\'/><yt:uploaded>2012-02-06T16:51:41.000Z</yt:uploaded><yt:videoid>dyNPeLJBo7Y</yt:videoid></media:group><gd:rating average=\'4.4268417\' max=\'5\' min=\'1\' numRaters=\'3964\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1397\' viewCount=\'1595953\'/><yt:rating numDislikes=\'568\' numLikes=\'3396\'/></entry><entry gd:etag=\'W/&quot;DEEHQH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:KMmqqKV49cg</id><published>2012-02-07T06:04:40.000Z</published><updated>2012-02-09T05:50:31.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Comedy\' label=\'Comedy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jimmy Kimmel Live\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jimmy Kimmel\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'comedy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'late night\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'interviews\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'celebrity\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'talk show\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tv\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'television\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'JKL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ABC\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jackhole\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'funny\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'laughs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'comics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bits\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'clips\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sketches\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'comedians\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tonight\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hollywood\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'highland\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'los\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'angeles\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'california\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'walt\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'disney\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'company\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'talkshow\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'nightly\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'YouTube\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Challenge\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Hey\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jimmy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Kimmel\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Unplugged\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'the\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'During\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Game\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'superbowl\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'super\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bowl\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'prank\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'big\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'violent\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'turn\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'off\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'patriots\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'giants\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'boston\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'new\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'york\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'halftime\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'show\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'madonna\'/><title>YouTube Challenge - Hey Jimmy Kimmel I Unplugged the TV During the Game</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/KMmqqKV49cg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=KMmqqKV49cg&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/KMmqqKV49cg/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/KMmqqKV49cg/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/KMmqqKV49cg/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/KMmqqKV49cg/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=KMmqqKV49cg\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/KMmqqKV49cg?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>JimmyKimmelLive</name><uri>http://gdata.youtube.com/feeds/api/users/a6vGFO9ty8v5KZJXQxdhaw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/KMmqqKV49cg/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1755\'/></gd:comments><yt:hd/><media:group><media:category label=\'Comedy\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Comedy</media:category><media:content url=\'http://www.youtube.com/v/KMmqqKV49cg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'230\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache2.c.youtube.com/CnELENy73wIaaAnI9XilqKrJKBMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'230\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache6.c.youtube.com/CnELENy73wIaaAnI9XilqKrJKBMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'230\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>JimmyKimmelLive</media:credit><media:description type=\'plain\'>Jimmy Kimmel Live - YouTube Challenge - Hey Jimmy Kimmel I Unplugged the TV During the Game

Jimmy Kimmel Live\'s YouTube channel features clips and recaps of every episode from the late night TV show on ABC.
Subscribe for clips from the monologue, the interviews, and musical performances every day of the week. Watch your
favorites parts again, or catch-up on any episodes you may have missed

Channel: http://www.youtube.com/jimmykimmellive
Subscribe: http://www.youtube.com/subscription_center?add_user=jimmykimmellive</media:description><media:keywords>Jimmy Kimmel Live, Jimmy Kimmel, comedy, late night, interviews, celebrity, talk show, tv, television, JKL, ABC, Jackhole, funny, laughs, comics, bits, clips, sketches, comedians, tonight, hollywood, highland, los, angeles, california, walt, disney, company, talkshow, nightly, YouTube, Challenge, Hey, Jimmy, Kimmel, Unplugged, the, During, Game, superbowl, super, bowl, prank, big, violent, turn, off, patriots, giants, boston, new, york, halftime, show, madonna</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=KMmqqKV49cg&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/KMmqqKV49cg/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:55\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/KMmqqKV49cg/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/KMmqqKV49cg/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:57.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/KMmqqKV49cg/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:55\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/KMmqqKV49cg/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:52.500\' yt:name=\'end\'/><media:title type=\'plain\'>YouTube Challenge - Hey Jimmy Kimmel I Unplugged the TV During the Game</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'230\'/><yt:uploaded>2012-02-07T06:04:40.000Z</yt:uploaded><yt:videoid>KMmqqKV49cg</yt:videoid></media:group><gd:rating average=\'4.891716\' max=\'5\' min=\'1\' numRaters=\'4913\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2240\' viewCount=\'1173106\'/><yt:rating numDislikes=\'133\' numLikes=\'4780\'/></entry><entry gd:etag=\'W/&quot;DEMMSH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:DQpxVNCbrJY</id><published>2012-02-06T17:46:48.000Z</published><updated>2012-02-09T05:48:09.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Tech\' label=\'Science &amp; Technology\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Dell\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ultrabook\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'XPS 13\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'San Francisco\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'challenge\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'notebook\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'laptop\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'processor\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'design\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'keyboard\'/><title>The Dell Ultrabook Challenge in San Francisco</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/DQpxVNCbrJY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=DQpxVNCbrJY&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/DQpxVNCbrJY/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/DQpxVNCbrJY/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/DQpxVNCbrJY/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/DQpxVNCbrJY/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=DQpxVNCbrJY\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/DQpxVNCbrJY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>DellVlog</name><uri>http://gdata.youtube.com/feeds/api/users/01FW5V9UVohbPtqKSmXX-w</uri></author><yt:accessControl action=\'comment\' permission=\'moderated\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/DQpxVNCbrJY/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'396\'/></gd:comments><media:group><media:category label=\'Science &amp; Technology\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Tech</media:category><media:content url=\'http://www.youtube.com/v/DQpxVNCbrJY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'32\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache1.c.youtube.com/CnELENy73wIaaAmWrJvQVHEKDRMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'32\' yt:format=\'1\'/><media:content url=\'rtsp://v6.cache6.c.youtube.com/CnELENy73wIaaAmWrJvQVHEKDRMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'32\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>DellVlog</media:credit><media:description type=\'plain\'>We took the new Dell XPS 13 to the streets of San Francisco and placed it against our competitors. See what our customers said about the sleek design and powerful processors.
http://www.dell.com/xps13

Dell team members removed all brand logos from contesting Ultrabooks including the XPS 13, MacBook Air, Asus Zenbook, Acer Aspire 53, HP Folio, and the Toshiba Protégé Z830. Passers-by were invited to approach a Dell branded truck parked in highly trafficked locations ranging between the Ferry building and Fisherman\'s Wharf to select their favorite Ultrabook for the following attributes: weight, materials, look, feel, heat distribution, and durability. Several hundred people participated in the Ultrabook Challenge, and most of them chose the Dell XPS 13 Ultrabook. Some popular features that were commonly called out were the edge-to-edge screen, compact size, Gorilla Glass, track pad, and backlit keyboard.</media:description><media:keywords>Dell, Ultrabook, XPS 13, San Francisco, challenge, notebook, laptop, processor, design, keyboard</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=DQpxVNCbrJY&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DQpxVNCbrJY/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:16\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DQpxVNCbrJY/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DQpxVNCbrJY/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:08\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DQpxVNCbrJY/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:16\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DQpxVNCbrJY/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:24\' yt:name=\'end\'/><media:title type=\'plain\'>The Dell Ultrabook Challenge in San Francisco</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'32\'/><yt:uploaded>2012-02-06T17:46:48.000Z</yt:uploaded><yt:videoid>DQpxVNCbrJY</yt:videoid></media:group><gd:rating average=\'3.1497583\' max=\'5\' min=\'1\' numRaters=\'828\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'77\' viewCount=\'1141537\'/><yt:rating numDislikes=\'383\' numLikes=\'445\'/></entry><entry gd:etag=\'W/&quot;DEMMSH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:8OmyyHyya64</id><published>2012-02-07T06:38:41.000Z</published><updated>2012-02-09T05:48:09.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'The Iceland Worm Monster\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lagarfljóts Worm\'/><title>The Iceland Worm Monster (Lagarfljóts Worm) Caught on Camera</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/8OmyyHyya64?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=8OmyyHyya64&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/8OmyyHyya64/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/8OmyyHyya64/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/8OmyyHyya64/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/8OmyyHyya64/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=8OmyyHyya64\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/8OmyyHyya64?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>ViralNews2012</name><uri>http://gdata.youtube.com/feeds/api/users/meBvVjo5jOpYsqS30_Vq2Q</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/8OmyyHyya64/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1125\'/></gd:comments><yt:hd/><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/8OmyyHyya64?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'31\' yt:format=\'5\'/><media:content url=\'rtsp://v6.cache1.c.youtube.com/CnELENy73wIaaAmua7J8yLLp8BMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'31\' yt:format=\'1\'/><media:content url=\'rtsp://v5.cache8.c.youtube.com/CnELENy73wIaaAmua7J8yLLp8BMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'31\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>ViralNews2012</media:credit><media:description type=\'plain\'>The Lagarfljótsormur, Lagarfljotsormurinn, Lagarfljót worm or simply Iceland Worm Monster is an Icelandic lake cryptid. The worm is purportedly located in Lagarfljót Lake, a freshwater, below-sea-level, glacial-fed body of water in Egilsstaðir.

 The water visibility is incredibly poor as a result of siltation, and the creature--if it does exist--has not been scientifically studied.

Sightings have been consistently logged since 1345. There are many stories about kynjaskepnur, that is, strange animals or unknown phenomena, in Lagarfljót.

The worm-like creature is presumed to be longer than a football field, or 300 feet (91 m), and has been seen coiled near the shore by countless eyewitnesses. 

According to reports, it has been spotted in both water and dry land. It is believed that it can slither onto land.

This video is from IRíkisútvarpið RUV - The Icelandic National Broadcasting Service

www.ruv.is/frett/er-thetta-lagarfljotsormurinn

Cameraman Hjörtur Kjerúlf captured the giant, icy snake swimming in the Jökulsá í Fljótsdal river, which empties into Lake Lagarfljót. 

The footage shows a crocodilian-like creature or a giant snake skimming the water surface of a frozen lake. But Reptiles in cold climates?</media:description><media:keywords>The Iceland Worm Monster, Lagarfljóts Worm</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=8OmyyHyya64&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/8OmyyHyya64/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:15.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/8OmyyHyya64/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/8OmyyHyya64/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:07.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/8OmyyHyya64/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:15.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/8OmyyHyya64/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:23.250\' yt:name=\'end\'/><media:title type=\'plain\'>The Iceland Worm Monster (Lagarfljóts Worm) Caught on Camera</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'31\'/><yt:uploaded>2012-02-07T06:38:41.000Z</yt:uploaded><yt:videoid>8OmyyHyya64</yt:videoid></media:group><gd:rating average=\'3.6666667\' max=\'5\' min=\'1\' numRaters=\'861\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'239\' viewCount=\'910128\'/><yt:rating numDislikes=\'287\' numLikes=\'574\'/></entry><entry gd:etag=\'W/&quot;DEMCSX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:MSBkK2B6AfI</id><published>2012-02-06T21:12:22.000Z</published><updated>2012-02-09T05:47:48.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Sports\' label=\'Sports\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'liverpool\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'football\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'club\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cat\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'invades\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'the\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pitch\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'during\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'game\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'runs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'on\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tottenham\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Liverpool F.C.\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Invasion\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cats\'/><title>Cat invades Football pitch Liverpool vs Tottenham 6/02/12</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/MSBkK2B6AfI?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=MSBkK2B6AfI&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MSBkK2B6AfI/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MSBkK2B6AfI/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MSBkK2B6AfI/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MSBkK2B6AfI/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=MSBkK2B6AfI\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/MSBkK2B6AfI?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>J44M3S</name><uri>http://gdata.youtube.com/feeds/api/users/7ZOq1Kgun3jmE21e15oteA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/MSBkK2B6AfI/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1534\'/></gd:comments><yt:hd/><media:group><media:category label=\'Sports\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Sports</media:category><media:content url=\'http://www.youtube.com/v/MSBkK2B6AfI?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'58\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache1.c.youtube.com/CnELENy73wIaaAnyAXpgK2QgMRMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'58\' yt:format=\'1\'/><media:content url=\'rtsp://v6.cache7.c.youtube.com/CnELENy73wIaaAnyAXpgK2QgMRMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'58\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>J44M3S</media:credit><media:description type=\'plain\'>Hands of Friedel! Cat invades the pitch, original video was taken down by YouTube for copyright so here\'s a new one. 

I DO NOT OWN THIS CONTENT!</media:description><media:keywords>liverpool, football, club, cat, invades, the, pitch, during, game, runs, on, tottenham, Liverpool F.C., Invasion, Cats</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=MSBkK2B6AfI&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MSBkK2B6AfI/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:29\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MSBkK2B6AfI/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MSBkK2B6AfI/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:14.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MSBkK2B6AfI/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:29\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MSBkK2B6AfI/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:43.500\' yt:name=\'end\'/><media:title type=\'plain\'>Cat invades Football pitch Liverpool vs Tottenham 6/02/12</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'58\'/><yt:uploaded>2012-02-06T21:12:22.000Z</yt:uploaded><yt:videoid>MSBkK2B6AfI</yt:videoid></media:group><gd:rating average=\'4.954463\' max=\'5\' min=\'1\' numRaters=\'3865\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1559\' viewCount=\'865875\'/><yt:rating numDislikes=\'44\' numLikes=\'3821\'/></entry><entry gd:etag=\'W/&quot;DEEGSH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:L7s2D5l8zhM</id><published>2012-02-07T07:47:53.000Z</published><updated>2012-02-09T05:50:29.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'epic\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'meal\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'time\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pies\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'burger\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bacon\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'baconator\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bacon weave\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'macaroni\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mac and cheese\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'kraft dinner\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'chicken\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'puff pastry\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'crust\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'poutine\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fries\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gravy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cheese\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pizza\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pepperoni\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pad thai\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'liquor\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'appleton\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'apples\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'rum\'/><title>Next Level Pies - Epic Meal Time</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/L7s2D5l8zhM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=L7s2D5l8zhM&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/L7s2D5l8zhM/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/L7s2D5l8zhM/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/L7s2D5l8zhM/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/L7s2D5l8zhM/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=L7s2D5l8zhM\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/L7s2D5l8zhM?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>EpicMealTime</name><uri>http://gdata.youtube.com/feeds/api/users/Yjk_zY-iYR8YNfJmuzd70A</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/L7s2D5l8zhM/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'9928\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/L7s2D5l8zhM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'187\' yt:format=\'5\'/><media:content url=\'rtsp://v5.cache1.c.youtube.com/CnELENy73wIaaAkTznyZDza7LxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'187\' yt:format=\'1\'/><media:content url=\'rtsp://v6.cache6.c.youtube.com/CnELENy73wIaaAkTznyZDza7LxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'187\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>EpicMealTime</media:credit><media:description type=\'plain\'>Click LIKE/FAV!!  

EpicMealTime creates various Next Level Pies. Burgers, chickens, mac n\' cheese, liquor, pad thai, pizza and poutine all stuffed into delicious baked pies.

GET BACON LUBE AND BACONSALT AND BACONAISE at:  
http://www.epicmealtime.com/bacon

Twitter:
http://www.twitter.com/epicmealtime

Facebook:
http://www.facebook.com/epicmealtime

Buy Our Shirts
http://shop.epicmealtime.com</media:description><media:keywords>epic, meal, time, pies, burger, bacon, baconator, bacon weave, macaroni, mac and cheese, kraft dinner, chicken, puff pastry, crust, poutine, fries, gravy, cheese, pizza, pepperoni, pad thai, liquor, appleton, apples, rum</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=L7s2D5l8zhM&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L7s2D5l8zhM/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:33.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L7s2D5l8zhM/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L7s2D5l8zhM/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:46.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L7s2D5l8zhM/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:33.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L7s2D5l8zhM/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:20.250\' yt:name=\'end\'/><media:title type=\'plain\'>Next Level Pies - Epic Meal Time</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'187\'/><yt:uploaded>2012-02-07T07:47:53.000Z</yt:uploaded><yt:videoid>L7s2D5l8zhM</yt:videoid></media:group><gd:rating average=\'4.8506365\' max=\'5\' min=\'1\' numRaters=\'26941\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2768\' viewCount=\'820149\'/><yt:rating numDislikes=\'1006\' numLikes=\'25935\'/></entry><entry gd:etag=\'W/&quot;DEEDQX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:5kZ4xuAvfSg</id><published>2012-02-08T03:21:01.000Z</published><updated>2012-02-09T05:51:10.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'RAY WILLIAM JOHNSON\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'RAYWILLIAMJOHNSON\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'videos\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'rwj\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'equals\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'three\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'equalsthree\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'=3\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'equals three\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'equals 3\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'raywiliamjohnson\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ray wiliam johnson\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ray williams johnson\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Elephant Hits Man\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Dude Passes Out\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Who Is Ray?\'/><title>FIGHTING THE ELEPHANT - Ray William Johnson Video</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/5kZ4xuAvfSg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=5kZ4xuAvfSg&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/5kZ4xuAvfSg/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/5kZ4xuAvfSg/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/5kZ4xuAvfSg/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/5kZ4xuAvfSg/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=5kZ4xuAvfSg\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/5kZ4xuAvfSg?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>RayWilliamJohnson</name><uri>http://gdata.youtube.com/feeds/api/users/Gt7X90Au6BV8rf49BiM6Dg</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'denied\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/5kZ4xuAvfSg/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'39841\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/5kZ4xuAvfSg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'443\' yt:format=\'5\'/><media:content url=\'rtsp://v5.cache5.c.youtube.com/CnELENy73wIaaAkofS_gxnhG5hMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'443\' yt:format=\'1\'/><media:content url=\'rtsp://v3.cache8.c.youtube.com/CnELENy73wIaaAkofS_gxnhG5hMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'443\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>RayWilliamJohnson</media:credit><media:description type=\'plain\'>THANX FOR SUBSCRIBING TO MY VIDEOS!! :D

MY TWITTER: https://twitter.com/RayWJ 

MY FACEBOOK: http://www.facebook.com/raywilliamjohnson

MY GOOGLE+  http://Gplus.to/RayWJ

STORE: http://www.raywj.com/shop/

WEBSITE: http://raywj.com

=3 Tshirt Girl: http://twitter.com/TheKylaLeon

EQUALS 3 IN SPANISH: http://www.youtube.com/IgualATres

**********************************************************************
   Here are the links to the full reviews of the content discussed in this video. Please don\'t harass the video creators or send them hate-messages. If you like what you see on each of their channels, feel free to subscribe to them. 
:) Thanx:


Elephant Hits Man: http://www.youtube.com/watch?v=VZKwkGqDIQY&amp;feature=player_embedded

Dude Passes Out: http://www.youtube.com/watch?v=3D5o3PYcJoM&amp;feature=player_embedded

WALL STREET JOURNAL VIDEO:
http://www.youtube.com/watch?v=JUIr9f2Fob0

Who is Ray?: http://online.wsj.com/article/SB10001424052970204624204577179073123148432.html#articleTabs%3Dcomments
http://www.youtube.com/watch?v=JUIr9f2Fob0

CQOTD: http://www.youtube.com/watch?v=ZgDuoTqjDSs

---
\"RAY WILLIAM JOHNSON\" \"Ray William Johnson\" RAYWILLIAMJOHNSON video videos VIDEO VIDEOS raywilliamjohnson \"ray william johnson\" rwj equals three equalsthree =3 \"equals three\" \"equals 3\" raywiliamjohnson \"ray wiliam johnson\" \"ray williams johnson\" \"Elephant Hits Man\" \"Dude Passes Out\" \"Who Is Ray?\"</media:description><media:keywords>RAY WILLIAM JOHNSON, RAYWILLIAMJOHNSON, video, videos, rwj, equals, three, equalsthree, =3, equals three, equals 3, raywiliamjohnson, ray wiliam johnson, ray williams johnson, Elephant Hits Man, Dude Passes Out, Who Is Ray?</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=5kZ4xuAvfSg&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5kZ4xuAvfSg/default.jpg\' height=\'90\' width=\'120\' time=\'00:03:41.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5kZ4xuAvfSg/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5kZ4xuAvfSg/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:50.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5kZ4xuAvfSg/2.jpg\' height=\'90\' width=\'120\' time=\'00:03:41.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5kZ4xuAvfSg/3.jpg\' height=\'90\' width=\'120\' time=\'00:05:32.250\' yt:name=\'end\'/><media:title type=\'plain\'>FIGHTING THE ELEPHANT - Ray William Johnson Video</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'443\'/><yt:uploaded>2012-02-08T03:21:01.000Z</yt:uploaded><yt:videoid>5kZ4xuAvfSg</yt:videoid></media:group><gd:rating average=\'4.88357\' max=\'5\' min=\'1\' numRaters=\'67474\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'6371\' viewCount=\'800583\'/><yt:rating numDislikes=\'1964\' numLikes=\'65510\'/></entry><entry gd:etag=\'W/&quot;DEEDQn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:iVvOvPBNmx4</id><published>2012-02-06T20:39:58.000Z</published><updated>2012-02-09T05:51:13.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Shows\' label=\'Shows\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'explosives+\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'minecraft mod\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'predator missile\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'stealth bomber\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Atomic\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Destruction\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Nuclear\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Explosive Material\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Nuclear Power\'/><title>Minecraft - Predator Missiles &amp; Stealth Bombers - Explosives+ Mod Part 3</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/iVvOvPBNmx4?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=iVvOvPBNmx4&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/iVvOvPBNmx4/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/iVvOvPBNmx4/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/iVvOvPBNmx4/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/iVvOvPBNmx4/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=iVvOvPBNmx4\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/iVvOvPBNmx4?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>BlueXephos</name><uri>http://gdata.youtube.com/feeds/api/users/H-_hzb2ILSCo9ftVSnrCIQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><yt:availability start=\'2012-02-05T00:00:00.000Z\' end=\'2037-12-31T12:00:00.000Z\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/iVvOvPBNmx4/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'5892\'/></gd:comments><yt:episode number=\'68\'/><yt:firstReleased>2012-02-05T08:00:00.000Z</yt:firstReleased><yt:hd/><media:group><media:category label=\'Shows\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Shows</media:category><media:category scheme=\'http://gdata.youtube.com/schemas/2007/releasemediums.cat\'>6</media:category><media:category scheme=\'http://gdata.youtube.com/schemas/2007/mediatypes.cat\'>3</media:category><media:content url=\'http://www.youtube.com/v/iVvOvPBNmx4?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'735\' yt:format=\'5\'/><media:content url=\'rtsp://v6.cache7.c.youtube.com/CnELENy73wIaaAkem03wvM5biRMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'735\' yt:format=\'1\'/><media:content url=\'rtsp://v7.cache3.c.youtube.com/CnELENy73wIaaAkem03wvM5biRMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'735\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>BlueXephos</media:credit><media:description type=\'plain\'>Strap yourself in for some explosions. My computer almost melted down while trying to record this series of videos. 

Explosives+ Mod: http://www.minecraftforum.net/topic/830138-11-explosives-v25/

● Yogscast Gear: http://yogscast.spreadshirt.co.uk/
● Facebook: http://www.facebook.com/yogscast
● Twitter: http://www.twitter.com/yogscast
● Forums: http://yogscast.com/forum.php
● Podcast: http://itunes.apple.com/gb/podcast/the-yogpod/id304557271</media:description><media:keywords>explosives+, minecraft mod, predator missile, stealth bomber, Atomic, Destruction, Nuclear, Explosive Material, Nuclear Power</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=iVvOvPBNmx4&amp;feature=youtube_gdata_player\'/><media:rating scheme=\'urn:v-chip\'>tv-y</media:rating><media:thumbnail url=\'http://i.ytimg.com/vi/iVvOvPBNmx4/default.jpg\' height=\'90\' width=\'120\' time=\'00:06:07.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/iVvOvPBNmx4/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/iVvOvPBNmx4/1.jpg\' height=\'90\' width=\'120\' time=\'00:03:03.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/iVvOvPBNmx4/2.jpg\' height=\'90\' width=\'120\' time=\'00:06:07.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/iVvOvPBNmx4/3.jpg\' height=\'90\' width=\'120\' time=\'00:09:11.250\' yt:name=\'end\'/><media:title type=\'plain\'>Minecraft - Predator Missiles &amp; Stealth Bombers - Explosives+ Mod Part 3</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'735\'/><yt:uploaded>2012-02-06T20:39:58.000Z</yt:uploaded><yt:videoid>iVvOvPBNmx4</yt:videoid></media:group><gd:rating average=\'4.954941\' max=\'5\' min=\'1\' numRaters=\'10120\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2709\' viewCount=\'759047\'/><yt:rating numDislikes=\'114\' numLikes=\'10006\'/></entry><entry gd:etag=\'W/&quot;DEIGR347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:wwvTPNMEEGI</id><published>2012-02-07T17:34:01.000Z</published><updated>2012-02-09T05:48:46.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Sports\' label=\'Sports\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Football\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Fail\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NFL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'GIANTS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SUPERBOWL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NEW\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'YORK\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NYC\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MANHATTAN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CHAMPIONSHIP\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ELI\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MANNINGHAM\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NICKS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CRUZ\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'JETS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SANCHEZ\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'XLVI\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HIGHLIGHTS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'RETARDED\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'GIRL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2012\'/><title>Giants Parade FAIL.  What Giants player do you want to see?  ...  SANCHEZZZZZZZZZ!</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/wwvTPNMEEGI?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=wwvTPNMEEGI&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/wwvTPNMEEGI/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/wwvTPNMEEGI/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/wwvTPNMEEGI/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/wwvTPNMEEGI/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=wwvTPNMEEGI\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/wwvTPNMEEGI?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>WHYTEWUNDER</name><uri>http://gdata.youtube.com/feeds/api/users/TpGQGCsVPKkdiQgbQOnzLQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/wwvTPNMEEGI/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'860\'/></gd:comments><yt:hd/><media:group><media:category label=\'Sports\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Sports</media:category><media:content url=\'http://www.youtube.com/v/wwvTPNMEEGI?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'26\' yt:format=\'5\'/><media:content url=\'rtsp://v2.cache1.c.youtube.com/CnELENy73wIaaAliEATTPNMLwxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'26\' yt:format=\'1\'/><media:content url=\'rtsp://v7.cache2.c.youtube.com/CnELENy73wIaaAliEATTPNMLwxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'26\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>WHYTEWUNDER</media:credit><media:description type=\'plain\'>Girl says the Giants player she wants to see is Sanchez  ...  SMH
SHE FOLLOWS IT UP WITH SAYING PEYTON  LMAOOOOO
DISGRACEFUL.

I guess when you win the Superbowl everyone becomes a fan.</media:description><media:keywords>Football, Fail, NFL, GIANTS, SUPERBOWL, NEW, YORK, NYC, MANHATTAN, CHAMPIONSHIP, ELI, MANNINGHAM, NICKS, CRUZ, JETS, SANCHEZ, XLVI, HIGHLIGHTS, RETARDED, GIRL, 2012</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=wwvTPNMEEGI&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/wwvTPNMEEGI/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:13\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/wwvTPNMEEGI/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/wwvTPNMEEGI/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:06.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/wwvTPNMEEGI/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:13\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/wwvTPNMEEGI/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:19.500\' yt:name=\'end\'/><media:title type=\'plain\'>Giants Parade FAIL.  What Giants player do you want to see?  ...  SANCHEZZZZZZZZZ!</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'26\'/><yt:uploaded>2012-02-07T17:34:01.000Z</yt:uploaded><yt:videoid>wwvTPNMEEGI</yt:videoid></media:group><gd:rating average=\'4.626409\' max=\'5\' min=\'1\' numRaters=\'621\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:recorded>2012-02-07</yt:recorded><yt:statistics favoriteCount=\'343\' viewCount=\'657636\'/><yt:rating numDislikes=\'58\' numLikes=\'563\'/></entry><entry gd:etag=\'W/&quot;D04NQH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:m0-fJ9IpcnY</id><published>2012-02-06T16:46:51.000Z</published><updated>2012-02-09T05:39:51.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'جيمى\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'هود\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'لشوبير\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'يافلول\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'يامحرض\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ميشرفنيش\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'اني\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'اطلع\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'معاك\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ويهزئ\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'شوبير\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'في\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'برنامجه\'/><title>جيمى هود لشوبير يافلول يامحرض ميشرفنيش اني اطلع معاك ويهزئ شوبير في برنامجه</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/m0-fJ9IpcnY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=m0-fJ9IpcnY&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/m0-fJ9IpcnY/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/m0-fJ9IpcnY/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/m0-fJ9IpcnY/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/m0-fJ9IpcnY/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=m0-fJ9IpcnY\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/m0-fJ9IpcnY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>7ntv1</name><uri>http://gdata.youtube.com/feeds/api/users/FGOTvYAJk7-xcdcnC3QN4A</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/m0-fJ9IpcnY/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'975\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/m0-fJ9IpcnY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'209\' yt:format=\'5\'/><media:content url=\'rtsp://v8.cache8.c.youtube.com/CnELENy73wIaaAl2cinSJ59PmxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'209\' yt:format=\'1\'/><media:content url=\'rtsp://v6.cache5.c.youtube.com/CnELENy73wIaaAl2cinSJ59PmxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'209\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>7ntv1</media:credit><media:description type=\'plain\'>تابعونا على https://www.facebook.com/EgyTvShow 
ملتيميديا جميع البرامج التليفزيونيه السياسية والرياضية وجميع المباريات المحليه والعالميه 
http://www.7ntv.com/
جيمى هود لشوبير يافلول يامحرض ميشرفنيش اني اطلع معاك ويهزئ شوبير في برنامجه</media:description><media:keywords>جيمى, هود, لشوبير, يافلول, يامحرض, ميشرفنيش, اني, اطلع, معاك, ويهزئ, شوبير, في, برنامجه</media:keywords><media:license type=\'text/html\' href=\'http://creativecommons.org/licenses/by/3.0/\'>cc</media:license><media:player url=\'http://www.youtube.com/watch?v=m0-fJ9IpcnY&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/m0-fJ9IpcnY/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:44.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/m0-fJ9IpcnY/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/m0-fJ9IpcnY/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:52.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/m0-fJ9IpcnY/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:44.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/m0-fJ9IpcnY/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:36.750\' yt:name=\'end\'/><media:title type=\'plain\'>جيمى هود لشوبير يافلول يامحرض ميشرفنيش اني اطلع معاك ويهزئ شوبير في برنامجه</media:title><yt:duration seconds=\'209\'/><yt:uploaded>2012-02-06T16:46:51.000Z</yt:uploaded><yt:videoid>m0-fJ9IpcnY</yt:videoid></media:group><gd:rating average=\'4.8193426\' max=\'5\' min=\'1\' numRaters=\'4229\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'292\' viewCount=\'632788\'/><yt:rating numDislikes=\'191\' numLikes=\'4038\'/></entry><entry gd:etag=\'W/&quot;DEIASH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:7eoKLD-XfZY</id><published>2012-02-06T23:14:49.000Z</published><updated>2012-02-09T05:49:09.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'philip\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'defranco\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sxephil\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'football\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'super\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bowl\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Tom\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Brady\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Riots\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'UMass\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Woody\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Harrelson\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'reddit\'/><title>REDDIT CRUSHES WOODY HARRELSON HARDER THAN GISELE TRASHES PATS!!</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/7eoKLD-XfZY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.in-response-to\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/B_rckzAS4iQ?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=7eoKLD-XfZY&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/7eoKLD-XfZY/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/7eoKLD-XfZY/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/7eoKLD-XfZY/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/7eoKLD-XfZY/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=7eoKLD-XfZY\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/7eoKLD-XfZY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>sxephil</name><uri>http://gdata.youtube.com/feeds/api/users/lFSU9_bUb4Rc6OYfTt5SPw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/7eoKLD-XfZY/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'25452\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/7eoKLD-XfZY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'468\' yt:format=\'5\'/><media:content url=\'rtsp://v1.cache6.c.youtube.com/CnELENy73wIaaAmWfZc_LArq7RMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'468\' yt:format=\'1\'/><media:content url=\'rtsp://v7.cache3.c.youtube.com/CnELENy73wIaaAmWfZc_LArq7RMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'468\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>sxephil</media:credit><media:description type=\'plain\'>Check out today\'s SourceFed!! http://www.youtube.com/watch?v=B_rckzAS4iQ&amp;list=PL10F0318AA9882685

FACEBOOK: http://on.fb.me/mqpRW7   TWITTER:  http://Twitter.com/PhillyD

Philly D OFFICIAL APP: http://bit.ly/aIyY0w

Get a Month of Free Hosting/help out the Show: http://hostgator.com

----------------------------
ALL of today\'s Stories:
Best &amp; Worst Super Bowl Commercials:
http://bit.ly/xBu5UL

Tom Brady\'s Wife Disses Pats:
http://bit.ly/wT12RF

Super Bowl Riots UMass:
http://huff.to/zxmnm7

Komen Foundation Re-Supports PP:
http://bit.ly/xuPAEn

The Onion tricks Louisiana Congressman:
http://chzb.gr/w6Omr8

Woody Harrelson Reddit Fail:
http://gaw.kr/zDHPkJ
----------------------------

music by:
Ronald Jenkees: http://bit.ly/mQsz3h
@hagemeister
@urbandelights</media:description><media:keywords>philip, defranco, sxephil, football, super, bowl, Tom, Brady, Riots, UMass, Woody, Harrelson, reddit</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=7eoKLD-XfZY&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/7eoKLD-XfZY/default.jpg\' height=\'90\' width=\'120\' time=\'00:03:54\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/7eoKLD-XfZY/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/7eoKLD-XfZY/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:57\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/7eoKLD-XfZY/2.jpg\' height=\'90\' width=\'120\' time=\'00:03:54\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/7eoKLD-XfZY/3.jpg\' height=\'90\' width=\'120\' time=\'00:05:51\' yt:name=\'end\'/><media:title type=\'plain\'>REDDIT CRUSHES WOODY HARRELSON HARDER THAN GISELE TRASHES PATS!!</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'468\'/><yt:uploaded>2012-02-06T23:14:49.000Z</yt:uploaded><yt:videoid>7eoKLD-XfZY</yt:videoid></media:group><gd:rating average=\'4.9358563\' max=\'5\' min=\'1\' numRaters=\'28062\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1442\' viewCount=\'579328\'/><yt:rating numDislikes=\'450\' numLikes=\'27612\'/></entry><entry gd:etag=\'W/&quot;DEMDR347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:1f0ZdzaUi94</id><published>2012-02-07T19:41:37.000Z</published><updated>2012-02-09T05:47:56.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Film\' label=\'Film &amp; Animation\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'god bless america trailer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'god bless america\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'god bless america movie\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'god\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bless\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'america\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'trailer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'movie\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'new\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HD\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'release\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'theatres\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dvd\'/><title>God Bless America Trailer HD</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/1f0ZdzaUi94?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=1f0ZdzaUi94&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/1f0ZdzaUi94/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/1f0ZdzaUi94/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/1f0ZdzaUi94/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/1f0ZdzaUi94/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=1f0ZdzaUi94\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/1f0ZdzaUi94?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>MovieBait</name><uri>http://gdata.youtube.com/feeds/api/users/7iGFHfnzWz-9vydeAtXZdw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/1f0ZdzaUi94/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'274\'/></gd:comments><yt:hd/><media:group><media:category label=\'Film &amp; Animation\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Film</media:category><media:content url=\'http://www.youtube.com/v/1f0ZdzaUi94?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'138\' yt:format=\'5\'/><media:content url=\'rtsp://v5.cache5.c.youtube.com/CnELENy73wIaaAnei5Q2dxn91RMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'138\' yt:format=\'1\'/><media:content url=\'rtsp://v4.cache1.c.youtube.com/CnELENy73wIaaAnei5Q2dxn91RMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'138\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>MovieBait</media:credit><media:description type=\'plain\'>Starring: Joel Murray, Tara Lynne Barr, Larry Miller, Melinda Page Hamilton, Geoff Pierson
Director: Bob Goldthwait
Studio: Magnet Releasing
Genre: Comedy / Drama
Rating: NR
Running Time: 1 hour 39 minutes
Release Date: May 11, 2012
Official Site: http://www.facebook.com/godble... 
SYNOPSIS:
Loveless, jobless and possibly terminally ill, Frank has had enough of the downward spiral of America. With nothing left to lose, Frank takes his gun and decides to off the stupidest, cruelest and most repellent members of society with an unusual accomplice: 16-year-old Roxy, who shares his sense of rage and disenfranchisement. From stand-up comedian and director Bobcat Goldthwait comes a scathing and hilarious attack on all that is sacred in the United States of America.</media:description><media:keywords>god bless america trailer, god bless america, god bless america movie, god, bless, america, trailer, movie, new, HD, release, theatres, dvd</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=1f0ZdzaUi94&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/1f0ZdzaUi94/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:09\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/1f0ZdzaUi94/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/1f0ZdzaUi94/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:34.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/1f0ZdzaUi94/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:09\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/1f0ZdzaUi94/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:43.500\' yt:name=\'end\'/><media:title type=\'plain\'>God Bless America Trailer HD</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'138\'/><yt:uploaded>2012-02-07T19:41:37.000Z</yt:uploaded><yt:videoid>1f0ZdzaUi94</yt:videoid></media:group><gd:rating average=\'4.4609375\' max=\'5\' min=\'1\' numRaters=\'512\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'268\' viewCount=\'552814\'/><yt:rating numDislikes=\'69\' numLikes=\'443\'/></entry><entry gd:etag=\'W/&quot;DEMCQ347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:u-Lbdv3rr5U</id><published>2012-02-06T20:40:46.000Z</published><updated>2012-02-09T05:47:42.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Comedy\' label=\'Comedy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Eysh\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Elly\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'UTURN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jeddah\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Bader\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'مقلبتك\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'هاشتاق\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Hash\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tag\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'يا\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'سعد\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'واشرحلها\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'تهييس\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'اشرب\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'شاي\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'عفطها\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'فهد\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'البتيري\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'لايكثر\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'التمساح\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'مسيسبي\'/><title>Eysh Elly 204 ايش اللي</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/u-Lbdv3rr5U?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=u-Lbdv3rr5U&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/u-Lbdv3rr5U/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/u-Lbdv3rr5U/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/u-Lbdv3rr5U/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/u-Lbdv3rr5U/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=u-Lbdv3rr5U\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/u-Lbdv3rr5U?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>EyshElly</name><uri>http://gdata.youtube.com/feeds/api/users/St0Asi7Eozz78qna1d--0A</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/u-Lbdv3rr5U/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'5359\'/></gd:comments><yt:hd/><media:group><media:category label=\'Comedy\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Comedy</media:category><media:content url=\'http://www.youtube.com/v/u-Lbdv3rr5U?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'465\' yt:format=\'5\'/><media:content url=\'rtsp://v8.cache3.c.youtube.com/CnELENy73wIaaAmVr-v9dtviuxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'465\' yt:format=\'1\'/><media:content url=\'rtsp://v4.cache7.c.youtube.com/CnELENy73wIaaAmVr-v9dtviuxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'465\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>EyshElly</media:credit><media:description type=\'plain\'>http://www.uturn.me

تقدم

الموسم الثاني من إيش إللي، بدون كرفتة
ـــــــــــــــــــــــــــــــــــــــــــــــــــــــ
ارسلولنا فديوهاتاكم الايش الليه على  
ـــــــــــــــــــــــــــــــــــــــــــــــــــــــ
تابعوا اكثر على تويتر 
Eysh Elly https://twitter.com/#!/eyshelly
Bader Saleh https://twitter.com/#!/bidzsaleh
Ali Attas http://twitter.com/#!/AlexATS
Moumen Al Afandi http://twitter.com/#!/Moumen_86
Jotaro http://twitter.com/#!/iJotaro
Deekoo http://twitter.com/#!/Deekoo
Abdullah Mando http://twitter.com/#!/mandowi
Anas Abdo http://twitter.com/#!/AnsAbd
Feras Fawzi http://twitter.com/#!/FerasFawzi

---------------------------------------------------------------

الكمبيوتر المحمول المستخدم في هذه الحلقة 
AMD APU</media:description><media:keywords>Eysh, Elly, UTURN, Jeddah, Bader, مقلبتك, هاشتاق, Hash, tag, يا, سعد, واشرحلها, تهييس, اشرب, شاي, عفطها, فهد, البتيري, لايكثر, التمساح, مسيسبي</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=u-Lbdv3rr5U&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/u-Lbdv3rr5U/default.jpg\' height=\'90\' width=\'120\' time=\'00:03:52.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/u-Lbdv3rr5U/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/u-Lbdv3rr5U/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:56.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/u-Lbdv3rr5U/2.jpg\' height=\'90\' width=\'120\' time=\'00:03:52.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/u-Lbdv3rr5U/3.jpg\' height=\'90\' width=\'120\' time=\'00:05:48.750\' yt:name=\'end\'/><media:title type=\'plain\'>Eysh Elly 204 ايش اللي</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'465\'/><yt:uploaded>2012-02-06T20:40:46.000Z</yt:uploaded><yt:videoid>u-Lbdv3rr5U</yt:videoid></media:group><gd:rating average=\'4.60715\' max=\'5\' min=\'1\' numRaters=\'14377\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:recorded>2012-02-07</yt:recorded><yt:statistics favoriteCount=\'1014\' viewCount=\'527267\'/><yt:rating numDislikes=\'1412\' numLikes=\'12965\'/></entry><entry gd:etag=\'W/&quot;DEIFRX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:lVjw7n_U37A</id><published>2012-02-07T01:52:47.000Z</published><updated>2012-02-09T05:48:34.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Tech\' label=\'Science &amp; Technology\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Chrome\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Google Chrome\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Google\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Android\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ice Cream Sandwich\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ICS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Mobile\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Browser\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Mobile Phone\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Smart Phone\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cell Phone\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Chrome for Android\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Chrome for Android Beta\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Android 4.0\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tablets\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Android (operating System)\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Mobile Device\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'New\'/><title>Introducing Chrome for Android Beta</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/lVjw7n_U37A?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=lVjw7n_U37A&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/lVjw7n_U37A/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/lVjw7n_U37A/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/lVjw7n_U37A/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/lVjw7n_U37A/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=lVjw7n_U37A\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/lVjw7n_U37A?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>googlechrome</name><uri>http://gdata.youtube.com/feeds/api/users/L8ZULXASCc1I_oaOT0NaOQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/lVjw7n_U37A/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'872\'/></gd:comments><yt:hd/><media:group><media:category label=\'Science &amp; Technology\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Tech</media:category><media:content url=\'http://www.youtube.com/v/lVjw7n_U37A?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'61\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache5.c.youtube.com/CnELENy73wIaaAmw39R_7vBYlRMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'61\' yt:format=\'1\'/><media:content url=\'rtsp://v6.cache7.c.youtube.com/CnELENy73wIaaAmw39R_7vBYlRMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'61\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>googlechrome</media:credit><media:description type=\'plain\'>The speed and simplicity of Chrome, now on Android. 

Chrome for Android Beta is available for phones and tablets running Android 4.0 and higher.  To learn more, visit: http://google.com/chrome/android.</media:description><media:keywords>Chrome, Google Chrome, Google, Android, Ice Cream Sandwich, ICS, Mobile, Browser, Mobile Phone, Smart Phone, Cell Phone, Chrome for Android, Chrome for Android Beta, Android 4.0, tablets, Android (operating System), Mobile Device, New</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=lVjw7n_U37A&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/lVjw7n_U37A/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:30.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/lVjw7n_U37A/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/lVjw7n_U37A/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:15.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/lVjw7n_U37A/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:30.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/lVjw7n_U37A/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:45.750\' yt:name=\'end\'/><media:title type=\'plain\'>Introducing Chrome for Android Beta</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'61\'/><yt:uploaded>2012-02-07T01:52:47.000Z</yt:uploaded><yt:videoid>lVjw7n_U37A</yt:videoid></media:group><gd:rating average=\'4.877702\' max=\'5\' min=\'1\' numRaters=\'3238\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'277\' viewCount=\'514728\'/><yt:rating numDislikes=\'99\' numLikes=\'3139\'/></entry><entry gd:etag=\'W/&quot;DEECRn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:98NyGAMcTsE</id><published>2012-02-07T08:39:27.000Z</published><updated>2012-02-09T05:51:07.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FPS\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'RUSSIA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FPSRUSSIA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'GUN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'VIDEO\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SHOOTING\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'GOLDEN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'AK\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'AK47\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'GOLD\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HOW\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'TO\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SHOOT\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'FIELD\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'STRIP\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'AR15\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MOSIN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NAGANT\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'UZI\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'RCXD\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'IN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'REAL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'LIFE\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'MP5\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SMG\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'S&amp;W\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'500\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'most\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'powerful\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'handgun\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'jumping\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'weapons\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'nature\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hiking\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'defence\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hunting\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'warfare\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'garderning\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'defense\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'backflip\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'self\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'taekwondo\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'archery\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'outdoors\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'stunts\'/><title>TOP SHOT  EPISODE 1</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/98NyGAMcTsE?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.in-response-to\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/_UU4zYC1GgI?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=98NyGAMcTsE&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/98NyGAMcTsE/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/98NyGAMcTsE/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/98NyGAMcTsE/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/98NyGAMcTsE/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=98NyGAMcTsE\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/98NyGAMcTsE?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>FPSRussia</name><uri>http://gdata.youtube.com/feeds/api/users/EPTp5WMAzjh9mOrKUwRLmQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'denied\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/98NyGAMcTsE/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'18016\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/98NyGAMcTsE?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'442\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache8.c.youtube.com/CnELENy73wIaaAnBThwDGHLD9xMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'442\' yt:format=\'1\'/><media:content url=\'rtsp://v4.cache8.c.youtube.com/CnELENy73wIaaAnBThwDGHLD9xMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'442\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>FPSRussia</media:credit><media:description type=\'plain\'>FPSRussia Shirts: http://fpsrussia.spreadshirt.com/-C94489
Twitter: http://twitter.com/THEFPSHOW
FaceBook: http://www.facebook.com/FPSRUSSIA
Explosive Targets: http://redtargets.com/

Big thanks to Dustin for coming on and to History for trusting me with his safety haha.

Oh and I should probably mention dont put a grip pod on your 5.7 unless you have the proper licensing like we do, I know it sounds silly but its one of those little modifications that reclassify weapons, kind of like how taking the stock off an AR makes it pistol.</media:description><media:keywords>FPS, RUSSIA, FPSRUSSIA, GUN, VIDEO, SHOOTING, GOLDEN, AK, AK47, GOLD, HOW, TO, SHOOT, FIELD, STRIP, AR15, MOSIN, NAGANT, UZI, RCXD, IN, REAL, LIFE, MP5, SMG, S&amp;W, 500, most, powerful, handgun, jumping, weapons, nature, hiking, defence, hunting, warfare, garderning, defense, backflip, self, taekwondo, archery, outdoors, stunts</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=98NyGAMcTsE&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/98NyGAMcTsE/default.jpg\' height=\'90\' width=\'120\' time=\'00:03:41\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/98NyGAMcTsE/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/98NyGAMcTsE/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:50.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/98NyGAMcTsE/2.jpg\' height=\'90\' width=\'120\' time=\'00:03:41\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/98NyGAMcTsE/3.jpg\' height=\'90\' width=\'120\' time=\'00:05:31.500\' yt:name=\'end\'/><media:title type=\'plain\'>TOP SHOT  EPISODE 1</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'442\'/><yt:uploaded>2012-02-07T08:39:27.000Z</yt:uploaded><yt:videoid>98NyGAMcTsE</yt:videoid></media:group><gd:rating average=\'4.9700594\' max=\'5\' min=\'1\' numRaters=\'32197\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'4031\' viewCount=\'514071\'/><yt:rating numDislikes=\'241\' numLikes=\'31956\'/></entry><entry gd:etag=\'W/&quot;DEMFRX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:DBz6fVPx7Uk</id><published>2012-02-06T21:57:01.000Z</published><updated>2012-02-09T05:46:54.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Sports\' label=\'Sports\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Liverpool F.C.\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Tottenham Hotspur F.C.\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Football\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Suarez\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Parker\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Kick\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Dropkick\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Barclays Premier League\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'funny\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'lol\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pain\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'painful\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'damage\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gut shot\'/><title>Liverpool v Tottenham: Suarez returns with a bang</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/DBz6fVPx7Uk?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=DBz6fVPx7Uk&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/DBz6fVPx7Uk/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/DBz6fVPx7Uk/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/DBz6fVPx7Uk/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/DBz6fVPx7Uk/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=DBz6fVPx7Uk\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/DBz6fVPx7Uk?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>S95raistrick</name><uri>http://gdata.youtube.com/feeds/api/users/c11PehiNoNKssf0_vxckiQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/DBz6fVPx7Uk/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1068\'/></gd:comments><media:group><media:category label=\'Sports\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Sports</media:category><media:content url=\'http://www.youtube.com/v/DBz6fVPx7Uk?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'13\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache8.c.youtube.com/CnELENy73wIaaAlJ7fFTffocDBMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'13\' yt:format=\'1\'/><media:content url=\'rtsp://v6.cache6.c.youtube.com/CnELENy73wIaaAlJ7fFTffocDBMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'13\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>S95raistrick</media:credit><media:description type=\'plain\'>Liverpool v Tottenham
Luis Suarez comes on as a substitute a kicks Scott Parker.
Also check out my other videos.
My channel: http://www.youtube.com/user/S95raistrick?feature=mhee
Please subscribe :)</media:description><media:keywords>Liverpool F.C., Tottenham Hotspur F.C., Football, Suarez, Parker, Kick, Dropkick, Barclays Premier League, funny, lol, pain, painful, damage, gut shot</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=DBz6fVPx7Uk&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DBz6fVPx7Uk/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:06.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DBz6fVPx7Uk/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DBz6fVPx7Uk/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:03.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DBz6fVPx7Uk/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:06.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/DBz6fVPx7Uk/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:09.750\' yt:name=\'end\'/><media:title type=\'plain\'>Liverpool v Tottenham: Suarez returns with a bang</media:title><yt:duration seconds=\'13\'/><yt:uploaded>2012-02-06T21:57:01.000Z</yt:uploaded><yt:videoid>DBz6fVPx7Uk</yt:videoid></media:group><gd:rating average=\'3.6003976\' max=\'5\' min=\'1\' numRaters=\'503\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'117\' viewCount=\'461005\'/><yt:rating numDislikes=\'176\' numLikes=\'327\'/></entry><entry gd:etag=\'W/&quot;DEEARn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:C4Ydh-LNDdM</id><published>2012-02-06T22:38:14.000Z</published><updated>2012-02-09T05:50:47.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'People\' label=\'People &amp; Blogs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ian\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'anthony\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'lunch\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'time\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fan\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mail\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'answer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'postage\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'PO\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'box\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'address\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'smosh\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'smoosh\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pit\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hecox\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'is\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bored\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'padilla\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'lunchtime\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'with\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'why\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'are\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'you\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'reading\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'these\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'firetrucking\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tags\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'silly\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'goose\'/><title>DEATH BY EUROPEAN FOOD!</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/C4Ydh-LNDdM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=C4Ydh-LNDdM&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/C4Ydh-LNDdM/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/C4Ydh-LNDdM/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/C4Ydh-LNDdM/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/C4Ydh-LNDdM/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=C4Ydh-LNDdM\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/C4Ydh-LNDdM?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>IanH</name><uri>http://gdata.youtube.com/feeds/api/users/YJPby9DRCteedh5tfxVbrw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/C4Ydh-LNDdM/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'17779\'/></gd:comments><yt:hd/><media:group><media:category label=\'People &amp; Blogs\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>People</media:category><media:content url=\'http://www.youtube.com/v/C4Ydh-LNDdM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'502\' yt:format=\'5\'/><media:content url=\'rtsp://v1.cache6.c.youtube.com/CnELENy73wIaaAnTDc3ihx2GCxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'502\' yt:format=\'1\'/><media:content url=\'rtsp://v5.cache7.c.youtube.com/CnELENy73wIaaAnTDc3ihx2GCxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'502\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>IanH</media:credit><media:description type=\'plain\'>WATCH THE NEWEST EPISODE: http://bit.ly/FABIOomgd00d

We open more mail! What crazy/weird/awesome stuff will we get this time?
------------------------------------------ 
IMPORTANT LINKS: 
http://smoshpit.com 
http://smosh.com 
http://facebook.com/smosh
http://twitter.com/smosh 
http://twitter.com/smoshian 
http://twitter.com/smoshanthony</media:description><media:keywords>ian, anthony, lunch, time, fan, mail, answer, postage, PO, box, address, smosh, smoosh, pit, hecox, is, bored, padilla, lunchtime, with, why, are, you, reading, these, firetrucking, tags, silly, goose</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=C4Ydh-LNDdM&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/C4Ydh-LNDdM/default.jpg\' height=\'90\' width=\'120\' time=\'00:04:11\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/C4Ydh-LNDdM/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/C4Ydh-LNDdM/1.jpg\' height=\'90\' width=\'120\' time=\'00:02:05.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/C4Ydh-LNDdM/2.jpg\' height=\'90\' width=\'120\' time=\'00:04:11\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/C4Ydh-LNDdM/3.jpg\' height=\'90\' width=\'120\' time=\'00:06:16.500\' yt:name=\'end\'/><media:title type=\'plain\'>DEATH BY EUROPEAN FOOD!</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'502\'/><yt:uploaded>2012-02-06T22:38:14.000Z</yt:uploaded><yt:videoid>C4Ydh-LNDdM</yt:videoid></media:group><gd:rating average=\'4.7595496\' max=\'5\' min=\'1\' numRaters=\'11728\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2243\' viewCount=\'451413\'/><yt:rating numDislikes=\'705\' numLikes=\'11023\'/></entry><entry gd:etag=\'W/&quot;DEMHRX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:eNDTjqVLVEQ</id><published>2012-02-07T03:49:18.000Z</published><updated>2012-02-09T05:47:14.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Sports\' label=\'Sports\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'jeremy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'lin\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'career\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'high\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'28\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'points\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'vs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'utah\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'jazz\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'devin\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'harris\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'february\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'6th\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2012\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hd\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'nba\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'shacmngcp3\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'shacmng\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'crossover\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pick\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'and\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'roll\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dunk\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'alley\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'oop\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'jump\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'shot\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'compilation\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mix\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'highlights\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'new\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'lay\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'up\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'show\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'channel\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ncaa\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'highschool\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'playoffs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'finals\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'clutch\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'game\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'winner\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'buzzer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'beater\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'rookie\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'of\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'the\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'year\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mvp\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'allstar\'/><title>The Jeremy Lin Show vs Utah Jazz | 2.6.2012 | HD |</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/eNDTjqVLVEQ?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.in-response-to\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/G0oaqWMLdwk?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=eNDTjqVLVEQ&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/eNDTjqVLVEQ/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/eNDTjqVLVEQ/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/eNDTjqVLVEQ/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/eNDTjqVLVEQ/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=eNDTjqVLVEQ\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/eNDTjqVLVEQ?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>shacmngCP3</name><uri>http://gdata.youtube.com/feeds/api/users/-LJpjvfgMOLBRv2VAV7xnw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/eNDTjqVLVEQ/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1166\'/></gd:comments><yt:hd/><media:group><media:category label=\'Sports\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Sports</media:category><media:content url=\'http://www.youtube.com/v/eNDTjqVLVEQ?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'538\' yt:format=\'5\'/><media:content url=\'rtsp://v2.cache5.c.youtube.com/CnELENy73wIaaAlEVEuljtPQeBMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'538\' yt:format=\'1\'/><media:content url=\'rtsp://v3.cache2.c.youtube.com/CnELENy73wIaaAlEVEuljtPQeBMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'538\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>shacmngCP3</media:credit><media:description type=\'plain\'>BOXSCORE: http://espn.go.com/nba/boxscore?gameId=320206018



Carmelo Anthony,Tracy Mcgrady,Shaq, LeBron, Dwight Howard All-Star Dance-Off,Slam Dunk Contest,Top 10,NBA Draft 2009,Dwight Howard Superman dunk,AND1,Hot sauce,Lebron james,la lakers,Boston celtics nba champions,La Clippers,Denver Nuggets,Allen Iverson,Dallas Mavericks,East West All star game,nba record,nba street vol 1,2,homecourt,I Challenge Baron Davis,greatest in nba history,shot,block,steal,Michael Jordan\'s Final Shot 98,Baron Davis, Dwyane Wade, Lebron James, Tracy McGrady, Stephon Marubury, Yao Ming, Gilbert Arenas, Kobe Bryant, Speedy Claxton, Paul Pierce, Nate Robinson, Allen Iverson, and Ben Gordan,Soulja Boy And Lebron James Interview ,Kobe Bryant Jumps Over Car(Aston Martin) Slow Motion,Kobe Bryant Car Jump Exposed,fl, ncaa, baseball, soccer, futbol, football, Nba, basketball, mlb, hockey, nhl, paris fifa, poker, golf, world cup,Guinness World Record,Spud Webb Dunk Contest,the best of derrick rose,Kobe Bryant Jumps Over Pool w/ Snakes (Black Mambas?,LeBron talks with Jay-Z during game nba 10 top plays 07 08 top dunks season finals mvp all star game lebron james vs kobe Bryant chris paul dwight howard sprite dunk contest hornets spurs cavs lebron james lawyer vitamin water commercial nike kobe jumps pool with snakes mamba lakers vs spurs game highlights playoffs game 3 4 5 6 7 kevin garnett paul pierce celtics vs pistons wizards gilbert arenas deshawn stevenson jay-z new york nets miami michael beasley derrick rose 1st pick chicago draft lottery pick 1st round 2008 2009 team usa basketball summer olympics Beijing China Yao Ming tracy mcgrady houston rockets los angeles lakers pau gasol trade suns steve nash shaq shawn marion miami heat dwyane wade carmelo cleveland cavs Beasley &amp; Derrick Rose blake griffin walll barcelona messi c ronaldo manchester united arsenal real madrid justin bieber bruno mars fiba 2012</media:description><media:keywords>jeremy, lin, career, high, 28, points, vs, utah, jazz, devin, harris, february, 6th, 2012, hd, nba, shacmngcp3, shacmng, crossover, pick, and, roll, dunk, alley, oop, jump, shot, compilation, mix, highlights, new, lay, up, show, channel, ncaa, highschool, playoffs, finals, clutch, game, winner, buzzer, beater, rookie, of, the, year, mvp, allstar</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=eNDTjqVLVEQ&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/eNDTjqVLVEQ/default.jpg\' height=\'90\' width=\'120\' time=\'00:04:29\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/eNDTjqVLVEQ/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/eNDTjqVLVEQ/1.jpg\' height=\'90\' width=\'120\' time=\'00:02:14.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/eNDTjqVLVEQ/2.jpg\' height=\'90\' width=\'120\' time=\'00:04:29\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/eNDTjqVLVEQ/3.jpg\' height=\'90\' width=\'120\' time=\'00:06:43.500\' yt:name=\'end\'/><media:title type=\'plain\'>The Jeremy Lin Show vs Utah Jazz | 2.6.2012 | HD |</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'538\'/><yt:uploaded>2012-02-07T03:49:18.000Z</yt:uploaded><yt:videoid>eNDTjqVLVEQ</yt:videoid></media:group><gd:rating average=\'4.98234\' max=\'5\' min=\'1\' numRaters=\'3171\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1183\' viewCount=\'408518\'/><yt:rating numDislikes=\'14\' numLikes=\'3157\'/></entry><entry gd:etag=\'W/&quot;DEIHQX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:L-gzqA4FzIA</id><published>2012-02-07T03:59:32.000Z</published><updated>2012-02-09T05:48:50.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'People\' label=\'People &amp; Blogs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'facebook\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dramatic\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'interpretation\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gizmodo\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'huffingtonpost\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'the\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'chive\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'middle\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'schoolers\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'7th\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'graders\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'grade\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'school\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'drama\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'teen\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'angst\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'adolescence\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'immature\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'immaturity\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'epic\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fail\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'myspace\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'zanga\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'twitter\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'formspring\'/><title>Dramatic Interpretations of Facebook - Doubt</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/L-gzqA4FzIA?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=L-gzqA4FzIA&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/L-gzqA4FzIA/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/L-gzqA4FzIA/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/L-gzqA4FzIA/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/L-gzqA4FzIA/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=L-gzqA4FzIA\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/L-gzqA4FzIA?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>NavySealsofComedy</name><uri>http://gdata.youtube.com/feeds/api/users/G359oyqJPermNYWuVfz2Aw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/L-gzqA4FzIA/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'801\'/></gd:comments><media:group><media:category label=\'People &amp; Blogs\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>People</media:category><media:content url=\'http://www.youtube.com/v/L-gzqA4FzIA?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'254\' yt:format=\'5\'/><media:content url=\'rtsp://v2.cache5.c.youtube.com/CnELENy73wIaaAmAzAUOqDPoLxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'254\' yt:format=\'1\'/><media:content url=\'rtsp://v6.cache8.c.youtube.com/CnELENy73wIaaAmAzAUOqDPoLxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'254\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>NavySealsofComedy</media:credit><media:description type=\'plain\'>Like our FB page: https://www.facebook.com/pages/Navy-Seals-of-Comedy/317637211605380
Follow us on twitter: https://twitter.com/#!/navysealscomedy
Subscribe to our page: http://www.youtube.com/user/NavySealsofComedy?feature=mhee
E-mail: navysealsofcomedy@gmail.com

EDIT: By popular demand, here is the link to the original facebook conversation. The faces and names have been blacked out. http://imgur.com/NGc3O

This is what happens when you create a drama using only words from Facebook photo comments written by 7th graders.

Please share with your friends if you find this funny.

The piano is from Killer Tracks - \"Left Alone to Think\" by Michener
The credits song is \"Jumper\" by Third Eye Blind, which we do not own, all rights and respect to the copyright holder etc.</media:description><media:keywords>facebook, dramatic, interpretation, gizmodo, huffingtonpost, the, chive, middle, schoolers, 7th, graders, grade, school, drama, teen, angst, adolescence, immature, immaturity, epic, fail, myspace, zanga, twitter, formspring</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=L-gzqA4FzIA&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L-gzqA4FzIA/default.jpg\' height=\'90\' width=\'120\' time=\'00:02:07\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L-gzqA4FzIA/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L-gzqA4FzIA/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:03.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L-gzqA4FzIA/2.jpg\' height=\'90\' width=\'120\' time=\'00:02:07\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/L-gzqA4FzIA/3.jpg\' height=\'90\' width=\'120\' time=\'00:03:10.500\' yt:name=\'end\'/><media:title type=\'plain\'>Dramatic Interpretations of Facebook - Doubt</media:title><yt:duration seconds=\'254\'/><yt:uploaded>2012-02-07T03:59:32.000Z</yt:uploaded><yt:videoid>L-gzqA4FzIA</yt:videoid></media:group><gd:rating average=\'4.9061427\' max=\'5\' min=\'1\' numRaters=\'5242\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1710\' viewCount=\'397388\'/><yt:rating numDislikes=\'123\' numLikes=\'5119\'/></entry><entry gd:etag=\'W/&quot;DEMMRH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:hooeFDImYRM</id><published>2012-02-07T13:55:18.000Z</published><updated>2012-02-09T05:48:05.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'برلمان\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'مجلس\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'الشعب\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'نائب\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'عضو\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'انتخابات\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'الشورى\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'الإخوان\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'المسلمين\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'المسلمون\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'الحرية\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'والعدالة\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'النور\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'السلفي\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'التيار\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'الإسلامي\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'الكتلة\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'المصرية\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'الوفد\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'الكتاتني\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'عمرو\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'حمزاوي\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'النجار\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'زياد\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'العليمي\'/><title>نائب يرفع الأذان أثناء الجلسة ومشادة مع الكتاتني</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/hooeFDImYRM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=hooeFDImYRM&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/hooeFDImYRM/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/hooeFDImYRM/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/hooeFDImYRM/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/hooeFDImYRM/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=hooeFDImYRM\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/hooeFDImYRM?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>SotelSha3b</name><uri>http://gdata.youtube.com/feeds/api/users/42WdA_gO2tV1MorxgobTfA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/hooeFDImYRM/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1164\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/hooeFDImYRM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'160\' yt:format=\'5\'/><media:content url=\'rtsp://v6.cache3.c.youtube.com/CnELENy73wIaaAkTYSYyFB6KhhMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'160\' yt:format=\'1\'/><media:content url=\'rtsp://v6.cache4.c.youtube.com/CnELENy73wIaaAkTYSYyFB6KhhMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'160\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>SotelSha3b</media:credit><media:description type=\'plain\'>النائب ممدوح إسماعيل يرفع آذان العصر داخل قاعة المجلس أثناء انعقاد الجلسة وحديث أحد النواب والكتاتني يهدده بتطبيق اللائحة والنواب يعترضون ويطلبون خروجه من الجلسة</media:description><media:keywords>برلمان, مجلس, الشعب, نائب, عضو, انتخابات, الشورى, الإخوان, المسلمين, المسلمون, الحرية, والعدالة, النور, السلفي, التيار, الإسلامي, الكتلة, المصرية, الوفد, الكتاتني, عمرو, حمزاوي, النجار, زياد, العليمي</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=hooeFDImYRM&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/hooeFDImYRM/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:20\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/hooeFDImYRM/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/hooeFDImYRM/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:40\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/hooeFDImYRM/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:20\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/hooeFDImYRM/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:00\' yt:name=\'end\'/><media:title type=\'plain\'>نائب يرفع الأذان أثناء الجلسة ومشادة مع الكتاتني</media:title><yt:duration seconds=\'160\'/><yt:uploaded>2012-02-07T13:55:18.000Z</yt:uploaded><yt:videoid>hooeFDImYRM</yt:videoid></media:group><gd:rating average=\'4.016112\' max=\'5\' min=\'1\' numRaters=\'931\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:recorded>2012-02-07</yt:recorded><yt:statistics favoriteCount=\'130\' viewCount=\'389480\'/><yt:rating numDislikes=\'229\' numLikes=\'702\'/></entry><entry gd:etag=\'W/&quot;DEECSH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:TdsA2zsKgSw</id><published>2012-02-07T22:13:38.000Z</published><updated>2012-02-09T05:51:09.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Shows\' label=\'Shows\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'the tourist\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'paris\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'adventure\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'map\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'nice\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'relaxing\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'holiday\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'in\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'france\'/><title>Minecraft - The Tourist - Part 1, The Basilica</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/TdsA2zsKgSw?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=TdsA2zsKgSw&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TdsA2zsKgSw/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TdsA2zsKgSw/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TdsA2zsKgSw/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TdsA2zsKgSw/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=TdsA2zsKgSw\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/TdsA2zsKgSw?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>BlueXephos</name><uri>http://gdata.youtube.com/feeds/api/users/H-_hzb2ILSCo9ftVSnrCIQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><yt:availability start=\'2012-02-07T00:00:00.000Z\' end=\'2037-12-31T12:00:00.000Z\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/TdsA2zsKgSw/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'5873\'/></gd:comments><yt:episode number=\'139\'/><yt:firstReleased>2012-02-07T08:00:00.000Z</yt:firstReleased><yt:hd/><media:group><media:category label=\'Shows\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Shows</media:category><media:category scheme=\'http://gdata.youtube.com/schemas/2007/releasemediums.cat\'>6</media:category><media:category scheme=\'http://gdata.youtube.com/schemas/2007/mediatypes.cat\'>3</media:category><media:content url=\'http://www.youtube.com/v/TdsA2zsKgSw?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'905\' yt:format=\'5\'/><media:content url=\'rtsp://v8.cache2.c.youtube.com/CnELENy73wIaaAksgQo72wDbTRMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'905\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache5.c.youtube.com/CnELENy73wIaaAksgQo72wDbTRMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'905\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>BlueXephos</media:credit><media:description type=\'plain\'>The boys have a much needed holiday in France, but they fall asleep on the tour bus and things... er... well, they take a turn for the worse. As usual.

♪ Music from Kevin Macleod \"Agnus Dei X\" \"Chromatic Fantasia\" \"Spring Thaw\" http://www.incompetech.com

https://yogscast.com/showthread.php?46450-ADV-PUZ-THE-TOURIST-an-amazing-adventure-in-PARIS

Editing by Hannah: http://www.youtube.com/yogscast2

● Yogscast Gear: http://yogscast.spreadshirt.co.uk/
● Facebook: http://www.facebook.com/yogscast
● Twitter: http://www.twitter.com/yogscast
● Forums: http://yogscast.com/forum.php
● Podcast: http://itunes.apple.com/gb/podcast/the-yogpod/id304557271</media:description><media:keywords>the tourist, paris, adventure, map, nice, relaxing, holiday, in, france</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=TdsA2zsKgSw&amp;feature=youtube_gdata_player\'/><media:rating scheme=\'urn:v-chip\'>tv-y</media:rating><media:thumbnail url=\'http://i.ytimg.com/vi/TdsA2zsKgSw/default.jpg\' height=\'90\' width=\'120\' time=\'00:07:32.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TdsA2zsKgSw/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TdsA2zsKgSw/1.jpg\' height=\'90\' width=\'120\' time=\'00:03:46.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TdsA2zsKgSw/2.jpg\' height=\'90\' width=\'120\' time=\'00:07:32.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TdsA2zsKgSw/3.jpg\' height=\'90\' width=\'120\' time=\'00:11:18.750\' yt:name=\'end\'/><media:title type=\'plain\'>Minecraft - The Tourist - Part 1, The Basilica</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'905\'/><yt:uploaded>2012-02-07T22:13:38.000Z</yt:uploaded><yt:videoid>TdsA2zsKgSw</yt:videoid></media:group><gd:rating average=\'4.9289303\' max=\'5\' min=\'1\' numRaters=\'7767\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1364\' viewCount=\'389272\'/><yt:rating numDislikes=\'138\' numLikes=\'7629\'/></entry><entry gd:etag=\'W/&quot;DEAFSH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:VuPtnDZLk-M</id><published>2012-02-07T07:17:03.000Z</published><updated>2012-02-09T05:51:59.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Autos\' label=\'Autos &amp; Vehicles\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'пешеходы\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'авто\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'дтп\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ru_chp\'/><title>Как и почему сбивают пешеходов.</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/VuPtnDZLk-M?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=VuPtnDZLk-M&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VuPtnDZLk-M/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VuPtnDZLk-M/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VuPtnDZLk-M/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VuPtnDZLk-M/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=VuPtnDZLk-M\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/VuPtnDZLk-M?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>BezopasnostDvigenia</name><uri>http://gdata.youtube.com/feeds/api/users/p17o9WV8A7FsU4HiCdAAHg</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/VuPtnDZLk-M/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'852\'/></gd:comments><yt:hd/><media:group><media:category label=\'Autos &amp; Vehicles\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Autos</media:category><media:content url=\'http://www.youtube.com/v/VuPtnDZLk-M?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'151\' yt:format=\'5\'/><media:content url=\'rtsp://v1.cache4.c.youtube.com/CnELENy73wIaaAnjk0s2nO3jVhMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'151\' yt:format=\'1\'/><media:content url=\'rtsp://v1.cache1.c.youtube.com/CnELENy73wIaaAnjk0s2nO3jVhMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'151\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>BezopasnostDvigenia</media:credit><media:description type=\'plain\'>Данное видео является подборкой роликов опубликованных 
в ru-chp.livejournal.com

Все ролики объединены тем, как происходит значительная часть ДТП с участием пешеходов.
Типичная ситуация на нерегулируемых многополосных переходах, когда в одном ряду машины остановились, пропустить пешехода, тот не глядя начинает переходить дорогу. 

В этот момент водитель, едущий в соседнем ряду, не видит причину остановки соседнего ряда, продолжает движение и сбивает человека.

Распространяйте это видео. Покажите его всем, кто вам дорог.</media:description><media:keywords>пешеходы, авто, дтп, ru_chp</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=VuPtnDZLk-M&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VuPtnDZLk-M/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:15.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VuPtnDZLk-M/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VuPtnDZLk-M/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:37.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VuPtnDZLk-M/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:15.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VuPtnDZLk-M/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:53.250\' yt:name=\'end\'/><media:title type=\'plain\'>Как и почему сбивают пешеходов.</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'151\'/><yt:uploaded>2012-02-07T07:17:03.000Z</yt:uploaded><yt:videoid>VuPtnDZLk-M</yt:videoid></media:group><gd:rating average=\'4.9328995\' max=\'5\' min=\'1\' numRaters=\'2921\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'588\' viewCount=\'385132\'/><yt:rating numDislikes=\'49\' numLikes=\'2872\'/></entry><entry gd:etag=\'W/&quot;DEIDRX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:Yyd0sd8XEBY</id><published>2012-02-07T22:52:58.000Z</published><updated>2012-02-09T05:49:34.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sxephil\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'philip\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'defranco\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lindsay\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lohan\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lilyhammer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Netflix\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jessica\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Nigri\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Prop\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Eight\'/><title>LINDSAY LOHAN AS TALENTED AS PROP 8 IS CONSTITUTIONAL!!</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/Yyd0sd8XEBY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.in-response-to\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/RWIosqbTnzc?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=Yyd0sd8XEBY&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yyd0sd8XEBY/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yyd0sd8XEBY/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yyd0sd8XEBY/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Yyd0sd8XEBY/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=Yyd0sd8XEBY\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/Yyd0sd8XEBY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>sxephil</name><uri>http://gdata.youtube.com/feeds/api/users/lFSU9_bUb4Rc6OYfTt5SPw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/Yyd0sd8XEBY/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'21287\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/Yyd0sd8XEBY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'424\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache3.c.youtube.com/CnELENy73wIaaAkWEBffsXQnYxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'424\' yt:format=\'1\'/><media:content url=\'rtsp://v1.cache5.c.youtube.com/CnELENy73wIaaAkWEBffsXQnYxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'424\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>sxephil</media:credit><media:description type=\'plain\'>Check out today\'s SourceFed!! http://www.youtube.com/watch?v=RWIosqbTnzc&amp;list=PL8F30E917C5D2E4D4

FACEBOOK: http://on.fb.me/mqpRW7   TWITTER:  http://Twitter.com/PhillyD

Philly D OFFICIAL APP: http://bit.ly/aIyY0w

----------------------------
ALL of today\'s Stories:
Motorcycle Circus Crash:
http://gizmo.do/wtFsMD

Lilyhammer Netflix Launch:
http://gaw.kr/yIhQQb

Machete Sequel??
http://bit.ly/x8GcAC

New Spiderman Trailer:
http://chzb.gr/zL5dwi

Best. Bet. Ever:
http://bit.ly/wuK5Pf

Lindsay Lohan Photos:
http://gaw.kr/xAWWoc

Jessica Nigri\'s Skyrim:
http://bit.ly/y7ZzKG

Cop Chase. For no reason.
http://bit.ly/w8GYXS

Prop 8 \"Unconstitutional\"
http://huff.to/wW9qXc
----------------------------

music by:
Ronald Jenkees: http://bit.ly/mQsz3h
@hagemeister
@urbandelights</media:description><media:keywords>sxephil, philip, defranco, Lindsay, Lohan, Lilyhammer, Netflix, Jessica, Nigri, Prop, Eight</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=Yyd0sd8XEBY&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yyd0sd8XEBY/default.jpg\' height=\'90\' width=\'120\' time=\'00:03:32\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yyd0sd8XEBY/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yyd0sd8XEBY/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:46\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yyd0sd8XEBY/2.jpg\' height=\'90\' width=\'120\' time=\'00:03:32\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Yyd0sd8XEBY/3.jpg\' height=\'90\' width=\'120\' time=\'00:05:18\' yt:name=\'end\'/><media:title type=\'plain\'>LINDSAY LOHAN AS TALENTED AS PROP 8 IS CONSTITUTIONAL!!</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'424\'/><yt:uploaded>2012-02-07T22:52:58.000Z</yt:uploaded><yt:videoid>Yyd0sd8XEBY</yt:videoid></media:group><gd:rating average=\'4.9017878\' max=\'5\' min=\'1\' numRaters=\'24559\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1067\' viewCount=\'371868\'/><yt:rating numDislikes=\'603\' numLikes=\'23956\'/></entry><entry gd:etag=\'W/&quot;DEIER347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:-4L2jVRDZcg</id><published>2012-02-07T07:07:18.000Z</published><updated>2012-02-09T05:48:26.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ellen degeneres\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'clumsy thumbsy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'autocorrect\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'The\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ellen\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Show\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'theellenshow\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fun\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'funny\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hilarious\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hysterical\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'season\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'nine\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'daytime\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'talkshow\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'DeGeneres\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'comedy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'laugh\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'humor\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'The Ellen DeGeneres Show\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Humour\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Joke\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Television Show\'/><title>Ellen\'s Got Clumsy Thumbsy</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/-4L2jVRDZcg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=-4L2jVRDZcg&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/-4L2jVRDZcg/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/-4L2jVRDZcg/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/-4L2jVRDZcg/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/-4L2jVRDZcg/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=-4L2jVRDZcg\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/-4L2jVRDZcg?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>TheEllenShow</name><uri>http://gdata.youtube.com/feeds/api/users/p0hYYBW6IMayGgR-WeoCvQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/-4L2jVRDZcg/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'340\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/-4L2jVRDZcg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'116\' yt:format=\'5\'/><media:content url=\'rtsp://v4.cache4.c.youtube.com/CnELENy73wIaaAnIZUNUjfaC-xMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'116\' yt:format=\'1\'/><media:content url=\'rtsp://v8.cache7.c.youtube.com/CnELENy73wIaaAnIZUNUjfaC-xMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'116\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>TheEllenShow</media:credit><media:description type=\'plain\'>Her viewers sent in more hilarious autocorrect mistakes! Take a look at this group that cracked Ellen up. You can see Ellen\'s entire Clumsy Thumbsy gallery here!

If you have a photo of a funny autocorrect mistake, send it to Ellen here!</media:description><media:keywords>ellen degeneres, clumsy thumbsy, autocorrect, The, Ellen, Show, theellenshow, fun, funny, hilarious, hysterical, season, nine, daytime, talkshow, DeGeneres, comedy, laugh, humor, The Ellen DeGeneres Show, Humour, Joke, Television Show</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=-4L2jVRDZcg&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/-4L2jVRDZcg/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:58\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/-4L2jVRDZcg/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/-4L2jVRDZcg/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:29\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/-4L2jVRDZcg/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:58\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/-4L2jVRDZcg/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:27\' yt:name=\'end\'/><media:title type=\'plain\'>Ellen\'s Got Clumsy Thumbsy</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'116\'/><yt:uploaded>2012-02-07T07:07:18.000Z</yt:uploaded><yt:videoid>-4L2jVRDZcg</yt:videoid></media:group><gd:rating average=\'4.9611044\' max=\'5\' min=\'1\' numRaters=\'2571\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'898\' viewCount=\'369634\'/><yt:rating numDislikes=\'25\' numLikes=\'2546\'/></entry><entry gd:etag=\'W/&quot;D04ER347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:9hxQhMKIe4I</id><published>2012-02-06T22:08:57.000Z</published><updated>2012-02-09T05:38:26.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Sports\' label=\'Sports\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'luis\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'suarez\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'kick\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'scott\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'parker\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tottenham\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hotspur\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'liverpool\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'spurs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'stomach\'/><title>Suarez kicks Scott Parker in stomach</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/9hxQhMKIe4I?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=9hxQhMKIe4I&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/9hxQhMKIe4I/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/9hxQhMKIe4I/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/9hxQhMKIe4I/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/9hxQhMKIe4I/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=9hxQhMKIe4I\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/9hxQhMKIe4I?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>RTHFC61</name><uri>http://gdata.youtube.com/feeds/api/users/Kr0RcsD-YQXK_OjksSUDmw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/9hxQhMKIe4I/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'596\'/></gd:comments><yt:hd/><media:group><media:category label=\'Sports\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Sports</media:category><media:content url=\'http://www.youtube.com/v/9hxQhMKIe4I?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'16\' yt:format=\'5\'/><media:content url=\'rtsp://v6.cache6.c.youtube.com/CnELENy73wIaaAmCe4jChFAc9hMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'16\' yt:format=\'1\'/><media:content url=\'rtsp://v7.cache6.c.youtube.com/CnELENy73wIaaAmCe4jChFAc9hMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'16\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>RTHFC61</media:credit><media:description type=\'plain\'>Luis Suarez kicking Scott Parker in the stomach intentionally vs Spurs in the 0-0 draw at Anfield.</media:description><media:keywords>luis, suarez, kick, scott, parker, tottenham, hotspur, liverpool, spurs, stomach</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=9hxQhMKIe4I&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/9hxQhMKIe4I/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:08\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/9hxQhMKIe4I/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/9hxQhMKIe4I/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:04\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/9hxQhMKIe4I/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:08\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/9hxQhMKIe4I/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:12\' yt:name=\'end\'/><media:title type=\'plain\'>Suarez kicks Scott Parker in stomach</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'16\'/><yt:uploaded>2012-02-06T22:08:57.000Z</yt:uploaded><yt:videoid>9hxQhMKIe4I</yt:videoid></media:group><gd:rating average=\'2.832061\' max=\'5\' min=\'1\' numRaters=\'262\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'29\' viewCount=\'367042\'/><yt:rating numDislikes=\'142\' numLikes=\'120\'/></entry><entry gd:etag=\'W/&quot;DEYDRX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:MZ3Ak3wu5kg</id><published>2012-02-07T14:44:46.000Z</published><updated>2012-02-09T05:42:54.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Music\' label=\'Music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'fard\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'redman\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'rap\'/><title>Fard &amp; Redman - Still Hatin</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/MZ3Ak3wu5kg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=MZ3Ak3wu5kg&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MZ3Ak3wu5kg/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MZ3Ak3wu5kg/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MZ3Ak3wu5kg/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/MZ3Ak3wu5kg/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=MZ3Ak3wu5kg\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/MZ3Ak3wu5kg?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>wasgehtabman1</name><uri>http://gdata.youtube.com/feeds/api/users/U920m2cTElVE62gZ84iqrQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/MZ3Ak3wu5kg/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'2842\'/></gd:comments><yt:hd/><media:group><media:category label=\'Music\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Music</media:category><media:content url=\'http://www.youtube.com/v/MZ3Ak3wu5kg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'264\' yt:format=\'5\'/><media:content url=\'rtsp://v3.cache4.c.youtube.com/CnELENy73wIaaAlI5i58k8CdMRMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'264\' yt:format=\'1\'/><media:content url=\'rtsp://v7.cache4.c.youtube.com/CnELENy73wIaaAlI5i58k8CdMRMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'264\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>wasgehtabman1</media:credit><media:description type=\'plain\'>FARD INVICTUS TOUR
mit F.NAZIZI, NIMA und DJ O-SUN

Hier die Termine:

Di. 10.01. Osnabrück - Rosenhof
Mi. 11.01. Berlin - Festsaal Kreuzberg
Do. 12.01. Hannover - Musikzentrum
Fr. 13.01. Dresden - Puschkin
Fr. 03.02. CH- St Gallen -Kugl
Sa. 04.02. CH- Chur - Palazzo
Fr. 10.02. Oldenburg - Amadeus Tanzspeicher
Sa.11.02 Flensburg - Roxy
Mi. 15.02. Bremen - Tower
Do.16.02. Kiel - Orange Club
Fr. 17.02. Hamburg - Uebel&amp;Gefährlich
Sa. 18.02. Münster - Skaters Palace Cafe
So. 19.02. Bochum - Zeche
Fr. 24.02. CH-Aarau - Jugendkultur Flösserplatz
Sa. 25.02. CH-Lyss - Kufa
So. 26.02. München - Ampere
Di. 28.02. Wiesbaden - Schlachthof
Mi. 29.02. Konstanz - Kulturladen
Do. 01.03. Tübingen - Sudhaus
Fr. 02.03. A-Trimmelkam - Sakog
Sa. 03.03. A-Wien - Szene
Mo. 05.03. Köln - Luxor
Di. 06.03. Frankfurt - Batschkapp
Mi. 07.03. Krefeld - Kufa
Do. 08.03. Trier - Mergener Hof
Fr.v 09.03. Wuppertal - Bloom Club
Sa. 10.03. Kaiserslautern - Kammgarn
So. 11.03. Bielefeld - Kamp

TICKETS hier bestellen:

http://www.eventim.de/fard</media:description><media:keywords>fard, redman, rap</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=MZ3Ak3wu5kg&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MZ3Ak3wu5kg/default.jpg\' height=\'90\' width=\'120\' time=\'00:02:12\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MZ3Ak3wu5kg/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MZ3Ak3wu5kg/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:06\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MZ3Ak3wu5kg/2.jpg\' height=\'90\' width=\'120\' time=\'00:02:12\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/MZ3Ak3wu5kg/3.jpg\' height=\'90\' width=\'120\' time=\'00:03:18\' yt:name=\'end\'/><media:title type=\'plain\'>Fard &amp; Redman - Still Hatin</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'264\'/><yt:uploaded>2012-02-07T14:44:46.000Z</yt:uploaded><yt:videoid>MZ3Ak3wu5kg</yt:videoid></media:group><gd:rating average=\'4.8587785\' max=\'5\' min=\'1\' numRaters=\'8384\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'3129\' viewCount=\'338444\'/><yt:rating numDislikes=\'296\' numLikes=\'8088\'/></entry><entry gd:etag=\'W/&quot;DEMHQ347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:VoHbI-955uQ</id><published>2012-02-07T05:46:50.000Z</published><updated>2012-02-09T05:47:12.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Die\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Antwoord\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Fink\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Freeky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'David\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Letterman\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2/6/12\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Die Antwoord\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Rich Bitch\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Evil Boy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'In Your Face\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Enter The Ninja\'/><title>Die Antwoord - I Fink U Freeky - David Letterman  2-6-12</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/VoHbI-955uQ?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=VoHbI-955uQ&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VoHbI-955uQ/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VoHbI-955uQ/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VoHbI-955uQ/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VoHbI-955uQ/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=VoHbI-955uQ\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/VoHbI-955uQ?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>IdolXfactor2</name><uri>http://gdata.youtube.com/feeds/api/users/1U4fjG9YjIuSl9h_naWs-A</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/VoHbI-955uQ/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1162\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/VoHbI-955uQ?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'252\' yt:format=\'5\'/><media:content url=\'rtsp://v4.cache5.c.youtube.com/CnELENy73wIaaAnk5nnvI9uBVhMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'252\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache1.c.youtube.com/CnELENy73wIaaAnk5nnvI9uBVhMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'252\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>IdolXfactor2</media:credit><media:description type=\'plain\'>Die Antwoord - I Fink U Freeky - David Letterman  2-6-12...As Seen On ©CBS, All Rights Reserved.

CBS Letterman Website: http://www.cbs.com/late_night/late_show/

Letterman Playlist: http://www.youtube.com/playlist?list=PL0643D1401CFC7C18

What Happen To The Original IdolXfactor? http://www.youtube.com/watch?v=5Vu4e1N9Bxw

Facebook: http://www.facebook.com/pages/IdolXfactor/265880913461304?sk=wall

Tweet Me: http://twitter.com/#!/idolxfactor1</media:description><media:keywords>Die, Antwoord, Fink, Freeky, David, Letterman, 2/6/12, Die Antwoord, Rich Bitch, Evil Boy, In Your Face, Enter The Ninja</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=VoHbI-955uQ&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VoHbI-955uQ/default.jpg\' height=\'90\' width=\'120\' time=\'00:02:06\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VoHbI-955uQ/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VoHbI-955uQ/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:03\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VoHbI-955uQ/2.jpg\' height=\'90\' width=\'120\' time=\'00:02:06\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VoHbI-955uQ/3.jpg\' height=\'90\' width=\'120\' time=\'00:03:09\' yt:name=\'end\'/><media:title type=\'plain\'>Die Antwoord - I Fink U Freeky - David Letterman  2-6-12</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'252\'/><yt:uploaded>2012-02-07T05:46:50.000Z</yt:uploaded><yt:videoid>VoHbI-955uQ</yt:videoid></media:group><gd:rating average=\'4.5069976\' max=\'5\' min=\'1\' numRaters=\'2215\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'685\' viewCount=\'319541\'/><yt:rating numDislikes=\'273\' numLikes=\'1942\'/></entry><entry gd:etag=\'W/&quot;DEMCSH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:keOEmSCiPI8</id><published>2012-02-06T20:21:29.000Z</published><updated>2012-02-09T05:47:49.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Sports\' label=\'Sports\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cat\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'On\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'The\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Pitch\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'At\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Anfield\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'February\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'6th\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2012\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Liverpool\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Tottenham\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Kop\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Steward\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Kenny\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Dalglish\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Liverpool F.C.\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Tottenham Hotspur F.C.\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Football\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Soccer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'premier\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'League\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'that\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cats\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Association Football\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'scouse\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mog\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'stray\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pet\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'kitty\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Kitten\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sky\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sports\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hd\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'spurs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cute\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'invades\'/><title>Cat on the pitch at Anfield</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/keOEmSCiPI8?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=keOEmSCiPI8&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/keOEmSCiPI8/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/keOEmSCiPI8/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/keOEmSCiPI8/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/keOEmSCiPI8/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=keOEmSCiPI8\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/keOEmSCiPI8?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>krisbo123</name><uri>http://gdata.youtube.com/feeds/api/users/Q52ifA4KhkN-fRKi9LHGow</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/keOEmSCiPI8/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'551\'/></gd:comments><yt:hd/><media:group><media:category label=\'Sports\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Sports</media:category><media:content url=\'http://www.youtube.com/v/keOEmSCiPI8?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'61\' yt:format=\'5\'/><media:content url=\'rtsp://v2.cache4.c.youtube.com/CnELENy73wIaaAmPPKIgmYTjkRMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'61\' yt:format=\'1\'/><media:content url=\'rtsp://v7.cache8.c.youtube.com/CnELENy73wIaaAmPPKIgmYTjkRMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'61\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>krisbo123</media:credit><media:description type=\'plain\'>Liverpool vs Tottenham February 6th 2012</media:description><media:keywords>Cat, On, The, Pitch, At, Anfield, February, 6th, 2012, Liverpool, Tottenham, Kop, Steward, Kenny, Dalglish, Liverpool F.C., Tottenham Hotspur F.C., Football, Soccer, premier, League, that, cats, Association Football, scouse, mog, stray, pet, kitty, Kitten, sky, sports, hd, spurs, Cute, invades</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=keOEmSCiPI8&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/keOEmSCiPI8/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:30.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/keOEmSCiPI8/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/keOEmSCiPI8/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:15.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/keOEmSCiPI8/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:30.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/keOEmSCiPI8/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:45.750\' yt:name=\'end\'/><media:title type=\'plain\'>Cat on the pitch at Anfield</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'61\'/><yt:uploaded>2012-02-06T20:21:29.000Z</yt:uploaded><yt:videoid>keOEmSCiPI8</yt:videoid></media:group><gd:rating average=\'4.950384\' max=\'5\' min=\'1\' numRaters=\'1693\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'582\' viewCount=\'318163\'/><yt:rating numDislikes=\'21\' numLikes=\'1672\'/></entry><entry gd:etag=\'W/&quot;D0AHRH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:I7bbA0wBMDw</id><published>2012-02-06T21:09:40.000Z</published><updated>2012-02-09T05:35:35.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Film\' label=\'Film &amp; Animation\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'espetacular\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'homem-aranha\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'trailer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'legendado\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'oficial\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'brasil\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'peter\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'parker\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Brazil\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Official\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Official Trailer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Cinema\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Film\'/><title>O Espetacular Homem-Aranha | Trailer Legendado | 3 de julho nos cinemas</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/I7bbA0wBMDw?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=I7bbA0wBMDw&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/I7bbA0wBMDw/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/I7bbA0wBMDw/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/I7bbA0wBMDw/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/I7bbA0wBMDw/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=I7bbA0wBMDw\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/I7bbA0wBMDw?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>SonypicturesBrasil</name><uri>http://gdata.youtube.com/feeds/api/users/9NXpIA01HVRhYgcEbs80Nw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/I7bbA0wBMDw/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1047\'/></gd:comments><yt:hd/><media:group><media:category label=\'Film &amp; Animation\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Film</media:category><media:content url=\'http://www.youtube.com/v/I7bbA0wBMDw?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'144\' yt:format=\'5\'/><media:content url=\'rtsp://v1.cache5.c.youtube.com/CnELENy73wIaaAk8MAFMA9u2IxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'144\' yt:format=\'1\'/><media:content url=\'rtsp://v4.cache7.c.youtube.com/CnELENy73wIaaAk8MAFMA9u2IxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'144\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>SonypicturesBrasil</media:credit><media:description type=\'plain\'>Trailer oficial legendado.
ESTREIA: 3 de julho nos cinemas

Curta-nos: http://www.facebook.com/SonyPicturesBrasil</media:description><media:keywords>espetacular, homem-aranha, trailer, legendado, oficial, brasil, peter, parker, Brazil, Official, Official Trailer, Cinema, Film</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=I7bbA0wBMDw&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/I7bbA0wBMDw/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:12\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/I7bbA0wBMDw/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/I7bbA0wBMDw/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:36\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/I7bbA0wBMDw/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:12\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/I7bbA0wBMDw/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:48\' yt:name=\'end\'/><media:title type=\'plain\'>O Espetacular Homem-Aranha | Trailer Legendado | 3 de julho nos cinemas</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'144\'/><yt:uploaded>2012-02-06T21:09:40.000Z</yt:uploaded><yt:videoid>I7bbA0wBMDw</yt:videoid></media:group><gd:rating average=\'4.715178\' max=\'5\' min=\'1\' numRaters=\'1601\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'297\' viewCount=\'306728\'/><yt:rating numDislikes=\'114\' numLikes=\'1487\'/></entry><entry gd:etag=\'W/&quot;DEcFSX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:5LmbP8uEGBM</id><published>2012-02-06T22:04:27.000Z</published><updated>2012-02-09T05:40:18.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pizza\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'party\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'costco\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'food\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'court\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'flash\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mob\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'soda\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pepperoni\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'aw\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'yeah\'/><title>Costco Pizza Party!</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/5LmbP8uEGBM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=5LmbP8uEGBM&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/5LmbP8uEGBM/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/5LmbP8uEGBM/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/5LmbP8uEGBM/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/5LmbP8uEGBM/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=5LmbP8uEGBM\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/5LmbP8uEGBM?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>freddiew2</name><uri>http://gdata.youtube.com/feeds/api/users/7XQ-N5zRR6hG07urYrK7Aw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/5LmbP8uEGBM/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'3060\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/5LmbP8uEGBM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'254\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache7.c.youtube.com/CnELENy73wIaaAkTGITLP5u55BMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'254\' yt:format=\'1\'/><media:content url=\'rtsp://v8.cache7.c.youtube.com/CnELENy73wIaaAkTGITLP5u55BMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'254\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>freddiew2</media:credit><media:description type=\'plain\'>We tweeted and Facebooked about an impromptu pizza party at Costco, and people showed up! Watch as I fail at a magic trick!</media:description><media:keywords>pizza, party, costco, food, court, flash, mob, soda, pepperoni, aw, yeah</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=5LmbP8uEGBM&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5LmbP8uEGBM/default.jpg\' height=\'90\' width=\'120\' time=\'00:02:07\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5LmbP8uEGBM/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5LmbP8uEGBM/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:03.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5LmbP8uEGBM/2.jpg\' height=\'90\' width=\'120\' time=\'00:02:07\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/5LmbP8uEGBM/3.jpg\' height=\'90\' width=\'120\' time=\'00:03:10.500\' yt:name=\'end\'/><media:title type=\'plain\'>Costco Pizza Party!</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'254\'/><yt:uploaded>2012-02-06T22:04:27.000Z</yt:uploaded><yt:videoid>5LmbP8uEGBM</yt:videoid></media:group><gd:rating average=\'4.892617\' max=\'5\' min=\'1\' numRaters=\'7301\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'467\' viewCount=\'300663\'/><yt:rating numDislikes=\'196\' numLikes=\'7105\'/></entry><entry gd:etag=\'W/&quot;DEQMRX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:vpcuz4XmOpw</id><published>2012-02-07T11:56:15.000Z</published><updated>2012-02-09T05:46:24.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Comedy\' label=\'Comedy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bebe\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'um\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'milhao\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'de\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dolares\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'rir\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'humor\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'criança\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bob\'/><title>Bebé Com 16 Meses Já Sabe Aquilo Que Quer | tafixe.com</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/vpcuz4XmOpw?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=vpcuz4XmOpw&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/vpcuz4XmOpw/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/vpcuz4XmOpw/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/vpcuz4XmOpw/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/vpcuz4XmOpw/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=vpcuz4XmOpw\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/vpcuz4XmOpw?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>TaFixeTV</name><uri>http://gdata.youtube.com/feeds/api/users/lO36CLr4UsF387MhWU4f8A</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/vpcuz4XmOpw/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'269\'/></gd:comments><media:group><media:category label=\'Comedy\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Comedy</media:category><media:content url=\'http://www.youtube.com/v/vpcuz4XmOpw?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'35\' yt:format=\'5\'/><media:content url=\'rtsp://v1.cache4.c.youtube.com/CnELENy73wIaaAmcOuaFzy6XvhMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'35\' yt:format=\'1\'/><media:content url=\'rtsp://v4.cache2.c.youtube.com/CnELENy73wIaaAmcOuaFzy6XvhMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'35\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>TaFixeTV</media:credit><media:description type=\'plain\'>http://www.facebook.com/tafixe
Bob é um bebé de apenas 16 meses, mas já sabe o que realmente é importante. :P



Tá Fixe - O Original ! Todos os dias os melhores vídeos e imagens de humor e curiosidades! Se gostas desta publicação clica em \'Gosto\' e Partilha com os teus amigos! ㋡ 
Para mais vídeos visita: http://www.tafixe.com/</media:description><media:keywords>bebe, um, milhao, de, dolares, video, rir, humor, criança, bob</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=vpcuz4XmOpw&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/vpcuz4XmOpw/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:17.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/vpcuz4XmOpw/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/vpcuz4XmOpw/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:08.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/vpcuz4XmOpw/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:17.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/vpcuz4XmOpw/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:26.250\' yt:name=\'end\'/><media:title type=\'plain\'>Bebé Com 16 Meses Já Sabe Aquilo Que Quer | tafixe.com</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'35\'/><yt:uploaded>2012-02-07T11:56:15.000Z</yt:uploaded><yt:videoid>vpcuz4XmOpw</yt:videoid></media:group><gd:rating average=\'4.729231\' max=\'5\' min=\'1\' numRaters=\'650\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'113\' viewCount=\'299755\'/><yt:rating numDislikes=\'44\' numLikes=\'606\'/></entry><entry gd:etag=\'W/&quot;DEMAQn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:niyTIbiV19A</id><published>2012-02-07T17:02:56.000Z</published><updated>2012-02-09T05:47:23.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'stuff\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'people\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'say\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'photographers\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'business\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'funny\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'humor\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'canon\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'nikon\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'portraits\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'photoshop\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'print\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'client\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'studio\'/><title>Shtuff People Say to Photographers</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/niyTIbiV19A?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=niyTIbiV19A&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/niyTIbiV19A/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/niyTIbiV19A/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/niyTIbiV19A/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/niyTIbiV19A/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=niyTIbiV19A\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/niyTIbiV19A?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>berniekale7</name><uri>http://gdata.youtube.com/feeds/api/users/YTsf3tga2CJnXcT999IJWg</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/niyTIbiV19A/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'385\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/niyTIbiV19A?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'221\' yt:format=\'5\'/><media:content url=\'rtsp://v2.cache3.c.youtube.com/CnELENy73wIaaAnQ15W4IZMsnhMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'221\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache2.c.youtube.com/CnELENy73wIaaAnQ15W4IZMsnhMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'221\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>berniekale7</media:credit><media:description type=\'plain\'>http://www.facebook.com/#!/pages/Outward-Bound-Collective-Bernie-Kale-Photography/107205476018453</media:description><media:keywords>stuff, people, say, photographers, business, funny, humor, canon, nikon, portraits, photoshop, print, client, studio</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=niyTIbiV19A&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/niyTIbiV19A/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:50.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/niyTIbiV19A/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/niyTIbiV19A/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:55.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/niyTIbiV19A/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:50.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/niyTIbiV19A/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:45.750\' yt:name=\'end\'/><media:title type=\'plain\'>Shtuff People Say to Photographers</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'221\'/><yt:uploaded>2012-02-07T17:02:56.000Z</yt:uploaded><yt:videoid>niyTIbiV19A</yt:videoid></media:group><gd:rating average=\'4.89927\' max=\'5\' min=\'1\' numRaters=\'2740\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1077\' viewCount=\'293220\'/><yt:rating numDislikes=\'69\' numLikes=\'2671\'/></entry><entry gd:etag=\'W/&quot;DEMNR347eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:TiMxx78KhuM</id><published>2012-02-07T04:05:26.000Z</published><updated>2012-02-09T05:48:16.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Sports\' label=\'Sports\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NBA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jeremy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lin\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Highlights\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'vs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Utah\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jazz\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HD\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Carmelo\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Anthony\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Amare\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Stoudemire\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'New\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'York\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Knicks\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Bryant\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Kobe\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Kobe Bryant\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'James\'/><title>Jeremy Lin Highlights vs Utah Jazz || 2.6.2012 || HD</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/TiMxx78KhuM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=TiMxx78KhuM&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TiMxx78KhuM/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TiMxx78KhuM/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TiMxx78KhuM/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TiMxx78KhuM/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=TiMxx78KhuM\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/TiMxx78KhuM?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>geraldd39</name><uri>http://gdata.youtube.com/feeds/api/users/wIb2XQ21knE-vesHb8wx_A</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/TiMxx78KhuM/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'379\'/></gd:comments><yt:hd/><media:group><media:category label=\'Sports\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Sports</media:category><media:content url=\'http://www.youtube.com/v/TiMxx78KhuM?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'387\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache7.c.youtube.com/CnELENy73wIaaAnjhgq_xzEjThMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'387\' yt:format=\'1\'/><media:content url=\'rtsp://v7.cache4.c.youtube.com/CnELENy73wIaaAnjhgq_xzEjThMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'387\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>geraldd39</media:credit><media:description type=\'plain\'>With Melo and Amare both out, Jeremy Lin stepped up again, scoring 28 points in a Knicks win.

Jeremy Lin Highlights vs Utah Jazz || 2.6.2012 || HD

28pts 8ast 2st</media:description><media:keywords>NBA, Jeremy, Lin, Highlights, vs, Utah, Jazz, HD, Carmelo, Anthony, Amare, Stoudemire, New, York, Knicks, Bryant, Kobe, Kobe Bryant, James</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=TiMxx78KhuM&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TiMxx78KhuM/default.jpg\' height=\'90\' width=\'120\' time=\'00:03:13.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TiMxx78KhuM/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TiMxx78KhuM/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:36.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TiMxx78KhuM/2.jpg\' height=\'90\' width=\'120\' time=\'00:03:13.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TiMxx78KhuM/3.jpg\' height=\'90\' width=\'120\' time=\'00:04:50.250\' yt:name=\'end\'/><media:title type=\'plain\'>Jeremy Lin Highlights vs Utah Jazz || 2.6.2012 || HD</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'387\'/><yt:uploaded>2012-02-07T04:05:26.000Z</yt:uploaded><yt:videoid>TiMxx78KhuM</yt:videoid></media:group><gd:rating average=\'4.974536\' max=\'5\' min=\'1\' numRaters=\'1885\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'559\' viewCount=\'286784\'/><yt:rating numDislikes=\'12\' numLikes=\'1873\'/></entry><entry gd:etag=\'W/&quot;DEIGQn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:y0RB0f8tay4</id><published>2012-02-06T21:52:03.000Z</published><updated>2012-02-09T05:48:43.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Music\' label=\'Music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'You\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Da\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'One\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Rihanna\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Megan\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Nicole\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'lyrics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'cover\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'megannicolesite\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'official\'/><title>You Da One - Rihanna (cover) Megan Nicole</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/y0RB0f8tay4?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=y0RB0f8tay4&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/y0RB0f8tay4/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/y0RB0f8tay4/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/y0RB0f8tay4/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/y0RB0f8tay4/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=y0RB0f8tay4\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/y0RB0f8tay4?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>megannicolesite</name><uri>http://gdata.youtube.com/feeds/api/users/hWmYNTHQpLmJdkScwNrgcA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/y0RB0f8tay4/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'3734\'/></gd:comments><yt:hd/><media:group><media:category label=\'Music\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Music</media:category><media:content url=\'http://www.youtube.com/v/y0RB0f8tay4?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'212\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache1.c.youtube.com/CnELENy73wIaaAkuay3_0UFEyxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'212\' yt:format=\'1\'/><media:content url=\'rtsp://v6.cache4.c.youtube.com/CnELENy73wIaaAkuay3_0UFEyxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'212\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>megannicolesite</media:credit><media:description type=\'plain\'>Download my original \"B-e-a-utiful\" on itunes: http://itunes.apple.com/us/album/b-e-a-utiful-single/id440703718?uo=4
You Da One (cover): http://itunes.apple.com/us/album/you-da-one-single/id500317556

Hi,

You can find me on...

FACEBOOK: 

http://www.facebook.com/megannicolesite

TWITTER:
http://www.twitter.com/megannicolesite

WEBSITE:

http://www.megannicolemusic.com

INSTAGRAM APP:

@megannicolemusic

My sister Madison is starting a YouTube Channel! Be sure to subscribe to her channel http://www.youtube.com/maddietaylor3tv

FACEBOOK:
http://www.facebook.com/maddietaylor3tv

TWITTER:
http://www.twitter.com/maddietaylor3


\'You Da One\' as originally by Rihanna
Written by: Ester Dean, Lukasz Gottwald, Robyn Fenty, John Hill, Henry Walter
Published by: Kobalt Music Publishing, EMI April Music Inc, EMI Blackwood Music Publishing &amp; Songs of Universal Inc.</media:description><media:keywords>You, Da, One, Rihanna, Megan, Nicole, lyrics, cover, megannicolesite, music, video, official</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=y0RB0f8tay4&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/y0RB0f8tay4/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:46\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/y0RB0f8tay4/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/y0RB0f8tay4/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:53\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/y0RB0f8tay4/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:46\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/y0RB0f8tay4/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:39\' yt:name=\'end\'/><media:title type=\'plain\'>You Da One - Rihanna (cover) Megan Nicole</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'212\'/><yt:uploaded>2012-02-06T21:52:03.000Z</yt:uploaded><yt:videoid>y0RB0f8tay4</yt:videoid></media:group><gd:rating average=\'4.9208245\' max=\'5\' min=\'1\' numRaters=\'15914\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'3964\' viewCount=\'285517\'/><yt:rating numDislikes=\'315\' numLikes=\'15599\'/></entry><entry gd:etag=\'W/&quot;DEQMSX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:TDh1QuJ6JPY</id><published>2012-02-07T03:56:40.000Z</published><updated>2012-02-09T05:46:28.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Sports\' label=\'Sports\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Greg Jones\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'NFL\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'linebacker\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'rookie\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Greg Jones Video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'New York Giants\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Girlfriend\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Proposal\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Ring\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Super Bowl\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'National Football League\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Video Clip\'/><title>Greg Jones Proposal Super Bowl Onfield Marriage Proposal (exclusive &amp; original footage)</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/TDh1QuJ6JPY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=TDh1QuJ6JPY&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TDh1QuJ6JPY/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TDh1QuJ6JPY/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TDh1QuJ6JPY/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/TDh1QuJ6JPY/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=TDh1QuJ6JPY\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/TDh1QuJ6JPY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>IMAVEX</name><uri>http://gdata.youtube.com/feeds/api/users/Zd1StoDwptQH6PXLoihp-w</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/TDh1QuJ6JPY/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'431\'/></gd:comments><yt:hd/><yt:location>Lucus Oil Stadium</yt:location><media:group><media:category label=\'Sports\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Sports</media:category><media:content url=\'http://www.youtube.com/v/TDh1QuJ6JPY?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'18\' yt:format=\'5\'/><media:content url=\'rtsp://v7.cache1.c.youtube.com/CnELENy73wIaaAn2JHriQnU4TBMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'18\' yt:format=\'1\'/><media:content url=\'rtsp://v8.cache3.c.youtube.com/CnELENy73wIaaAn2JHriQnU4TBMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'18\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>IMAVEX</media:credit><media:description type=\'plain\'>New York Giants player, Greg Jones, proposes to his girlfriend after the Giants defeated the Patriots in Super Bowl 46, Indianapolis, Indiana. This is the original and uncut video footage that is being used by ESPN, Yahoo! Sports, E! Entertainment, CBS New York and other media outlets.

ATTN MEDIA
If you are interested in the original file footage for on-air broadcast, please send an email to Steven Burzynski, President of IMAVEX: sb@imavex.com.</media:description><media:keywords>Greg Jones, NFL, linebacker, rookie, Greg Jones Video, New York Giants, Girlfriend, Proposal, Ring, Super Bowl, National Football League, Video Clip</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=TDh1QuJ6JPY&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TDh1QuJ6JPY/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:09\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TDh1QuJ6JPY/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TDh1QuJ6JPY/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:04.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TDh1QuJ6JPY/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:09\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/TDh1QuJ6JPY/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:13.500\' yt:name=\'end\'/><media:title type=\'plain\'>Greg Jones Proposal Super Bowl Onfield Marriage Proposal (exclusive &amp; original footage)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'18\'/><yt:uploaded>2012-02-07T03:56:40.000Z</yt:uploaded><yt:videoid>TDh1QuJ6JPY</yt:videoid></media:group><gd:rating average=\'3.9421487\' max=\'5\' min=\'1\' numRaters=\'242\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:recorded>2012-02-05</yt:recorded><yt:statistics favoriteCount=\'52\' viewCount=\'285509\'/><yt:rating numDislikes=\'64\' numLikes=\'178\'/></entry><entry gd:etag=\'W/&quot;DEMGQn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:CFi1Mjq7k5I</id><published>2012-02-06T18:03:10.000Z</published><updated>2012-02-09T05:47:03.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'People\' label=\'People &amp; Blogs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'shanedawsontv\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hang\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'with\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'shane\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'day\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'25\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'funny\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'lap\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dance\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sexy\'/><title>MY GAY LAPDANCE! (Hang With Shane : Day 25)</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/CFi1Mjq7k5I?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=CFi1Mjq7k5I&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/CFi1Mjq7k5I/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/CFi1Mjq7k5I/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/CFi1Mjq7k5I/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/CFi1Mjq7k5I/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=CFi1Mjq7k5I\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/CFi1Mjq7k5I?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>shane</name><uri>http://gdata.youtube.com/feeds/api/users/V9_KinVpV-snHe3C3n1hvA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/CFi1Mjq7k5I/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'8473\'/></gd:comments><media:group><media:category label=\'People &amp; Blogs\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>People</media:category><media:content url=\'http://www.youtube.com/v/CFi1Mjq7k5I?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'631\' yt:format=\'5\'/><media:content url=\'rtsp://v5.cache6.c.youtube.com/CnELENy73wIaaAmSk7s6MrVYCBMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'631\' yt:format=\'1\'/><media:content url=\'rtsp://v5.cache4.c.youtube.com/CnELENy73wIaaAmSk7s6MrVYCBMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'631\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>shane</media:credit><media:description type=\'plain\'>THANKS FOR SUBSCRIBING! :)
I have 3 channels! Check em out! :)
*Main Channel*
http://www.youtube.com/shanedawsontv
*2nd Channel* (vlogs &amp; extras)
http://www.youtube.com/shanedawsontv2
*iPhone Channel* (daily vlogs)
http://www.youtube.com/shane

People in this vid
kate http://www.youtube.com/therealkatsketch
lisa http://www.youtube.com/lisbug
mom http://www.twitter.com/teresayaw
steve http://www.youtube.com/SteveGreeneComedy
Bree http://www.youtube.com/BreeEssrig


Hit me up on my social networks!
Facebook
http://www.facebook.com/shanedawsonfans
Twitter
http://www.twitter.com/shanedawson
Website
http://www.shanedawsontv.com
Shirts &amp; Merch
http://store.bandmerch.com/shanedawson/

Send letters to my P.O. Box
12501 Burbank Blvd. suite 4 PMB 252
Valley Village, Ca 91607

*Film &amp; Television Agent:
William Morris Endeavor

*Film &amp; Television Manager
as well as Internet or Interview 
Inquiries:
Patti Crosby
Pttcrosby@aol.com

*Merchandising &amp; Branding Agent:
Shelly Marchetti 
smarchetti@apa-agency.com</media:description><media:keywords>shanedawsontv, hang, with, shane, day, 25, funny, lap, dance, sexy</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=CFi1Mjq7k5I&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CFi1Mjq7k5I/default.jpg\' height=\'90\' width=\'120\' time=\'00:05:15.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CFi1Mjq7k5I/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CFi1Mjq7k5I/1.jpg\' height=\'90\' width=\'120\' time=\'00:02:37.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CFi1Mjq7k5I/2.jpg\' height=\'90\' width=\'120\' time=\'00:05:15.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/CFi1Mjq7k5I/3.jpg\' height=\'90\' width=\'120\' time=\'00:07:53.250\' yt:name=\'end\'/><media:title type=\'plain\'>MY GAY LAPDANCE! (Hang With Shane : Day 25)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'631\'/><yt:uploaded>2012-02-06T18:03:10.000Z</yt:uploaded><yt:videoid>CFi1Mjq7k5I</yt:videoid></media:group><gd:rating average=\'4.954192\' max=\'5\' min=\'1\' numRaters=\'9780\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1687\' viewCount=\'260678\'/><yt:rating numDislikes=\'112\' numLikes=\'9668\'/></entry><entry gd:etag=\'W/&quot;DEMGQn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:VC-cXEZaAYE</id><published>2012-02-06T21:53:01.000Z</published><updated>2012-02-09T05:47:03.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Music\' label=\'Music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'skrillex\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mothership\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mothership tour\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'skrillex tour\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'skrillex live\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'skrillex official\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'bangarang\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'remix\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Concert Remix Short Film\'/><title>Mothership Tour (Short Film) - Skrillex</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/VC-cXEZaAYE?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=VC-cXEZaAYE&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VC-cXEZaAYE/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VC-cXEZaAYE/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VC-cXEZaAYE/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VC-cXEZaAYE/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=VC-cXEZaAYE\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/VC-cXEZaAYE?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>TheOfficialSkrillex</name><uri>http://gdata.youtube.com/feeds/api/users/_TVqp_SyG6j5hG-xVRy95A</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/VC-cXEZaAYE/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'3870\'/></gd:comments><yt:hd/><media:group><media:category label=\'Music\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Music</media:category><media:content url=\'http://www.youtube.com/v/VC-cXEZaAYE?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'601\' yt:format=\'5\'/><media:content url=\'rtsp://v4.cache2.c.youtube.com/CnELENy73wIaaAmBAVpGXJwvVBMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'601\' yt:format=\'1\'/><media:content url=\'rtsp://v3.cache4.c.youtube.com/CnELENy73wIaaAmBAVpGXJwvVBMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'601\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>TheOfficialSkrillex</media:credit><media:description type=\'plain\'>A Stephen Alex Vasquez film</media:description><media:keywords>skrillex, mothership, mothership tour, skrillex tour, skrillex live, skrillex official, bangarang, remix, Concert Remix Short Film</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=VC-cXEZaAYE&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VC-cXEZaAYE/default.jpg\' height=\'90\' width=\'120\' time=\'00:05:00.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VC-cXEZaAYE/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VC-cXEZaAYE/1.jpg\' height=\'90\' width=\'120\' time=\'00:02:30.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VC-cXEZaAYE/2.jpg\' height=\'90\' width=\'120\' time=\'00:05:00.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VC-cXEZaAYE/3.jpg\' height=\'90\' width=\'120\' time=\'00:07:30.750\' yt:name=\'end\'/><media:title type=\'plain\'>Mothership Tour (Short Film) - Skrillex</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'601\'/><yt:uploaded>2012-02-06T21:53:01.000Z</yt:uploaded><yt:videoid>VC-cXEZaAYE</yt:videoid></media:group><gd:rating average=\'4.907834\' max=\'5\' min=\'1\' numRaters=\'8680\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'2894\' viewCount=\'256330\'/><yt:rating numDislikes=\'200\' numLikes=\'8480\'/></entry><entry gd:etag=\'W/&quot;DEMNSX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:B_rckzAS4iQ</id><published>2012-02-06T18:46:30.000Z</published><updated>2012-02-09T05:48:18.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Entertainment\' label=\'Entertainment\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Joe\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Bereta\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Elliott\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Morgan\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Philip\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'DeFranco\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sxephil\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'20\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'minutes\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'or\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'less\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'SourceFed\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Super\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Bowl\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Commercials\'/><title>Super Bowl Commercials WINS &amp; FAILS</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/B_rckzAS4iQ?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.in-response-to\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/7eoKLD-XfZY?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=B_rckzAS4iQ&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/B_rckzAS4iQ/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/B_rckzAS4iQ/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/B_rckzAS4iQ/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/B_rckzAS4iQ/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=B_rckzAS4iQ\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/B_rckzAS4iQ?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>SourceFed</name><uri>http://gdata.youtube.com/feeds/api/users/_gE-kg7JvuwCNlbZ1-shlA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/B_rckzAS4iQ/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'2633\'/></gd:comments><yt:hd/><media:group><media:category label=\'Entertainment\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Entertainment</media:category><media:content url=\'http://www.youtube.com/v/B_rckzAS4iQ?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'184\' yt:format=\'5\'/><media:content url=\'rtsp://v1.cache8.c.youtube.com/CnELENy73wIaaAkk4hIwk9z6BxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'184\' yt:format=\'1\'/><media:content url=\'rtsp://v5.cache3.c.youtube.com/CnELENy73wIaaAkk4hIwk9z6BxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'184\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>SourceFed</media:credit><media:description type=\'plain\'>Watch more of today\'s news http://youtube.com/sourcefed

We discuss which commercials at the 2012 Super Bowl were a success and which ones were just disappointing...

Check out http://www.BleacherReport.com for more info:
http://www.youtube.com/user/BleacherReport

Philly D OFFICIAL APP: http://bit.ly/aIyY0w

Follow us on twitter: http://twitter.com/sourcefed

Hosts:
@joebereta @elliottcmorgan

Music:
@hagemeister</media:description><media:keywords>Joe, Bereta, Elliott, Morgan, Philip, DeFranco, sxephil, 20, minutes, or, less, SourceFed, Super, Bowl, Commercials</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=B_rckzAS4iQ&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/B_rckzAS4iQ/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:32\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/B_rckzAS4iQ/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/B_rckzAS4iQ/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:46\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/B_rckzAS4iQ/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:32\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/B_rckzAS4iQ/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:18\' yt:name=\'end\'/><media:title type=\'plain\'>Super Bowl Commercials WINS &amp; FAILS</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'184\'/><yt:uploaded>2012-02-06T18:46:30.000Z</yt:uploaded><yt:videoid>B_rckzAS4iQ</yt:videoid></media:group><gd:rating average=\'4.9034414\' max=\'5\' min=\'1\' numRaters=\'7788\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'278\' viewCount=\'255960\'/><yt:rating numDislikes=\'188\' numLikes=\'7600\'/></entry><entry gd:etag=\'W/&quot;DEcARX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:aHgvzi_r-pA</id><published>2012-02-06T16:48:50.000Z</published><updated>2012-02-09T05:40:44.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'People\' label=\'People &amp; Blogs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'20120206\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'全民最大黨\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'最大黨電影\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'九品芝麻官\'/><title>20120206-全民最大黨-最大黨電影 九品芝麻官</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/aHgvzi_r-pA?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=aHgvzi_r-pA&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/aHgvzi_r-pA/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/aHgvzi_r-pA/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/aHgvzi_r-pA/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/aHgvzi_r-pA/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=aHgvzi_r-pA\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/aHgvzi_r-pA?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>mocaca0918</name><uri>http://gdata.youtube.com/feeds/api/users/K67HdCIXvyiVBLR4N5td5Q</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/aHgvzi_r-pA/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'130\'/></gd:comments><media:group><media:category label=\'People &amp; Blogs\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>People</media:category><media:content url=\'http://www.youtube.com/v/aHgvzi_r-pA?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'830\' yt:format=\'5\'/><media:content url=\'rtsp://v4.cache8.c.youtube.com/CnELENy73wIaaAmQ-usvzi94aBMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'830\' yt:format=\'1\'/><media:content url=\'rtsp://v1.cache8.c.youtube.com/CnELENy73wIaaAmQ-usvzi94aBMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'830\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>mocaca0918</media:credit><media:description type=\'plain\'>衙役-番薯 大根 包籠星-從從 常葳-喬治 戚琴氏-袁艾菲 方糖鏡-陳漢典</media:description><media:keywords>20120206, 全民最大黨, 最大黨電影, 九品芝麻官</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=aHgvzi_r-pA&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/aHgvzi_r-pA/default.jpg\' height=\'90\' width=\'120\' time=\'00:06:55\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/aHgvzi_r-pA/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/aHgvzi_r-pA/1.jpg\' height=\'90\' width=\'120\' time=\'00:03:27.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/aHgvzi_r-pA/2.jpg\' height=\'90\' width=\'120\' time=\'00:06:55\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/aHgvzi_r-pA/3.jpg\' height=\'90\' width=\'120\' time=\'00:10:22.500\' yt:name=\'end\'/><media:title type=\'plain\'>20120206-全民最大黨-最大黨電影 九品芝麻官</media:title><yt:duration seconds=\'830\'/><yt:uploaded>2012-02-06T16:48:50.000Z</yt:uploaded><yt:videoid>aHgvzi_r-pA</yt:videoid></media:group><gd:rating average=\'4.834275\' max=\'5\' min=\'1\' numRaters=\'531\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'98\' viewCount=\'255413\'/><yt:rating numDislikes=\'22\' numLikes=\'509\'/></entry><entry gd:etag=\'W/&quot;DUEDRn47eCp7I2A9WhRbF0g.&quot;\'><id>tag:youtube.com,2008:video:EcSUbkE87WA</id><published>2012-02-07T03:44:22.000Z</published><updated>2012-02-09T03:21:17.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Music\' label=\'Music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hip hop\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'rap\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dj drama\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gangsta grillz\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'boobe\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'oy boyz\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'music\'/><title>Boobe (@ONEWAYBOOBE) - Don\'t Text Me co-starring Da\'Livia (@MsDaLivia) (OFFICIAL MUSIC VIDEO)</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/EcSUbkE87WA?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=EcSUbkE87WA&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/EcSUbkE87WA/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/EcSUbkE87WA/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/EcSUbkE87WA/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/EcSUbkE87WA/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=EcSUbkE87WA\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/EcSUbkE87WA?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>OneWayBoobe</name><uri>http://gdata.youtube.com/feeds/api/users/G96Jq0pDCTC-vE0A-205dQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/EcSUbkE87WA/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'16\'/></gd:comments><yt:hd/><media:group><media:category label=\'Music\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Music</media:category><media:content url=\'http://www.youtube.com/v/EcSUbkE87WA?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'279\' yt:format=\'5\'/><media:content url=\'rtsp://v3.cache1.c.youtube.com/CnELENy73wIaaAlg7TxBbpTEERMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'279\' yt:format=\'1\'/><media:content url=\'rtsp://v8.cache1.c.youtube.com/CnELENy73wIaaAlg7TxBbpTEERMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'279\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>OneWayBoobe</media:credit><media:description type=\'plain\'>Boobe \"Don\'t Text Me\" from his mixtape Gangsta Grillz Boobe Trap hosted by DJ Drama.

Featured on WorldStarHipHop.com

Follow Boobe on Twitter: http://www.twitter.com/onewayboobe

Directed by DJ J-Scrilla http://www.twitter.com/dj_jscrilla &amp; Chop N Shoot Films http://www.twitter.com/chopnshoot</media:description><media:keywords>hip hop, rap, dj drama, gangsta grillz, boobe, oy boyz, music</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=EcSUbkE87WA&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/EcSUbkE87WA/default.jpg\' height=\'90\' width=\'120\' time=\'00:02:19.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/EcSUbkE87WA/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/EcSUbkE87WA/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:09.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/EcSUbkE87WA/2.jpg\' height=\'90\' width=\'120\' time=\'00:02:19.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/EcSUbkE87WA/3.jpg\' height=\'90\' width=\'120\' time=\'00:03:29.250\' yt:name=\'end\'/><media:title type=\'plain\'>Boobe (@ONEWAYBOOBE) - Don\'t Text Me co-starring Da\'Livia (@MsDaLivia) (OFFICIAL MUSIC VIDEO)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'279\'/><yt:uploaded>2012-02-07T03:44:22.000Z</yt:uploaded><yt:videoid>EcSUbkE87WA</yt:videoid></media:group><gd:rating average=\'5.0\' max=\'5\' min=\'1\' numRaters=\'28\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'22\' viewCount=\'243607\'/><yt:rating numDislikes=\'0\' numLikes=\'28\'/></entry><entry gd:etag=\'W/&quot;DEIAQn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:lwNTd3FpsGs</id><published>2012-02-07T08:34:08.000Z</published><updated>2012-02-09T05:49:03.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Shows\' label=\'Shows\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'приколы\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'прикол\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'любовь\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'квн 2011\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'кот\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'+100500\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'бородач\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'this is хорошо\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'танец\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'драка\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'100500\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'квн\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'реклама\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'наша раша\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2011\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'маша и медведь\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'язь\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'музыка\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'песни\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'русские\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'прожекторперисхилтон\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'танцы\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'авария\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'путин\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'мультфильмы\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'хорошо\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'уральские пельмени\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'this is\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'minecraft\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ржач\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'угар\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'стеб\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'смех\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'юмор\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'пародия\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'к\'/><title>Hell Yeah! Covers - Паранормальный стояк</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/lwNTd3FpsGs?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=lwNTd3FpsGs&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/lwNTd3FpsGs/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/lwNTd3FpsGs/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/lwNTd3FpsGs/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/lwNTd3FpsGs/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=lwNTd3FpsGs\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/lwNTd3FpsGs?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>HellYeahCovers</name><uri>http://gdata.youtube.com/feeds/api/users/dKZ0FxKT37YEQ_YYaeTBCQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><yt:availability start=\'2012-02-07T00:00:00.000Z\' end=\'2037-12-31T12:00:00.000Z\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/lwNTd3FpsGs/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'716\'/></gd:comments><yt:episode number=\'28\'/><yt:firstReleased>2012-02-07T08:00:00.000Z</yt:firstReleased><yt:hd/><media:group><media:category label=\'Shows\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Shows</media:category><media:category scheme=\'http://gdata.youtube.com/schemas/2007/releasemediums.cat\'>6</media:category><media:category scheme=\'http://gdata.youtube.com/schemas/2007/mediatypes.cat\'>3</media:category><media:content url=\'http://www.youtube.com/v/lwNTd3FpsGs?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'184\' yt:format=\'5\'/><media:content url=\'rtsp://v5.cache2.c.youtube.com/CnELENy73wIaaAlrsGlxd1MDlxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'184\' yt:format=\'1\'/><media:content url=\'rtsp://v5.cache7.c.youtube.com/CnELENy73wIaaAlrsGlxd1MDlxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'184\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>HellYeahCovers</media:credit><media:credit role=\'Writer\' scheme=\'urn:ebu\'>Сергей Hell Yeah!</media:credit><media:credit role=\'Producer\' scheme=\'urn:ebu\'>Сергей Hell Yeah!</media:credit><media:credit role=\'Director\' scheme=\'urn:ebu\'>Сергей Hell Yeah!</media:credit><media:credit role=\'Actor\' scheme=\'urn:ebu\'>Сергей Hell Yeah!</media:credit><media:description type=\'plain\'>БОЛЬШЕ НА http://carambatv.ru
ИНФОРМАЦИОННЫЙ ПАРТНЕР http://vk.com/ifeed
ПООБЩАТЬСЯ СО МНОЙ В ВК - http://vkontakte.ru/hell_yeah_xd
УВИДЕТЬ ВСЕ НА КАНАЛЕ YOUTUBE - http://www.youtube.com/HellYeahCovers
СЛЕДИТЬ ЗА МНОЙ НА ПАБЛИКЕ ВК - http://vkontakte.ru/hell_yeah_covers
ПООБЩАТЬСЯ СО МНОЙ В TWITTER - http://twitter.com/HellYeahCovers

Анонс самого страшного фильма этого лета.
Что будет если в х*й мужика вселиться злой дух и будет себя вести как отдельное существо?
Для бабы, точно ничего хорошего. Фильм который еще не вышел, но уже удостоился кучи наград.
А что бы делали вы - если бы ваш х*й был злым?</media:description><media:keywords>приколы, прикол, любовь, квн 2011, кот, +100500, бородач, this is хорошо, танец, драка, 100500, квн, реклама, наша раша, 2011, маша и медведь, язь, музыка, песни, русские, прожекторперисхилтон, танцы, авария, путин, мультфильмы, хорошо, уральские пельмени, this is, minecraft, ржач, угар, стеб, смех, юмор, пародия, к</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=lwNTd3FpsGs&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/lwNTd3FpsGs/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:32\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/lwNTd3FpsGs/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/lwNTd3FpsGs/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:46\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/lwNTd3FpsGs/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:32\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/lwNTd3FpsGs/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:18\' yt:name=\'end\'/><media:title type=\'plain\'>Hell Yeah! Covers - Паранормальный стояк</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'184\'/><yt:uploaded>2012-02-07T08:34:08.000Z</yt:uploaded><yt:videoid>lwNTd3FpsGs</yt:videoid></media:group><gd:rating average=\'4.358736\' max=\'5\' min=\'1\' numRaters=\'4304\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'164\' viewCount=\'243388\'/><yt:rating numDislikes=\'690\' numLikes=\'3614\'/></entry><entry gd:etag=\'W/&quot;DEMBQH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:atCfTRMyjGU</id><published>2012-02-07T12:46:31.000Z</published><updated>2012-02-09T05:47:31.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Film\' label=\'Film &amp; Animation\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'the amazing spider-man\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'new trailer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'movie trailer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'film trailer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'official trailer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hd trailer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'high definition trailer\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'1080p\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'superhero\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'spiderman\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'spider-man\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'spiderman 4\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'spider-man 4\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'peter parker\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Andrew Garfield\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Emma Stone\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Rhys Ifans\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sally Field\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Martin Sheen\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Denis Leary\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Irrfan Khan\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Campbell Scott\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Annie Parisse\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'C. Thomas Howell\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Julianne Nicholson\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Chris Zylka\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Miles Elliot\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mark webb\'/><title>The Amazing Spider-Man New Trailer 2 Official 2012 [1080 HD] - Andrew Garfield</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/atCfTRMyjGU?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=atCfTRMyjGU&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/atCfTRMyjGU/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/atCfTRMyjGU/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/atCfTRMyjGU/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/atCfTRMyjGU/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=atCfTRMyjGU\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/atCfTRMyjGU?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>clevverTV</name><uri>http://gdata.youtube.com/feeds/api/users/bdTs9fanN16NOrYSmq1JeQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/atCfTRMyjGU/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'2697\'/></gd:comments><yt:hd/><media:group><media:category label=\'Film &amp; Animation\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Film</media:category><media:content url=\'http://www.youtube.com/v/atCfTRMyjGU?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'171\' yt:format=\'5\'/><media:content url=\'rtsp://v4.cache2.c.youtube.com/CnELENy73wIaaAlljDITTZ_QahMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'171\' yt:format=\'1\'/><media:content url=\'rtsp://v1.cache1.c.youtube.com/CnELENy73wIaaAlljDITTZ_QahMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'171\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>clevverTV</media:credit><media:description type=\'plain\'>http://Facebook.com/ClevverTV - Become a Fan!
http://Twitter.com/ClevverTV - Follow Us!

The Amazing Spider-Man hits theaters on July 3rd, 2012.

The Amazing Spiderman, Spiderman 4, Spider-Man 4, Spider Man

Cast: Andrew Garfield, Emma Stone, Rhys Ifans, Sally Field, Martin Sheen, Denis Leary, Irrfan Khan, Campbell Scott, Annie Parisse, C. Thomas Howell, Julianne Nicholson, Chris Zylka, Miles Elliot

One of the world\'s most popular characters is back on the big screen as a new chapter in the Spider-Man legacy is revealed in The Amazing Spider-Man™. Focusing on an untold story that tells a different side of the Peter Parker story, the new film stars Andrew Garfield, Emma Stone, Rhys Ifans, Denis Leary, Campbell Scott, Irrfan Khan, with Martin Sheen and Sally Field.  The film is directed by Marc Webb from a screenplay written by James Vanderbilt, based on the Marvel Comic Book by Stan Lee and Steve Ditko.  Laura Ziskin, Avi Arad, and Matt Tolmach are producing the film in association with Marvel Entertainment for Columbia Pictures, which will open in theaters everywhere in 3D on July 3, 2012.
 
The Amazing Spider-Man is the story of Peter Parker (Garfield), an outcast high schooler who was abandoned by his parents as a boy, leaving him to be raised by his Uncle Ben (Sheen) and Aunt May (Field).  Like most teenagers, Peter is trying to figure out who he is and how he got to be the person he is today.  Peter is also finding his way with his first high school crush, Gwen Stacy (Stone), and together, they struggle with love, commitment, and secrets.  As Peter discovers a mysterious briefcase that belonged to his father, he begins a quest to understand his parents\' disappearance -- leading him directly to Oscorp and the lab of Dr. Curt Connors (Ifans), his father\'s former partner.  As Spider-Man is set on a collision course with Connors\' alter-ego, The Lizard, Peter will make life-altering choices to use his powers and shape his destiny to become a hero. 

The Amazing Spider-Man official trailer courtesy Columbia Pictures.</media:description><media:keywords>the amazing spider-man, new trailer, movie trailer, film trailer, official trailer, hd trailer, high definition trailer, 1080p, superhero, spiderman, spider-man, spiderman 4, spider-man 4, peter parker, Andrew Garfield, Emma Stone, Rhys Ifans, Sally Field, Martin Sheen, Denis Leary, Irrfan Khan, Campbell Scott, Annie Parisse, C. Thomas Howell, Julianne Nicholson, Chris Zylka, Miles Elliot, mark webb</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=atCfTRMyjGU&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/atCfTRMyjGU/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:25.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/atCfTRMyjGU/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/atCfTRMyjGU/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:42.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/atCfTRMyjGU/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:25.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/atCfTRMyjGU/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:08.250\' yt:name=\'end\'/><media:title type=\'plain\'>The Amazing Spider-Man New Trailer 2 Official 2012 [1080 HD] - Andrew Garfield</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'171\'/><yt:uploaded>2012-02-07T12:46:31.000Z</yt:uploaded><yt:videoid>atCfTRMyjGU</yt:videoid></media:group><gd:rating average=\'4.822321\' max=\'5\' min=\'1\' numRaters=\'3602\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1581\' viewCount=\'242613\'/><yt:rating numDislikes=\'160\' numLikes=\'3442\'/></entry><entry gd:etag=\'W/&quot;DEUCQH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:jvlnYlxkbIQ</id><published>2012-02-07T05:14:06.000Z</published><updated>2012-02-09T05:44:21.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Sports\' label=\'Sports\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'New\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'York\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Knicks\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jersey\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Nets\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Career\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'High\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Taiwanese\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Pride\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Golden\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'State\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Warriors\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Houston\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Rockets\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Erie\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Bayhawks\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Dleague\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Best\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Asian\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'athlete\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ever\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'basketball\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'players\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'superstars\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'God\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Faith\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Christian\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Harvard\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CBA\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Mandarin\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'National\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Team\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Reno\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Bighorns\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Mixtape\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pointers\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Crossover\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Alley\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'oop\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Dunks\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Clutch\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'4th\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'quarter\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Kobe\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Lebron\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Deron\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Williams\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Kevin\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Durant\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Derrick\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Rose\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Chris\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Paul\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Russell\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Westbrook\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Brandon\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jennings\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'dominates\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'murks\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'destroys\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'owns\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pwns\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Utah\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Jazz\'/><title>[HD] Jeremy Lin - Knicks vs Utah Jazz 28 points - FULL COMPLETE HIGHLIGHTS [Taiwanese Pride]</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/jvlnYlxkbIQ?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=jvlnYlxkbIQ&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/jvlnYlxkbIQ/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/jvlnYlxkbIQ/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/jvlnYlxkbIQ/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/jvlnYlxkbIQ/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=jvlnYlxkbIQ\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/jvlnYlxkbIQ?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>TaiwaneseNOTChinese</name><uri>http://gdata.youtube.com/feeds/api/users/MVE4mBYx4d0a35VBU0HI-A</uri></author><yt:accessControl action=\'comment\' permission=\'moderated\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/jvlnYlxkbIQ/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'368\'/></gd:comments><georss:where><gml:Point><gml:pos>25.085598897064752 121.5087890625</gml:pos></gml:Point></georss:where><yt:hd/><media:group><media:category label=\'Sports\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Sports</media:category><media:content url=\'http://www.youtube.com/v/jvlnYlxkbIQ?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'538\' yt:format=\'5\'/><media:content url=\'rtsp://v5.cache6.c.youtube.com/CnELENy73wIaaAmEbGRcYmf5jhMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'538\' yt:format=\'1\'/><media:content url=\'rtsp://v7.cache3.c.youtube.com/CnELENy73wIaaAmEbGRcYmf5jhMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'538\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>TaiwaneseNOTChinese</media:credit><media:description type=\'plain\'>Career High game in a row! HD Complete and Full Highlights of Jeremy Lin\'s career night from New York Knicks vs Utah Jazza. Jeremy Lin gets a career high with 28 pts, 8 assists, 2 rebounds, 2 steals on 10-17 FG in 44:52 mins of play on February 6th, 2012 [2/6/2012]

Post Game Interview:
http://www.youtube.com/watch?v=Dzi1LXL1Bgs


For more videos on Jeremy Lin, visit:
http://asianathletes.wordpress.com/

Special thanks to Shacmng</media:description><media:keywords>New, York, Knicks, Jersey, Nets, Career, High, Taiwanese, Pride, Golden, State, Warriors, Houston, Rockets, Erie, Bayhawks, Dleague, Best, Asian, athlete, ever, basketball, players, superstars, God, Faith, Christian, Harvard, CBA, Mandarin, National, Team, Reno, Bighorns, Mixtape, pointers, Crossover, Alley, oop, Dunks, Clutch, 4th, quarter, Kobe, Lebron, Deron, Williams, Kevin, Durant, Derrick, Rose, Chris, Paul, Russell, Westbrook, Brandon, Jennings, dominates, murks, destroys, owns, pwns, Utah, Jazz</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=jvlnYlxkbIQ&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/jvlnYlxkbIQ/default.jpg\' height=\'90\' width=\'120\' time=\'00:04:29\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/jvlnYlxkbIQ/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/jvlnYlxkbIQ/1.jpg\' height=\'90\' width=\'120\' time=\'00:02:14.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/jvlnYlxkbIQ/2.jpg\' height=\'90\' width=\'120\' time=\'00:04:29\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/jvlnYlxkbIQ/3.jpg\' height=\'90\' width=\'120\' time=\'00:06:43.500\' yt:name=\'end\'/><media:title type=\'plain\'>[HD] Jeremy Lin - Knicks vs Utah Jazz 28 points - FULL COMPLETE HIGHLIGHTS [Taiwanese Pride]</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'538\'/><yt:uploaded>2012-02-07T05:14:06.000Z</yt:uploaded><yt:videoid>jvlnYlxkbIQ</yt:videoid></media:group><gd:rating average=\'4.9624767\' max=\'5\' min=\'1\' numRaters=\'1599\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'722\' viewCount=\'241334\'/><yt:rating numDislikes=\'15\' numLikes=\'1584\'/></entry><entry gd:etag=\'W/&quot;A0YCQX47eCp7I2A9WhRbF0g.&quot;\'><id>tag:youtube.com,2008:video:Ni2JOQNAzig</id><published>2012-02-07T05:43:20.000Z</published><updated>2012-02-09T03:46:00.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'People\' label=\'People &amp; Blogs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Gronk\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Pit\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Post\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Game\'/><title>Viva La Stool</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/Ni2JOQNAzig?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=Ni2JOQNAzig&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Ni2JOQNAzig/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Ni2JOQNAzig/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Ni2JOQNAzig/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/Ni2JOQNAzig/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=Ni2JOQNAzig\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/Ni2JOQNAzig?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>starfishswag</name><uri>http://gdata.youtube.com/feeds/api/users/yqC6I78cWDqnkobnVNq78A</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/Ni2JOQNAzig/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'162\'/></gd:comments><media:group><media:category label=\'People &amp; Blogs\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>People</media:category><media:content url=\'http://www.youtube.com/v/Ni2JOQNAzig?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'239\' yt:format=\'5\'/><media:content url=\'rtsp://v3.cache1.c.youtube.com/CnELENy73wIaaAkozkADOYktNhMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'239\' yt:format=\'1\'/><media:content url=\'rtsp://v8.cache8.c.youtube.com/CnELENy73wIaaAkozkADOYktNhMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'239\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>starfishswag</media:credit><media:description type=\'plain\'/><media:keywords>Gronk, Pit, Post, Game</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=Ni2JOQNAzig&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Ni2JOQNAzig/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:59.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Ni2JOQNAzig/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Ni2JOQNAzig/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:59.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Ni2JOQNAzig/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:59.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/Ni2JOQNAzig/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:59.250\' yt:name=\'end\'/><media:title type=\'plain\'>Viva La Stool</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'239\'/><yt:uploaded>2012-02-07T05:43:20.000Z</yt:uploaded><yt:videoid>Ni2JOQNAzig</yt:videoid></media:group><gd:rating average=\'3.6938775\' max=\'5\' min=\'1\' numRaters=\'98\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'54\' viewCount=\'234091\'/><yt:rating numDislikes=\'32\' numLikes=\'66\'/></entry><entry gd:etag=\'W/&quot;DEEESX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:v0-mnm38Agg</id><published>2012-02-07T18:03:58.000Z</published><updated>2012-02-09T05:50:08.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'People\' label=\'People &amp; Blogs\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'shanedawsontv\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'hang\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'with\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'shane\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'day\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'26\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'shopping\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tattoo\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'heart\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'ant\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'farm\'/><title>GETTING A TATTOO! (Hang With Shane : Day 26)</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/v0-mnm38Agg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=v0-mnm38Agg&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/v0-mnm38Agg/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/v0-mnm38Agg/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/v0-mnm38Agg/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/v0-mnm38Agg/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=v0-mnm38Agg\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/v0-mnm38Agg?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>shane</name><uri>http://gdata.youtube.com/feeds/api/users/V9_KinVpV-snHe3C3n1hvA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/v0-mnm38Agg/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'6070\'/></gd:comments><media:group><media:category label=\'People &amp; Blogs\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>People</media:category><media:content url=\'http://www.youtube.com/v/v0-mnm38Agg?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'621\' yt:format=\'5\'/><media:content url=\'rtsp://v3.cache8.c.youtube.com/CnELENy73wIaaAkIAvxtnqZPvxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'621\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache7.c.youtube.com/CnELENy73wIaaAkIAvxtnqZPvxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'621\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>shane</media:credit><media:description type=\'plain\'>THANKS FOR SUBSCRIBING! :)
I have 3 channels! Check em out! :)
*Main Channel*
http://www.youtube.com/shanedawsontv
*2nd Channel* (vlogs &amp; extras)
http://www.youtube.com/shanedawsontv2
*iPhone Channel* (daily vlogs)
http://www.youtube.com/shane

People in this vid
lisa http://www.youtube.com/lisbug


Hit me up on my social networks!
Facebook
http://www.facebook.com/shanedawsonfans
Twitter
http://www.twitter.com/shanedawson
Website
http://www.shanedawsontv.com
Shirts &amp; Merch
http://store.bandmerch.com/shanedawson/

Send letters to my P.O. Box
12501 Burbank Blvd. suite 4 PMB 252
Valley Village, Ca 91607

*Film &amp; Television Agent:
William Morris Endeavor

*Film &amp; Television Manager
as well as Internet or Interview 
Inquiries:
Patti Crosby
Pttcrosby@aol.com

*Merchandising &amp; Branding Agent:
Shelly Marchetti 
smarchetti@apa-agency.com</media:description><media:keywords>shanedawsontv, hang, with, shane, day, 26, shopping, tattoo, heart, ant, farm</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=v0-mnm38Agg&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/v0-mnm38Agg/default.jpg\' height=\'90\' width=\'120\' time=\'00:05:10.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/v0-mnm38Agg/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/v0-mnm38Agg/1.jpg\' height=\'90\' width=\'120\' time=\'00:02:35.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/v0-mnm38Agg/2.jpg\' height=\'90\' width=\'120\' time=\'00:05:10.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/v0-mnm38Agg/3.jpg\' height=\'90\' width=\'120\' time=\'00:07:45.750\' yt:name=\'end\'/><media:title type=\'plain\'>GETTING A TATTOO! (Hang With Shane : Day 26)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'621\'/><yt:uploaded>2012-02-07T18:03:58.000Z</yt:uploaded><yt:videoid>v0-mnm38Agg</yt:videoid></media:group><gd:rating average=\'4.959015\' max=\'5\' min=\'1\' numRaters=\'10638\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1964\' viewCount=\'229862\'/><yt:rating numDislikes=\'109\' numLikes=\'10529\'/></entry><entry gd:etag=\'W/&quot;DEYDSX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:ymOaOJpVVRs</id><published>2012-02-07T11:16:46.000Z</published><updated>2012-02-09T05:42:58.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Sequence\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'01\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'4\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2\'/><title>Познер и Канделаки о Навальном 1</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/ymOaOJpVVRs?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=ymOaOJpVVRs&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/ymOaOJpVVRs/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/ymOaOJpVVRs/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/ymOaOJpVVRs/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/ymOaOJpVVRs/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=ymOaOJpVVRs\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/ymOaOJpVVRs?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>gAlburov</name><uri>http://gdata.youtube.com/feeds/api/users/7lY0L2uch98Pj3-C1bmkjA</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/ymOaOJpVVRs/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'384\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/ymOaOJpVVRs?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'157\' yt:format=\'5\'/><media:content url=\'rtsp://v8.cache2.c.youtube.com/CnELENy73wIaaAkbVVWaOJpjyhMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'157\' yt:format=\'1\'/><media:content url=\'rtsp://v2.cache2.c.youtube.com/CnELENy73wIaaAkbVVWaOJpjyhMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'157\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>gAlburov</media:credit><media:description type=\'plain\'>Познер и Канделаки о Навальном (вещание на восточную часть России)
Вариант для европейской части России http://youtu.be/IiUfSJy9_fQ</media:description><media:keywords>Sequence, 01, 4, 2</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=ymOaOJpVVRs&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/ymOaOJpVVRs/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:18.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/ymOaOJpVVRs/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/ymOaOJpVVRs/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:39.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/ymOaOJpVVRs/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:18.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/ymOaOJpVVRs/3.jpg\' height=\'90\' width=\'120\' time=\'00:01:57.750\' yt:name=\'end\'/><media:title type=\'plain\'>Познер и Канделаки о Навальном 1</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'157\'/><yt:uploaded>2012-02-07T11:16:46.000Z</yt:uploaded><yt:videoid>ymOaOJpVVRs</yt:videoid></media:group><gd:rating average=\'4.729387\' max=\'5\' min=\'1\' numRaters=\'946\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'55\' viewCount=\'227927\'/><yt:rating numDislikes=\'64\' numLikes=\'882\'/></entry><entry gd:etag=\'W/&quot;DEYHSH47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:RFUtIIR0_s8</id><published>2012-02-07T08:58:54.000Z</published><updated>2012-02-09T05:42:19.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Music\' label=\'Music\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'бабки\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'мама люба\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'угар\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'клип\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'частушки\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'путин\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'прикол\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'голден бабки\'/><title>Голден Бабки - Частушки про Путина (кавер Мама Люба)</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/RFUtIIR0_s8?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=RFUtIIR0_s8&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/RFUtIIR0_s8/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/RFUtIIR0_s8/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/RFUtIIR0_s8/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/RFUtIIR0_s8/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=RFUtIIR0_s8\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/RFUtIIR0_s8?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>goldenbabkiru</name><uri>http://gdata.youtube.com/feeds/api/users/j2tuE8TJokWpCL5ldvmXBQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/RFUtIIR0_s8/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'138\'/></gd:comments><yt:hd/><media:group><media:category label=\'Music\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Music</media:category><media:content url=\'http://www.youtube.com/v/RFUtIIR0_s8?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'279\' yt:format=\'5\'/><media:content url=\'rtsp://v8.cache8.c.youtube.com/CnELENy73wIaaAnP_nSEIC1VRBMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'279\' yt:format=\'1\'/><media:content url=\'rtsp://v1.cache2.c.youtube.com/CnELENy73wIaaAnP_nSEIC1VRBMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'279\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\'>goldenbabkiru</media:credit><media:description type=\'plain\'>ВИА Голден Бабки: Выступления коллектива на корпоративах,свадьбах, юбилеях, тамада, видеосъемка. Подробности: http://goldenbabki.ru 
Подписывайтесь на ВИА Голден Бабки в социальных сетях:
http://vk.com/public35082106 
https://twitter.com/goldenbabki 
http://www.facebook.com/pages/GoldenBabki/299034543486717</media:description><media:keywords>бабки, мама люба, угар, клип, частушки, путин, прикол, голден бабки</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=RFUtIIR0_s8&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/RFUtIIR0_s8/default.jpg\' height=\'90\' width=\'120\' time=\'00:02:19.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/RFUtIIR0_s8/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/RFUtIIR0_s8/1.jpg\' height=\'90\' width=\'120\' time=\'00:01:09.750\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/RFUtIIR0_s8/2.jpg\' height=\'90\' width=\'120\' time=\'00:02:19.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/RFUtIIR0_s8/3.jpg\' height=\'90\' width=\'120\' time=\'00:03:29.250\' yt:name=\'end\'/><media:title type=\'plain\'>Голден Бабки - Частушки про Путина (кавер Мама Люба)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'279\'/><yt:uploaded>2012-02-07T08:58:54.000Z</yt:uploaded><yt:videoid>RFUtIIR0_s8</yt:videoid></media:group><gd:rating average=\'3.3642612\' max=\'5\' min=\'1\' numRaters=\'873\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'104\' viewCount=\'221621\'/><yt:rating numDislikes=\'357\' numLikes=\'516\'/></entry><entry gd:etag=\'W/&quot;DEUHRn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:VJUaOJQ017M</id><published>2012-02-06T22:41:52.000Z</published><updated>2012-02-09T05:43:57.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Games\' label=\'Gaming\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'captainsparklez\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'captain\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sparklez\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mindcraft\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'mind\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'sandbox\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'open\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'world\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'block\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'boxes\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'2d\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'3d\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'commentary\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'random\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'new\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'game\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'pc\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'gaming\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'lets\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'escapecraft\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'escape\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'craft\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'the\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'play\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'live\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'night\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'zombies\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'notch\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'episode\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tutorial\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'how\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'to\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'use\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'redstone\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'red\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'stone\'/><title>Minecraft: The Emperor of Minopia w/ Mark and Nick Part 3 - Lava Mountain</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/VJUaOJQ017M?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=VJUaOJQ017M&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VJUaOJQ017M/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VJUaOJQ017M/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VJUaOJQ017M/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/VJUaOJQ017M/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=VJUaOJQ017M\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/VJUaOJQ017M?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>CaptainSparklez</name><uri>http://gdata.youtube.com/feeds/api/users/shoKvlZGZ20rVgazZp5vnQ</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'moderated\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/VJUaOJQ017M/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'1510\'/></gd:comments><yt:hd/><media:group><media:category label=\'Gaming\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Games</media:category><media:content url=\'http://www.youtube.com/v/VJUaOJQ017M?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'1118\' yt:format=\'5\'/><media:content url=\'rtsp://v3.cache7.c.youtube.com/CnELENy73wIaaAmz1zSUOBqVVBMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'1118\' yt:format=\'1\'/><media:content url=\'rtsp://v5.cache3.c.youtube.com/CnELENy73wIaaAmz1zSUOBqVVBMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'1118\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>CaptainSparklez</media:credit><media:description type=\'plain\'>Mark - http://www.youtube.com/user/AllShamNoWow
Nick - http://www.youtube.com/user/NFENvids

Twitter: http://twitter.com/CaptainSparklez
Facebook: http://www.facebook.com/CptSparklez

http://www.minecraftforum.net/topic/900095-adv-the-emperor-of-minopia-4600-downloads/Minecraft</media:description><media:keywords>captainsparklez, captain, sparklez, mindcraft, mind, sandbox, open, world, block, boxes, 2d, 3d, commentary, random, new, video, game, pc, gaming, lets, escapecraft, escape, craft, the, play, live, night, zombies, notch, episode, tutorial, how, to, use, redstone, red, stone</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=VJUaOJQ017M&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VJUaOJQ017M/default.jpg\' height=\'90\' width=\'120\' time=\'00:09:19\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VJUaOJQ017M/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VJUaOJQ017M/1.jpg\' height=\'90\' width=\'120\' time=\'00:04:39.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VJUaOJQ017M/2.jpg\' height=\'90\' width=\'120\' time=\'00:09:19\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/VJUaOJQ017M/3.jpg\' height=\'90\' width=\'120\' time=\'00:13:58.500\' yt:name=\'end\'/><media:title type=\'plain\'>Minecraft: The Emperor of Minopia w/ Mark and Nick Part 3 - Lava Mountain</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'1118\'/><yt:uploaded>2012-02-06T22:41:52.000Z</yt:uploaded><yt:videoid>VJUaOJQ017M</yt:videoid></media:group><gd:rating average=\'4.9502835\' max=\'5\' min=\'1\' numRaters=\'3701\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'543\' viewCount=\'220338\'/><yt:rating numDislikes=\'46\' numLikes=\'3655\'/></entry><entry gd:etag=\'W/&quot;D0IHRn47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:NG5sy8bQw_g</id><published>2012-02-07T11:18:40.000Z</published><updated>2012-02-09T05:32:17.000Z</updated><app:control><yt:state name=\'restricted\' reasonCode=\'limitedSyndication\'>Syndication of this video was restricted by its owner.</yt:state></app:control><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'News\' label=\'News &amp; Politics\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CNN\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'News\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'CNN TV\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Early Start\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Florida\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'beach\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'Panama City\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'clouds\'/><title>Strange clouds form over Florida beach</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/NG5sy8bQw_g?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=NG5sy8bQw_g&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/NG5sy8bQw_g/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/NG5sy8bQw_g/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/NG5sy8bQw_g/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/NG5sy8bQw_g?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>CNN</name><uri>http://gdata.youtube.com/feeds/api/users/upvZG-5ko_eiXAupbDfxWw</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'denied\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'denied\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/NG5sy8bQw_g/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'91\'/></gd:comments><media:group><media:category label=\'News &amp; Politics\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>News</media:category><media:content url=\'http://www.youtube.com/v/NG5sy8bQw_g?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'42\' yt:format=\'5\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>CNN</media:credit><media:description type=\'plain\'>An unusual cloud formation hovered over Panama City, Florida.</media:description><media:keywords>CNN, News, CNN TV, Early Start, Florida, beach, Panama City, clouds</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=NG5sy8bQw_g&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/NG5sy8bQw_g/default.jpg\' height=\'90\' width=\'120\' time=\'00:00:21\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/NG5sy8bQw_g/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/NG5sy8bQw_g/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:10.500\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/NG5sy8bQw_g/2.jpg\' height=\'90\' width=\'120\' time=\'00:00:21\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/NG5sy8bQw_g/3.jpg\' height=\'90\' width=\'120\' time=\'00:00:31.500\' yt:name=\'end\'/><media:title type=\'plain\'>Strange clouds form over Florida beach</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'42\'/><yt:uploaded>2012-02-07T11:18:40.000Z</yt:uploaded><yt:videoid>NG5sy8bQw_g</yt:videoid></media:group><gd:rating average=\'4.765625\' max=\'5\' min=\'1\' numRaters=\'256\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:recorded>2012-02-07</yt:recorded><yt:statistics favoriteCount=\'74\' viewCount=\'219809\'/><yt:rating numDislikes=\'15\' numLikes=\'241\'/></entry><entry gd:etag=\'W/&quot;DEEGRX47eCp7I2A9WhRbF0s.&quot;\'><id>tag:youtube.com,2008:video:l8STO37kPGU</id><published>2012-02-07T22:16:18.000Z</published><updated>2012-02-09T05:50:24.000Z</updated><category scheme=\'http://schemas.google.com/g/2005#kind\' term=\'http://gdata.youtube.com/schemas/2007#video\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\' term=\'Comedy\' label=\'Comedy\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'HOW\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'TO\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'AVOID\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'BEING\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'KISSED\'/><category scheme=\'http://gdata.youtube.com/schemas/2007/keywords.cat\' term=\'tobuscus\'/><title>HOW TO AVOID BEING KISSED</title><content type=\'application/x-shockwave-flash\' src=\'http://www.youtube.com/v/l8STO37kPGU?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\'/><link rel=\'alternate\' type=\'text/html\' href=\'http://www.youtube.com/watch?v=l8STO37kPGU&amp;feature=youtube_gdata\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.responses\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/l8STO37kPGU/responses?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.ratings\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/l8STO37kPGU/ratings?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.complaints\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/l8STO37kPGU/complaints?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#video.related\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/videos/l8STO37kPGU/related?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><link rel=\'http://gdata.youtube.com/schemas/2007#mobile\' type=\'text/html\' href=\'http://m.youtube.com/details?v=l8STO37kPGU\'/><link rel=\'self\' type=\'application/atom+xml\' href=\'http://gdata.youtube.com/feeds/api/standardfeeds/us/recently_featured/v/l8STO37kPGU?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\'/><author><name>Tobuscus</name><uri>http://gdata.youtube.com/feeds/api/users/VJK2AT3ea5RTXNRjX_kz8A</uri></author><yt:accessControl action=\'comment\' permission=\'allowed\'/><yt:accessControl action=\'commentVote\' permission=\'allowed\'/><yt:accessControl action=\'videoRespond\' permission=\'allowed\'/><yt:accessControl action=\'rate\' permission=\'allowed\'/><yt:accessControl action=\'embed\' permission=\'allowed\'/><yt:accessControl action=\'list\' permission=\'allowed\'/><yt:accessControl action=\'autoPlay\' permission=\'allowed\'/><yt:accessControl action=\'syndicate\' permission=\'allowed\'/><gd:comments><gd:feedLink rel=\'http://gdata.youtube.com/schemas/2007#comments\' href=\'http://gdata.youtube.com/feeds/api/videos/l8STO37kPGU/comments?client=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;v=2\' countHint=\'19752\'/></gd:comments><yt:hd/><media:group><media:category label=\'Comedy\' scheme=\'http://gdata.youtube.com/schemas/2007/categories.cat\'>Comedy</media:category><media:content url=\'http://www.youtube.com/v/l8STO37kPGU?version=3&amp;f=standard&amp;c=ytapi-DimitarKunchev-iDesktop-1m8oihba-0&amp;d=AR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata\' type=\'application/x-shockwave-flash\' medium=\'video\' isDefault=\'true\' expression=\'full\' duration=\'201\' yt:format=\'5\'/><media:content url=\'rtsp://v4.cache1.c.youtube.com/CnELENy73wIaaAllPOR-O5PElxMYDSANFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'201\' yt:format=\'1\'/><media:content url=\'rtsp://v6.cache3.c.youtube.com/CnELENy73wIaaAllPOR-O5PElxMYESARFEIoeXRhcGktRGltaXRhckt1bmNoZXYtaURlc2t0b3AtMW04b2loYmEtMEgGUghzdGFuZGFyZHIhAR2_BgBKKpikvIy9TIGWZH8O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp\' type=\'video/3gpp\' medium=\'video\' expression=\'full\' duration=\'201\' yt:format=\'6\'/><media:credit role=\'uploader\' scheme=\'urn:youtube\' yt:type=\'partner\'>Tobuscus</media:credit><media:description type=\'plain\'>TOBUSCUS SHIRTS! http://tobuscus.spreadshirt.com

Fans! http://facebook.com/tobyturnerfans
Daily Vlogs: http://youtube.com/tobyturner
TobyGames! http://bit.ly/TobyGames
Darkness Redness Whiteness Posters!  http://bit.ly/tobyposter  (free Tobuscus slap bracelet when you buy the signed ones!)
Twitter! http://twitter.com/tobyturner
Dailybooth!  http://dailybooth.com/tobuscus

HOW TO AVOID BEING KISSED</media:description><media:keywords>HOW, TO, AVOID, BEING, KISSED, tobuscus</media:keywords><media:license type=\'text/html\' href=\'http://www.youtube.com/t/terms\'>youtube</media:license><media:player url=\'http://www.youtube.com/watch?v=l8STO37kPGU&amp;feature=youtube_gdata_player\'/><media:thumbnail url=\'http://i.ytimg.com/vi/l8STO37kPGU/default.jpg\' height=\'90\' width=\'120\' time=\'00:01:40.500\' yt:name=\'default\'/><media:thumbnail url=\'http://i.ytimg.com/vi/l8STO37kPGU/hqdefault.jpg\' height=\'360\' width=\'480\' yt:name=\'hqdefault\'/><media:thumbnail url=\'http://i.ytimg.com/vi/l8STO37kPGU/1.jpg\' height=\'90\' width=\'120\' time=\'00:00:50.250\' yt:name=\'start\'/><media:thumbnail url=\'http://i.ytimg.com/vi/l8STO37kPGU/2.jpg\' height=\'90\' width=\'120\' time=\'00:01:40.500\' yt:name=\'middle\'/><media:thumbnail url=\'http://i.ytimg.com/vi/l8STO37kPGU/3.jpg\' height=\'90\' width=\'120\' time=\'00:02:30.750\' yt:name=\'end\'/><media:title type=\'plain\'>HOW TO AVOID BEING KISSED</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration seconds=\'201\'/><yt:uploaded>2012-02-07T22:16:18.000Z</yt:uploaded><yt:videoid>l8STO37kPGU</yt:videoid></media:group><gd:rating average=\'4.9568157\' max=\'5\' min=\'1\' numRaters=\'9911\' rel=\'http://schemas.google.com/g/2005#overall\'/><yt:statistics favoriteCount=\'1608\' viewCount=\'215886\'/><yt:rating numDislikes=\'107\' numLikes=\'9804\'/></entry></feed>', now(), now())
