[libgdata/offline-testing: 1/2] tests: Add network mocking support and implement it in the YouTube tests



commit 1d52a430385a135a6f49e47389079fb8c6774271
Author: Philip Withnall <philip tecnocode co uk>
Date:   Tue Jul 2 13:12:02 2013 +0100

    tests: Add network mocking support and implement it in the YouTube tests
    
    UNFINISHED

 docs/reference/Makefile.am                         |    2 +
 gdata/tests/Makefile.am                            |    9 +-
 gdata/tests/common.c                               |   48 +-
 gdata/tests/common.h                               |    4 +
 gdata/tests/mock-resolver.c                        |  299 ++++++
 gdata/tests/mock-resolver.h                        |   58 ++
 gdata/tests/mock-server.c                          | 1058 ++++++++++++++++++++
 gdata/tests/mock-server.h                          |   75 ++
 gdata/tests/traces/youtube/authentication          |   26 +
 gdata/tests/traces/youtube/authentication-async    |   26 +
 gdata/tests/traces/youtube/batch                   |   58 ++
 gdata/tests/traces/youtube/batch-async             |   29 +
 gdata/tests/traces/youtube/categories              |   51 +
 gdata/tests/traces/youtube/categories-async        |   25 +
 gdata/tests/traces/youtube/comment-insert          |   33 +
 gdata/tests/traces/youtube/comment-insert-async    |   33 +
 gdata/tests/traces/youtube/comment-query           |   29 +
 gdata/tests/traces/youtube/comment-query-async     |   29 +
 .../youtube/comment-query-async-progress-closure   |   29 +
 gdata/tests/traces/youtube/global-authentication   |   26 +
 gdata/tests/traces/youtube/query-related           |   29 +
 .../youtube/query-related-async-progress-closure   |   29 +
 gdata/tests/traces/youtube/query-single            |   29 +
 gdata/tests/traces/youtube/query-single-async      |   29 +
 gdata/tests/traces/youtube/query-standard-feed     |  454 +++++++++
 .../tests/traces/youtube/query-standard-feed-async |  454 +++++++++
 .../query-standard-feed-async-progress-closure     |  454 +++++++++
 gdata/tests/traces/youtube/setup-batch             |   58 ++
 gdata/tests/traces/youtube/setup-comment           |   29 +
 gdata/tests/traces/youtube/teardown-upload         |   26 +
 gdata/tests/traces/youtube/upload-async            |   31 +
 gdata/tests/traces/youtube/upload-simple           |   31 +
 gdata/tests/youtube.c                              |  260 ++++--
 33 files changed, 3788 insertions(+), 72 deletions(-)
---
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
index ecfa9a5..66c46fb 100644
--- a/docs/reference/Makefile.am
+++ b/docs/reference/Makefile.am
@@ -48,6 +48,8 @@ CFILE_GLOB=$(top_srcdir)/gdata/*.c $(top_srcdir)/gdata/services/*/*.c
 # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
 IGNORE_HFILES = \
        common.h                \
+       mock-resolver.h         \
+       mock-server.h           \
        gdata-private.h         \
        gdata-parser.h          \
        gdata-marshal.h         \
diff --git a/gdata/tests/Makefile.am b/gdata/tests/Makefile.am
index d2ed75e..986c3a2 100644
--- a/gdata/tests/Makefile.am
+++ b/gdata/tests/Makefile.am
@@ -21,8 +21,13 @@ LIBS = \
 noinst_PROGRAMS = $(TEST_PROGS)
 
 TEST_SRCS = \
-       common.c        \
-       common.h
+       common.c \
+       common.h \
+       mock-resolver.c \
+       mock-resolver.h \
+       mock-server.c \
+       mock-server.h \
+       $(NULL)
 
 TEST_PROGS                     += general
 general_SOURCES                         = general.c $(TEST_SRCS)
diff --git a/gdata/tests/common.c b/gdata/tests/common.c
index 6f6c81a..677515e 100644
--- a/gdata/tests/common.c
+++ b/gdata/tests/common.c
@@ -25,6 +25,7 @@
 #include <libxml/xmlsave.h>
 
 #include "common.h"
+#include "mock-server.h"
 
 /* %TRUE if there's no Internet connection, so we should only run local tests */
 static gboolean no_internet = FALSE;
@@ -41,6 +42,15 @@ static void gdata_test_assert_handler (const gchar *message);
 /* global list of debugging messages */
 static GSList *message_list = NULL;
 
+/* Directory to output network trace files to, if trace output is enabled. (NULL otherwise.) */
+static GFile *trace_dir = NULL;
+
+/* TRUE if tests should be run online and a trace file written for each; FALSE if tests should run offline 
against existing trace files. */
+static gboolean write_traces = FALSE;
+
+/* Global mock server instance used by all tests. */
+static GDataMockServer *mock_server = NULL;
+
 void
 gdata_test_init (int argc, char **argv)
 {
@@ -50,7 +60,7 @@ gdata_test_init (int argc, char **argv)
        g_type_init ();
 #endif
 
-       /* Parse the --no-internet and --no-interactive options */
+       /* Parse the custom options */
        for (i = 1; i < argc; i++) {
                if (strcmp ("--no-internet", argv[i]) == 0 || strcmp ("-n", argv[i]) == 0) {
                        no_internet = TRUE;
@@ -58,6 +68,20 @@ gdata_test_init (int argc, char **argv)
                } else if (strcmp ("--no-interactive", argv[i]) == 0 || strcmp ("-i", argv[i]) == 0) {
                        no_interactive = TRUE;
                        argv[i] = (char*) "";
+               } else if (strcmp ("--trace-dir", argv[i]) == 0 || strcmp ("-t", argv[i]) == 0) {
+                       if (i >= argc - 1) {
+                               fprintf (stderr, "Error: Missing directory for --trace-dir option.\n");
+                               exit (1);
+                       }
+
+                       trace_dir = g_file_new_for_path (argv[i + 1]);
+
+                       argv[i] = (char*) "";
+                       argv[i + 1] = (char*) "";
+                       i++;
+               } else if (strcmp ("--write-traces", argv[i]) == 0 || strcmp ("-w", argv[i]) == 0) {
+                       write_traces = TRUE;
+                       argv[i] = (char*) "";
                } else if (strcmp ("-?", argv[i]) == 0 || strcmp ("--help", argv[i]) == 0 || strcmp ("-h" , 
argv[i]) == 0) {
                        /* We have to override --help in order to document --no-internet and --no-interactive 
*/
                        printf ("Usage:\n"
@@ -74,7 +98,9 @@ gdata_test_init (int argc, char **argv)
                                  "  -m {perf|slow|thorough|quick}  Execute tests according modes\n"
                                  "  --debug-log                    Debug test logging output\n"
                                  "  -n, --no-internet              Only execute tests which don't require 
Internet connectivity\n"
-                                 "  -i, --no-interactive           Only execute tests which don't require 
user interaction\n",
+                                 "  -i, --no-interactive           Only execute tests which don't require 
user interaction\n"
+                                 "  -t, --trace-dir [directory]    Read/Write trace files in the specified 
directory\n"
+                                 "  -w, --write-traces             Work online and write trace files to 
--trace-dir\n",
                                  argv[0]);
                        exit (0);
                }
@@ -92,6 +118,19 @@ gdata_test_init (int argc, char **argv)
        /* Enable full debugging */
        g_setenv ("LIBGDATA_DEBUG", "3" /* GDATA_LOG_FULL */, FALSE);
        g_setenv ("G_MESSAGES_DEBUG", "libgdata", FALSE);
+
+       mock_server = gdata_mock_server_new ();
+       gdata_mock_server_set_enable_logging (mock_server, write_traces);
+       gdata_mock_server_set_enable_online (mock_server, write_traces);
+}
+
+/**
+ * TODO: Document me.
+ */
+GDataMockServer *
+gdata_test_get_mock_server (void)
+{
+       return mock_server;
 }
 
 /*
@@ -710,6 +749,11 @@ gdata_test_debug_handler (const gchar *log_domain, GLogLevelFlags log_level, con
 {
        /* storing debugging messages in GSList for displaying them in case of error */
        message_list = g_slist_append (message_list, g_strdup (message));
+
+       /* Log to the trace file. */
+       if (write_traces == TRUE && message != NULL && (*message == '<' || *message == '>' || *message == ' 
') && *(message + 1) == ' ') {
+               gdata_mock_server_log_message_chunk (mock_server, message);
+       }
 }
 
 static void
diff --git a/gdata/tests/common.h b/gdata/tests/common.h
index 8690a61..0d76af9 100644
--- a/gdata/tests/common.h
+++ b/gdata/tests/common.h
@@ -20,6 +20,8 @@
 #include <glib.h>
 #include <gdata/gdata.h>
 
+#include "mock-server.h"
+
 #ifndef GDATA_TEST_COMMON_H
 #define GDATA_TEST_COMMON_H
 
@@ -46,6 +48,8 @@ G_BEGIN_DECLS
 
 void gdata_test_init (int argc, char **argv);
 
+GDataMockServer *gdata_test_get_mock_server (void) G_GNUC_WARN_UNUSED_RESULT;
+
 gboolean gdata_test_internet (void);
 gboolean gdata_test_interactive (void);
 
diff --git a/gdata/tests/mock-resolver.c b/gdata/tests/mock-resolver.c
new file mode 100644
index 0000000..754714b
--- /dev/null
+++ b/gdata/tests/mock-resolver.c
@@ -0,0 +1,299 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+/*
+ * GData Client
+ * Copyright (C) Philip Withnall 2013 <philip tecnocode co uk>
+ * 
+ * GData Client is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * GData Client is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GData Client.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/**
+ * TODO: Document me.
+ *
+ * TODO: Copied from 
http://cgit.collabora.com/git/user/sjoerd/telepathy-gabble.git/plain/tests/twisted/test-resolver.c; add 
authorship.
+ */
+
+#include <stdio.h>
+#include <glib.h>
+#include <gio/gio.h>
+
+#ifdef G_OS_WIN32
+#include <windows.h>
+#else
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#endif
+
+#include "mock-resolver.h"
+
+static void gdata_mock_resolver_finalize (GObject *object);
+
+static GList *gdata_mock_resolver_lookup_by_name (GResolver *resolver, const gchar *hostname, GCancellable 
*cancellable, GError **error);
+static void gdata_mock_resolver_lookup_by_name_async (GResolver *resolver, const gchar *hostname, 
GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data);
+static GList *gdata_mock_resolver_lookup_by_name_finish (GResolver *resolver, GAsyncResult *result, GError 
**error);
+static GList *gdata_mock_resolver_lookup_service (GResolver *resolver, const gchar *rrname, GCancellable 
*cancellable, GError **error);
+static void gdata_mock_resolver_lookup_service_async (GResolver *resolver, const gchar *rrname, GCancellable 
*cancellable, GAsyncReadyCallback callback, gpointer user_data);
+static GList *gdata_mock_resolver_lookup_service_finish (GResolver *resolver, GAsyncResult *result, GError 
**error);
+
+typedef struct {
+       gchar *key;
+       gchar *addr;
+} FakeHost;
+
+typedef struct {
+       char *key;
+       GSrvTarget *srv;
+} FakeService;
+
+struct _GDataMockResolverPrivate {
+       GList *fake_A;
+       GList *fake_SRV;
+};
+
+G_DEFINE_TYPE (GDataMockResolver, gdata_mock_resolver, G_TYPE_RESOLVER)
+
+static void
+gdata_mock_resolver_class_init (GDataMockResolverClass *klass)
+{
+       GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
+       GResolverClass *resolver_class = G_RESOLVER_CLASS (klass);
+
+       g_type_class_add_private (klass, sizeof (GDataMockResolverPrivate));
+
+       gobject_class->finalize = gdata_mock_resolver_finalize;
+
+       resolver_class->lookup_by_name = gdata_mock_resolver_lookup_by_name;
+       resolver_class->lookup_by_name_async = gdata_mock_resolver_lookup_by_name_async;
+       resolver_class->lookup_by_name_finish = gdata_mock_resolver_lookup_by_name_finish;
+       resolver_class->lookup_service = gdata_mock_resolver_lookup_service;
+       resolver_class->lookup_service_async = gdata_mock_resolver_lookup_service_async;
+       resolver_class->lookup_service_finish = gdata_mock_resolver_lookup_service_finish;
+}
+
+static void
+gdata_mock_resolver_init (GDataMockResolver *self)
+{
+       self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, GDATA_TYPE_MOCK_RESOLVER, GDataMockResolverPrivate);
+}
+
+static void
+gdata_mock_resolver_finalize (GObject *object)
+{
+       gdata_mock_resolver_reset (GDATA_MOCK_RESOLVER (object));
+
+       /* Chain up to the parent class */
+       G_OBJECT_CLASS (gdata_mock_resolver_parent_class)->finalize (object);
+}
+
+static gchar *
+_service_rrname (const char *service, const char *protocol, const char *domain)
+{
+       gchar *rrname, *ascii_domain;
+
+       ascii_domain = g_hostname_to_ascii (domain);
+       rrname = g_strdup_printf ("_%s._%s.%s", service, protocol, ascii_domain);
+       g_free (ascii_domain);
+
+       return rrname;
+}
+
+static GList *
+find_fake_services (GDataMockResolver *self, const char *name)
+{
+       GList *fake = NULL;
+       GList *rval = NULL;
+
+       for (fake = self->priv->fake_SRV; fake != NULL; fake = g_list_next (fake)) {
+               FakeService *entry = fake->data;
+               if (entry != NULL && !g_strcmp0 (entry->key, name)) {
+                       rval = g_list_append (rval, g_srv_target_copy (entry->srv));
+               }
+       }
+
+       return rval;
+}
+
+static GList *
+find_fake_hosts (GDataMockResolver *self, const char *name)
+{
+       GList *fake = NULL;
+       GList *rval = NULL;
+
+       for (fake = self->priv->fake_A; fake != NULL; fake = g_list_next (fake)) {
+               FakeHost *entry = fake->data;
+               if (entry != NULL && !g_strcmp0 (entry->key, name)) {
+                       rval = g_list_append (rval, g_inet_address_new_from_string (entry->addr));
+               }
+       }
+
+       return rval;
+}
+
+static GList *
+gdata_mock_resolver_lookup_by_name (GResolver *resolver, const gchar *hostname, GCancellable *cancellable, 
GError **error)
+{
+       GList *result;
+
+       result = find_fake_hosts (GDATA_MOCK_RESOLVER (resolver), hostname);
+
+       if (result == NULL) {
+               g_message ("TODO: no fake hostname for ‘%s’", hostname);
+               g_set_error (error, G_RESOLVER_ERROR, G_RESOLVER_ERROR_NOT_FOUND, "No fake hostname record 
registered for ‘%s’.", hostname);
+       }
+
+       return result;
+}
+
+static void
+gdata_mock_resolver_lookup_by_name_async (GResolver *resolver, const gchar *hostname, GCancellable 
*cancellable, GAsyncReadyCallback callback, gpointer user_data)
+{
+       GSimpleAsyncResult *res;
+       GList *addr;
+       GError *error = NULL;
+
+       addr = gdata_mock_resolver_lookup_by_name (resolver, hostname, NULL, &error);
+       res = g_simple_async_result_new (G_OBJECT (resolver), callback, user_data, NULL);
+
+       if (addr != NULL) {
+               g_simple_async_result_set_op_res_gpointer (res, addr, NULL);
+       } else {
+               g_simple_async_result_set_from_error (res, error);
+               g_error_free (error);
+       }
+
+       g_simple_async_result_complete_in_idle (res);
+       g_object_unref (res);
+}
+
+static GList *
+gdata_mock_resolver_lookup_by_name_finish (GResolver *resolver, GAsyncResult *result, GError **error)
+{
+       GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
+
+       if (g_simple_async_result_propagate_error (simple, error)) {
+               return NULL;
+       }
+
+       return g_simple_async_result_get_op_res_gpointer (simple);
+}
+
+static GList *
+gdata_mock_resolver_lookup_service (GResolver *resolver, const gchar *rrname, GCancellable *cancellable, 
GError **error)
+{
+       /* TODO */
+       g_message ("%s: %p, %s, %p, %p", __func__, resolver, rrname, cancellable, error);
+       return G_RESOLVER_CLASS (gdata_mock_resolver_parent_class)->lookup_service (resolver, rrname, 
cancellable, error);
+}
+
+static void
+gdata_mock_resolver_lookup_service_async (GResolver *resolver, const gchar *rrname, GCancellable 
*cancellable, GAsyncReadyCallback callback, gpointer user_data)
+{
+       GDataMockResolver *self = GDATA_MOCK_RESOLVER (resolver);
+       GList *addr;
+       GSimpleAsyncResult *res;
+
+       addr = find_fake_services (self, rrname);
+       res = g_simple_async_result_new (G_OBJECT (resolver), callback, user_data, 
gdata_mock_resolver_lookup_service_async);
+
+       if (addr != NULL) {
+               g_simple_async_result_set_op_res_gpointer (res, addr, NULL);
+       } else {
+               g_simple_async_result_set_error (res, G_RESOLVER_ERROR, G_RESOLVER_ERROR_NOT_FOUND, "No fake 
SRV record registered for ‘%s’.", rrname);
+       }
+
+       g_simple_async_result_complete_in_idle (res);
+       g_object_unref (res);
+}
+
+static GList *
+gdata_mock_resolver_lookup_service_finish (GResolver *resolver, GAsyncResult *result, GError **error)
+{
+       GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
+
+       if (g_simple_async_result_propagate_error (simple, error)) {
+               return NULL;
+       }
+
+       return g_simple_async_result_get_op_res_gpointer (simple);
+}
+
+/**
+ * TODO: Document me.
+ */
+GDataMockResolver *
+gdata_mock_resolver_new (void)
+{
+       return g_object_new (GDATA_TYPE_MOCK_RESOLVER, NULL);
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_resolver_reset (GDataMockResolver *self)
+{
+       GList *fake = NULL;
+
+       for (fake = self->priv->fake_A; fake != NULL; fake = g_list_next (fake)) {
+               FakeHost *entry = fake->data;
+               g_free (entry->key);
+               g_free (entry->addr);
+               g_free (entry);
+       }
+       g_list_free (self->priv->fake_A);
+       self->priv->fake_A = NULL;
+
+       for (fake = self->priv->fake_SRV; fake != NULL; fake = g_list_next (fake)) {
+               FakeService *entry = fake->data;
+               g_free (entry->key);
+               g_srv_target_free (entry->srv);
+               g_free (entry);
+       }
+       g_list_free (self->priv->fake_SRV);
+       self->priv->fake_SRV = NULL;
+}
+
+/**
+ * TODO: Document me.
+ */
+gboolean
+gdata_mock_resolver_add_A (GDataMockResolver *self, const gchar *hostname, const gchar *addr)
+{
+       FakeHost *entry = g_new0 (FakeHost, 1);
+       entry->key = g_strdup (hostname);
+       entry->addr = g_strdup (addr);
+       self->priv->fake_A = g_list_append (self->priv->fake_A, entry);
+
+       return TRUE;
+}
+
+/**
+ * TODO: Document me.
+ */
+gboolean
+gdata_mock_resolver_add_SRV (GDataMockResolver *self, const gchar *service, const gchar *protocol, const 
gchar *domain, const gchar *addr, guint16 port)
+{
+       gchar *key;
+       GSrvTarget *serv;
+       FakeService *entry;
+
+       key = _service_rrname (service, protocol, domain);
+       entry = g_new0 (FakeService, 1);
+       serv = g_srv_target_new (addr, port, 0, 0);
+       entry->key = key;
+       entry->srv = serv;
+       self->priv->fake_SRV = g_list_append (self->priv->fake_SRV, entry);
+
+       return TRUE;
+}
diff --git a/gdata/tests/mock-resolver.h b/gdata/tests/mock-resolver.h
new file mode 100644
index 0000000..40bec21
--- /dev/null
+++ b/gdata/tests/mock-resolver.h
@@ -0,0 +1,58 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+/*
+ * GData Client
+ * Copyright (C) Philip Withnall 2013 <philip tecnocode co uk>
+ * 
+ * GData Client is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * GData Client is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GData Client.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef GDATA_MOCK_RESOLVER_H
+#define GDATA_MOCK_RESOLVER_H
+
+#include <glib.h>
+#include <glib-object.h>
+#include <gio/gio.h>
+
+G_BEGIN_DECLS
+
+#define GDATA_TYPE_MOCK_RESOLVER               (gdata_mock_resolver_get_type ())
+#define GDATA_MOCK_RESOLVER(o)                 (G_TYPE_CHECK_INSTANCE_CAST ((o), GDATA_TYPE_MOCK_RESOLVER, 
GDataMockResolver))
+#define GDATA_MOCK_RESOLVER_CLASS(k)           (G_TYPE_CHECK_CLASS_CAST((k), GDATA_TYPE_MOCK_RESOLVER, 
GDataMockResolverClass))
+#define GDATA_IS_MOCK_RESOLVER(o)              (G_TYPE_CHECK_INSTANCE_TYPE ((o), GDATA_TYPE_MOCK_RESOLVER))
+#define GDATA_IS_MOCK_RESOLVER_CLASS(k)                (G_TYPE_CHECK_CLASS_TYPE ((k), 
GDATA_TYPE_MOCK_RESOLVER))
+#define GDATA_MOCK_RESOLVER_GET_CLASS(o)       (G_TYPE_INSTANCE_GET_CLASS ((o), GDATA_TYPE_MOCK_RESOLVER, 
GDataMockResolverClass))
+
+typedef struct _GDataMockResolverPrivate       GDataMockResolverPrivate;
+
+typedef struct {
+       GResolver parent;
+       GDataMockResolverPrivate *priv;
+} GDataMockResolver;
+
+typedef struct {
+       GResolverClass parent;
+} GDataMockResolverClass;
+
+GType gdata_mock_resolver_get_type (void) G_GNUC_CONST;
+
+GDataMockResolver *gdata_mock_resolver_new (void) G_GNUC_MALLOC G_GNUC_WARN_UNUSED_RESULT;
+
+void gdata_mock_resolver_reset (GDataMockResolver *self);
+
+gboolean gdata_mock_resolver_add_A (GDataMockResolver *self, const gchar *hostname, const gchar *addr);
+gboolean gdata_mock_resolver_add_SRV (GDataMockResolver *self, const gchar *service, const gchar *protocol, 
const gchar *domain, const gchar *addr, guint16 port);
+
+G_END_DECLS
+
+#endif /* !GDATA_MOCK_RESOLVER_H */
diff --git a/gdata/tests/mock-server.c b/gdata/tests/mock-server.c
new file mode 100644
index 0000000..94e147c
--- /dev/null
+++ b/gdata/tests/mock-server.c
@@ -0,0 +1,1058 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+/*
+ * GData Client
+ * Copyright (C) Philip Withnall 2013 <philip tecnocode co uk>
+ * 
+ * GData Client is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * GData Client is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GData Client.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <glib.h>
+#include <glib/gi18n.h>
+#include <libsoup/soup.h>
+#include <string.h>
+#include <arpa/inet.h>
+#include <sys/types.h>
+#include <netinet/in.h>
+#include <sys/socket.h>
+
+#include "mock-resolver.h"
+#include "mock-server.h"
+
+static void gdata_mock_server_dispose (GObject *object);
+static void gdata_mock_server_get_property (GObject *object, guint property_id, GValue *value, GParamSpec 
*pspec);
+static void gdata_mock_server_set_property (GObject *object, guint property_id, const GValue *value, 
GParamSpec *pspec);
+
+static void server_handler_cb (SoupServer *server, SoupMessage *message, const gchar *path, GHashTable 
*query, SoupClientContext *client, gpointer user_data);
+static void load_file_stream_thread_cb (GTask *task, gpointer source_object, gpointer task_data, 
GCancellable *cancellable);
+static void load_file_iteration_thread_cb (GTask *task, gpointer source_object, gpointer task_data, 
GCancellable *cancellable);
+
+static GFileInputStream *load_file_stream (GFile *trace_file, GCancellable *cancellable, GError **error);
+static SoupMessage *load_file_iteration (GFileInputStream *input_stream, GCancellable *cancellable, GError 
**error);
+
+struct _GDataMockServerPrivate {
+       SoupServer *server;
+       GDataMockResolver *resolver;
+       GThread *server_thread;
+
+       GFile *trace_file;
+       GFileInputStream *input_stream;
+       GFileOutputStream *output_stream;
+       SoupMessage *next_message;
+
+       GFile *trace_directory;
+       gboolean enable_online;
+       gboolean enable_logging;
+};
+
+enum {
+       PROP_TRACE_DIRECTORY = 1,
+       PROP_ENABLE_ONLINE,
+       PROP_ENABLE_LOGGING,
+};
+
+G_DEFINE_TYPE (GDataMockServer, gdata_mock_server, G_TYPE_OBJECT)
+
+static void
+gdata_mock_server_class_init (GDataMockServerClass *klass)
+{
+       GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
+
+       g_type_class_add_private (klass, sizeof (GDataMockServerPrivate));
+
+       gobject_class->get_property = gdata_mock_server_get_property;
+       gobject_class->set_property = gdata_mock_server_set_property;
+       gobject_class->dispose = gdata_mock_server_dispose;
+
+       g_object_class_install_property (gobject_class, PROP_TRACE_DIRECTORY,
+                                        g_param_spec_object ("trace-directory",
+                                                             "Trace Directory", "TODO",
+                                                             G_TYPE_FILE,
+                                                             G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+
+       g_object_class_install_property (gobject_class, PROP_ENABLE_ONLINE,
+                                        g_param_spec_boolean ("enable-online",
+                                                              "Enable Online", "TODO",
+                                                              FALSE,
+                                                              G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+
+       g_object_class_install_property (gobject_class, PROP_ENABLE_LOGGING,
+                                        g_param_spec_boolean ("enable-logging",
+                                                              "Enable Logging", "TODO",
+                                                              FALSE,
+                                                              G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+}
+
+static void
+gdata_mock_server_init (GDataMockServer *self)
+{
+       self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, GDATA_TYPE_MOCK_SERVER, GDataMockServerPrivate);
+}
+
+static void
+gdata_mock_server_dispose (GObject *object)
+{
+       GDataMockServerPrivate *priv = GDATA_MOCK_SERVER (object)->priv;
+
+       g_clear_object (&priv->resolver);
+       g_clear_object (&priv->server);
+       g_clear_object (&priv->input_stream);
+       g_clear_object (&priv->trace_file);
+
+       /* TODO: More. */
+       if (priv->server_thread != NULL) {
+               g_thread_unref (priv->server_thread);
+               priv->server_thread = NULL;
+       }
+
+       /* Chain up to the parent class */
+       G_OBJECT_CLASS (gdata_mock_server_parent_class)->dispose (object);
+}
+
+static void
+gdata_mock_server_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
+{
+       GDataMockServerPrivate *priv = GDATA_MOCK_SERVER (object)->priv;
+
+       switch (property_id) {
+               case PROP_TRACE_DIRECTORY:
+                       g_value_set_object (value, priv->trace_directory);
+                       break;
+               case PROP_ENABLE_ONLINE:
+                       g_value_set_boolean (value, priv->enable_online);
+                       break;
+               case PROP_ENABLE_LOGGING:
+                       g_value_set_boolean (value, priv->enable_logging);
+                       break;
+               default:
+                       /* We don't have any other property... */
+                       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                       break;
+       }
+}
+
+static void
+gdata_mock_server_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
+{
+       GDataMockServer *self = GDATA_MOCK_SERVER (object);
+
+       switch (property_id) {
+               case PROP_TRACE_DIRECTORY:
+                       gdata_mock_server_set_trace_directory (self, g_value_get_object (value));
+                       break;
+               case PROP_ENABLE_ONLINE:
+                       gdata_mock_server_set_enable_online (self, g_value_get_boolean (value));
+                       break;
+               case PROP_ENABLE_LOGGING:
+                       gdata_mock_server_set_enable_logging (self, g_value_get_boolean (value));
+                       break;
+               default:
+                       /* We don't have any other property... */
+                       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                       break;
+       }
+}
+
+static inline gboolean
+parts_equal (const char *one, const char *two, gboolean insensitive)
+{
+       if (!one && !two)
+               return TRUE;
+       if (!one || !two)
+               return FALSE;
+       return insensitive ? !g_ascii_strcasecmp (one, two) : !strcmp (one, two);
+}
+
+static gint
+compare_incoming_message (SoupMessage *expected_message, SoupMessage *actual_message, SoupClientContext 
*actual_client)
+{
+       SoupURI *expected_uri, *actual_uri;
+
+       expected_uri = soup_message_get_uri (expected_message);
+       actual_uri = soup_message_get_uri (actual_message);
+
+       /* TODO: Also compare actual_client auth domains and address? HTTP version? Method? */
+
+       if (!parts_equal (expected_uri->user, actual_uri->user, FALSE) ||
+           !parts_equal (expected_uri->password, actual_uri->password, FALSE) ||
+           !parts_equal (expected_uri->path, actual_uri->path, FALSE) ||
+           !parts_equal (expected_uri->query, actual_uri->query, FALSE) ||
+           !parts_equal (expected_uri->fragment, actual_uri->fragment, FALSE)) {
+               return 1;
+       }
+
+       return 0;
+}
+
+static void
+header_append_cb (const gchar *name, const gchar *value, gpointer user_data)
+{
+       SoupMessage *message = user_data;
+
+       soup_message_headers_append (message->response_headers, name, value);
+}
+
+/* TODO: Some problem with client-side cancellation and SSL handshakes in here. */
+/* TODO: This needs to be overrideable. */
+
+
+static void
+server_process_message (GDataMockServer *self, SoupMessage *message, SoupClientContext *client)
+{
+       GDataMockServerPrivate *priv = self->priv;
+       SoupBuffer *message_body;
+
+       g_assert (priv->next_message != NULL);
+
+       if (compare_incoming_message (priv->next_message, message, client) != 0) {
+               gchar *body, *next_uri, *actual_uri;
+
+               /* Received message is not what we expected. Return an error. */
+               soup_message_set_status_full (message, SOUP_STATUS_BAD_REQUEST, _("Unexpected request to mock 
server"));
+
+               next_uri = soup_uri_to_string (soup_message_get_uri (priv->next_message), TRUE);
+               actual_uri = soup_uri_to_string (soup_message_get_uri (message), TRUE);
+               body = g_strdup_printf ("Expected URI ‘%s’, but got ‘%s’.", next_uri, actual_uri);
+               g_free (actual_uri);
+               g_free (next_uri);
+               soup_message_body_append_take (message->response_body, (guchar *) body, strlen (body));
+
+               return;
+       }
+
+       /* The incoming message matches what we expected, so copy the headers and body from the expected 
response and return it. */
+       soup_message_set_http_version (message, soup_message_get_http_version (priv->next_message));
+       soup_message_set_status_full (message, priv->next_message->status_code, 
priv->next_message->reason_phrase);
+       soup_message_headers_foreach (priv->next_message->response_headers, header_append_cb, message);
+
+       message_body = soup_message_body_flatten (priv->next_message->response_body);
+       if (message_body->length > 0) {
+               soup_message_body_append_buffer (message->response_body, message_body);
+       }
+       soup_buffer_free (message_body);
+
+       soup_message_body_complete (message->response_body);
+
+       /* Clear the expected message. */
+       g_clear_object (&priv->next_message);
+}
+
+static void
+server_handler_cb (SoupServer *server, SoupMessage *message, const gchar *path, GHashTable *query, 
SoupClientContext *client, gpointer user_data)
+{
+       GDataMockServer *self = user_data;
+       GDataMockServerPrivate *priv = self->priv;
+g_message ("%s: %s", __func__, path);
+       /* Asynchronously load the next expected message from the trace file. */
+       if (priv->next_message == NULL) {
+               GTask *task;
+               GError *child_error = NULL;
+
+               soup_server_pause_message (server, message);
+
+               task = g_task_new (self, NULL, NULL, NULL);
+               g_task_set_task_data (task, g_object_ref (priv->input_stream), g_object_unref);
+               g_task_run_in_thread_sync (task, load_file_iteration_thread_cb);
+
+               /* Handle the results. */
+               priv->next_message = g_task_propagate_pointer (task, &child_error);
+
+               g_object_unref (task);
+
+               if (child_error != NULL) {
+                       gchar *body;
+
+                       soup_message_set_status_full (message, SOUP_STATUS_INTERNAL_SERVER_ERROR, _("Error 
loading expected request"));
+
+                       body = g_strdup_printf ("Error: %s", child_error->message);
+                       soup_message_body_append_take (message->response_body, (guchar *) body, strlen 
(body));
+
+                       g_error_free (child_error);
+               } else if (priv->next_message == NULL) {
+                       gchar *body, *actual_uri;
+
+                       /* Received message is not what we expected. Return an error. */
+                       soup_message_set_status_full (message, SOUP_STATUS_BAD_REQUEST, _("Unexpected request 
to mock server"));
+
+                       actual_uri = soup_uri_to_string (soup_message_get_uri (message), TRUE);
+                       body = g_strdup_printf ("Expected no request, but got ‘%s’.", actual_uri);
+                       g_free (actual_uri);
+                       soup_message_body_append_take (message->response_body, (guchar *) body, strlen 
(body));
+               }
+
+               soup_server_unpause_message (server, message);
+       }
+
+       /* Process the actual message if we already know the expected message. */
+       if (priv->next_message != NULL) {
+               server_process_message (self, message, client);
+       }
+}
+
+/**
+ * TODO: Document me.
+ */
+GDataMockServer *
+gdata_mock_server_new (void)
+{
+       return g_object_new (GDATA_TYPE_MOCK_SERVER, NULL);
+}
+
+static gboolean
+trace_to_soup_message_headers_and_body (SoupMessageHeaders *message_headers, SoupMessageBody *message_body, 
const gchar message_direction, const gchar **_trace)
+{
+       const gchar *i;
+       const gchar *trace = *_trace;
+
+       /* Parse headers. */
+       while (TRUE) {
+               gchar *header_name, *header_value;
+
+               if (*trace == '\0') {
+                       /* No body. */
+                       goto done;
+               } else if (*trace == ' ' && *(trace + 1) == ' ' && *(trace + 2) == '\n') {
+                       /* No body. */
+                       trace += 3;
+                       goto done;
+               } else if (*trace != message_direction || *(trace + 1) != ' ') {
+                       g_warning ("Unrecognised start sequence ‘%c%c’.", *trace, *(trace + 1));
+                       goto error;
+               }
+               trace += 2;
+
+               if (*trace == '\n') {
+                       /* Reached the end of the headers. */
+                       trace++;
+                       break;
+               }
+
+               i = strchr (trace, ':');
+               if (i == NULL || *(i + 1) != ' ') {
+                       g_warning ("Missing spacer ‘: ’.");
+                       goto error;
+               }
+
+               header_name = g_strndup (trace, i - trace);
+               trace += (i - trace) + 2;
+
+               i = strchr (trace, '\n');
+               if (i == NULL) {
+                       g_warning ("Missing spacer ‘\\n’.");
+                       goto error;
+               }
+
+               header_value = g_strndup (trace, i - trace);
+               trace += (i - trace) + 1;
+
+               /* Append the header. */
+               soup_message_headers_append (message_headers, header_name, header_value);
+
+               g_free (header_value);
+               g_free (header_name);
+       }
+
+       /* Parse the body. */
+       while (TRUE) {
+               if (*trace == ' ' && *(trace + 1) == ' ' && *(trace + 2) == '\n') {
+                       /* End of the body. */
+                       trace += 3;
+                       break;
+               } else if (*trace == '\0') {
+                       /* End of the body. */
+                       break;
+               } else if (*trace != message_direction || *(trace + 1) != ' ') {
+                       g_warning ("Unrecognised start sequence ‘%c%c’.", *trace, *(trace + 1));
+                       goto error;
+               }
+               trace += 2;
+
+               i = strchr (trace, '\n');
+               if (i == NULL) {
+                       g_warning ("Missing spacer ‘\\n’.");
+                       goto error;
+               }
+
+               soup_message_body_append (message_body, SOUP_MEMORY_COPY, trace, i - trace + 1); /* include 
trailing \n */
+               trace += (i - trace) + 1;
+       }
+
+done:
+       /* Done. Update the output trace pointer. */
+       soup_message_body_complete (message_body);
+       *_trace = trace;
+
+       return TRUE;
+
+error:
+       return FALSE;
+}
+
+static SoupMessage *
+trace_to_soup_message (const gchar *trace)
+{
+       SoupMessage *message;
+       const gchar *i, *j, *method;
+       gchar *uri_string, *response_message;
+       SoupHTTPVersion http_version;
+       guint response_status;
+       SoupURI *base_uri, *uri;
+
+       g_return_val_if_fail (trace != NULL, NULL);
+
+       /* The traces look somewhat like this:
+        * > POST /unauth HTTP/1.1
+        * > Soup-Debug-Timestamp: 1200171744
+        * > Soup-Debug: SoupSessionAsync 1 (0x612190), SoupMessage 1 (0x617000), SoupSocket 1 (0x612220)
+        * > Host: localhost
+        * > Content-Type: text/plain
+        * > Connection: close
+        * > 
+        * > This is a test.
+        *   
+        * < HTTP/1.1 201 Created
+        * < Soup-Debug-Timestamp: 1200171744
+        * < Soup-Debug: SoupMessage 1 (0x617000)
+        * < Date: Sun, 12 Jan 2008 21:02:24 GMT
+        * < Content-Length: 0
+        *
+        * This function parses a single request–response pair.
+        */
+
+       /* Parse the method, URI and HTTP version first. */
+       if (*trace != '>' || *(trace + 1) != ' ') {
+               g_warning ("Unrecognised start sequence ‘%c%c’.", *trace, *(trace + 1));
+               goto error;
+       }
+       trace += 2;
+
+       /* Parse “POST /unauth HTTP/1.1”. */
+       if (strncmp (trace, "POST", strlen ("POST")) == 0) {
+               method = SOUP_METHOD_POST;
+               trace += strlen ("POST");
+       } else if (strncmp (trace, "GET", strlen ("GET")) == 0) {
+               method = SOUP_METHOD_GET;
+               trace += strlen ("GET");
+       } else if (strncmp (trace, "DELETE", strlen ("DELETE")) == 0) {
+               method = SOUP_METHOD_DELETE;
+               trace += strlen ("DELETE");
+       } else {
+               g_warning ("Unknown method ‘%s’.", trace);
+               goto error;
+       }
+
+       if (*trace != ' ') {
+               g_warning ("Unrecognised spacer ‘%c’.", *trace);
+               goto error;
+       }
+       trace++;
+
+       i = strchr (trace, ' ');
+       if (i == NULL) {
+               g_warning ("Missing spacer ‘ ’.");
+               goto error;
+       }
+
+       uri_string = g_strndup (trace, i - trace);
+       trace += (i - trace) + 1;
+
+       if (strncmp (trace, "HTTP/1.1", strlen ("HTTP/1.1")) == 0) {
+               http_version = SOUP_HTTP_1_1;
+               trace += strlen ("HTTP/1.1");
+       } else if (strncmp (trace, "HTTP/1.0", strlen ("HTTP/1.0")) == 0) {
+               http_version = SOUP_HTTP_1_0;
+               trace += strlen ("HTTP/1.0");
+       } else {
+               g_warning ("Unrecognised HTTP version ‘%s’.", trace);
+       }
+
+       if (*trace != '\n') {
+               g_warning ("Unrecognised spacer ‘%c’.", *trace);
+               goto error;
+       }
+       trace++;
+
+       /* Build the message. */
+       base_uri = soup_uri_new ("https://127.0.0.1:443";); /* TODO */
+       uri = soup_uri_new_with_base (base_uri, uri_string);
+       message = soup_message_new_from_uri (method, uri);
+
+       soup_uri_free (uri);
+       soup_uri_free (base_uri);
+
+       if (message == NULL) {
+               g_warning ("Invalid URI ‘%s’.", uri_string);
+               goto error;
+       }
+
+       soup_message_set_http_version (message, http_version);
+       g_free (uri_string);
+
+       /* Parse the request headers and body. */
+       if (trace_to_soup_message_headers_and_body (message->request_headers, message->request_body, '>', 
&trace) == FALSE) {
+               goto error;
+       }
+
+       /* Parse the response, starting with “HTTP/1.1 201 Created”. */
+       if (*trace != '<' || *(trace + 1) != ' ') {
+               g_warning ("Unrecognised start sequence ‘%c%c’.", *trace, *(trace + 1));
+               goto error;
+       }
+       trace += 2;
+
+       if (strncmp (trace, "HTTP/1.1", strlen ("HTTP/1.1")) == 0) {
+               http_version = SOUP_HTTP_1_1;
+               trace += strlen ("HTTP/1.1");
+       } else if (strncmp (trace, "HTTP/1.0", strlen ("HTTP/1.0")) == 0) {
+               http_version = SOUP_HTTP_1_0;
+               trace += strlen ("HTTP/1.0");
+       } else {
+               g_warning ("Unrecognised HTTP version ‘%s’.", trace);
+       }
+
+       if (*trace != ' ') {
+               g_warning ("Unrecognised spacer ‘%c’.", *trace);
+               goto error;
+       }
+       trace++;
+
+       i = strchr (trace, ' ');
+       if (i == NULL) {
+               g_warning ("Missing spacer ‘ ’.");
+               goto error;
+       }
+
+       response_status = g_ascii_strtoull (trace, (gchar **) &j, 10);
+       if (j != i) {
+               g_warning ("Invalid status ‘%s’.", trace);
+               goto error;
+       }
+       trace += (i - trace) + 1;
+
+       i = strchr (trace, '\n');
+       if (i == NULL) {
+               g_warning ("Missing spacer ‘\n’.");
+               goto error;
+       }
+
+       response_message = g_strndup (trace, i - trace);
+       trace += (i - trace) + 1;
+
+       soup_message_set_status_full (message, response_status, response_message);
+
+       /* Parse the response headers and body. */
+       if (trace_to_soup_message_headers_and_body (message->response_headers, message->response_body, '<', 
&trace) == FALSE) {
+               goto error;
+       }
+
+       return message;
+
+error:
+       g_object_unref (message);
+
+       return NULL;
+}
+
+static GFileInputStream *
+load_file_stream (GFile *trace_file, GCancellable *cancellable, GError **error)
+{
+       return g_file_read (trace_file, cancellable, error);
+}
+
+static gboolean
+load_message_half (GFileInputStream *input_stream, GString *current_message, gchar half_direction, 
GCancellable *cancellable, GError **error)
+{
+       guint8 buf[1024];
+       gssize len;
+
+       while (TRUE) {
+               len = g_input_stream_read (G_INPUT_STREAM (input_stream), buf, sizeof (buf), cancellable, 
error);
+
+               if (len == -1) {
+                       /* Error. */
+                       return FALSE;
+               } else if (len == 0) {
+                       /* EOF. Try again to grab a response. */
+                       return TRUE;
+               } else {
+                       const guint8 *i;
+
+                       /* Got some data. Parse it and see if we've reached the end of a message (i.e. read 
both the request and the response). */
+                       for (i = memchr (buf, half_direction, sizeof (buf)); i != NULL; i = memchr (i + 1, 
half_direction, buf + sizeof (buf) - i)) {
+                               if (*(i + 1) == ' ' && (i == buf || (i > buf && *(i - 1) == '\n'))) {
+                                       /* Found the boundary between request and response.
+                                        * Fall through to try and find the boundary between this response 
and the next request.
+                                        * To make things simpler, seek back to the boundary and make a 
second read request below. */
+                                       if (g_seekable_seek (G_SEEKABLE (input_stream), i - (buf + len), 
G_SEEK_CUR, cancellable, error) == FALSE) {
+                                               /* Error. */
+                                               return FALSE;
+                                       }
+
+                                       g_string_append_len (current_message, (gchar *) buf, i - buf);
+
+                                       return TRUE;
+                               }
+                       }
+
+                       /* Reached the end of the buffer without finding a change in message. Loop around and 
load another buffer-full. */
+                       g_string_append_len (current_message, (gchar *) buf, len);
+               }
+       }
+
+       return TRUE;
+}
+
+static SoupMessage *
+load_file_iteration (GFileInputStream *input_stream, GCancellable *cancellable, GError **error)
+{
+       SoupMessage *output_message = NULL;
+       GString *current_message = NULL;
+
+       /* Start loading from the stream. */
+       current_message = g_string_new (NULL);
+
+       /* We should be at the start of a request (>). Search for the start of the response (<), then for the 
start of the next request (>). */
+       if (load_message_half (input_stream, current_message, '<', cancellable, error) == FALSE ||
+           load_message_half (input_stream, current_message, '>', cancellable, error) == FALSE) {
+               goto done;
+       }
+
+       if (current_message->len > 0) {
+               output_message = trace_to_soup_message (current_message->str);
+       } else {
+               /* Reached the end of the file. */
+               output_message = NULL;
+       }
+
+done:
+       /* Tidy up. */
+       if (current_message != NULL) {
+               g_string_free (current_message, TRUE);
+       }
+
+       /* Postcondition: (output_message != NULL) => (*error == NULL). */
+       g_assert (output_message == NULL || (error == NULL || *error == NULL));
+
+       return output_message;
+}
+
+static void
+load_file_stream_thread_cb (GTask *task, gpointer source_object, gpointer task_data, GCancellable 
*cancellable)
+{
+       GFile *trace_file;
+       GFileInputStream *input_stream;
+       GError *child_error = NULL;
+
+       trace_file = task_data;
+       g_assert (G_IS_FILE (trace_file));
+
+       input_stream = load_file_stream (trace_file, cancellable, &child_error);
+
+       if (child_error != NULL) {
+               g_task_return_error (task, child_error);
+       } else {
+               g_task_return_pointer (task, input_stream, g_object_unref);
+       }
+}
+
+static void
+load_file_iteration_thread_cb (GTask *task, gpointer source_object, gpointer task_data, GCancellable 
*cancellable)
+{
+       GFileInputStream *input_stream;
+       SoupMessage *output_message;
+       GError *child_error = NULL;
+
+       input_stream = task_data;
+       g_assert (G_IS_FILE_INPUT_STREAM (input_stream));
+
+       output_message = load_file_iteration (input_stream, cancellable, &child_error);
+
+       if (child_error != NULL) {
+               g_task_return_error (task, child_error);
+       } else {
+               g_task_return_pointer (task, output_message, g_object_unref);
+       }
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_server_load_trace (GDataMockServer *self, GFile *trace_file, GCancellable *cancellable, GError 
**error)
+{
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+       g_return_if_fail (G_IS_FILE (trace_file));
+       g_return_if_fail (cancellable == NULL || G_IS_CANCELLABLE (cancellable));
+       g_return_if_fail (error == NULL || *error == NULL);
+       g_return_if_fail (self->priv->trace_file == NULL && self->priv->input_stream == NULL && 
self->priv->next_message == NULL);
+
+       self->priv->trace_file = g_object_ref (trace_file);
+       self->priv->input_stream = load_file_stream (self->priv->trace_file, cancellable, error);
+       if (self->priv->input_stream != NULL) {
+               self->priv->next_message = load_file_iteration (self->priv->input_stream, cancellable, error);
+       }
+}
+
+typedef struct {
+       GAsyncReadyCallback callback;
+       gpointer user_data;
+} LoadTraceData;
+
+static void
+load_trace_async_cb (GObject *source_object, GAsyncResult *result, gpointer user_data)
+{
+       GDataMockServer *self = GDATA_MOCK_SERVER (source_object);
+       LoadTraceData *data = user_data;
+       GTask *task;
+       GError *child_error = NULL;
+
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+       g_return_if_fail (G_IS_ASYNC_RESULT (result));
+       g_return_if_fail (g_task_is_valid (result, self));
+
+       self->priv->input_stream = g_task_propagate_pointer (G_TASK (result), &child_error);
+
+       task = g_task_new (g_task_get_source_object (G_TASK (result)), g_task_get_cancellable (G_TASK 
(result)), data->callback, data->user_data);
+       g_task_set_task_data (task, g_object_ref (self->priv->input_stream), g_object_unref);
+
+       if (child_error != NULL) {
+               g_task_return_error (task, child_error);
+       } else {
+               g_task_run_in_thread (task, load_file_iteration_thread_cb);
+       }
+
+       g_object_unref (task);
+
+       g_slice_free (LoadTraceData, data);
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_server_load_trace_async (GDataMockServer *self, GFile *trace_file, GCancellable *cancellable, 
GAsyncReadyCallback callback, gpointer user_data)
+{
+       GTask *task;
+       LoadTraceData *data;
+
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+       g_return_if_fail (G_IS_FILE (trace_file));
+       g_return_if_fail (cancellable == NULL || G_IS_CANCELLABLE (cancellable));
+       g_return_if_fail (self->priv->trace_file == NULL && self->priv->input_stream == NULL && 
self->priv->next_message == NULL);
+
+       self->priv->trace_file = g_object_ref (trace_file);
+
+       data = g_slice_new (LoadTraceData);
+       data->callback = callback;
+       data->user_data = user_data;
+
+       task = g_task_new (self, cancellable, load_trace_async_cb, data);
+       g_task_set_task_data (task, g_object_ref (self->priv->trace_file), g_object_unref);
+       g_task_run_in_thread (task, load_file_stream_thread_cb);
+       g_object_unref (task);
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_server_load_trace_finish (GDataMockServer *self, GAsyncResult *result, GError **error)
+{
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+       g_return_if_fail (G_IS_ASYNC_RESULT (result));
+       g_return_if_fail (error == NULL || *error == NULL);
+       g_return_if_fail (g_task_is_valid (result, self));
+
+       self->priv->next_message = g_task_propagate_pointer (G_TASK (result), error);
+}
+
+static gpointer
+server_thread_cb (gpointer user_data)
+{
+       GDataMockServer *self = user_data;
+       GDataMockServerPrivate *priv = self->priv;
+
+       /* Run the server. */
+       soup_server_run (priv->server);
+
+       return NULL;
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_server_run (GDataMockServer *self)
+{
+       GDataMockServerPrivate *priv = self->priv;
+       struct sockaddr_in sock;
+       SoupAddress *addr;
+       GMainContext *thread_context;
+
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+       g_return_if_fail (priv->resolver == NULL);
+       g_return_if_fail (priv->server == NULL);
+
+       /* Grab a loopback IP to use. */
+       memset (&sock, 0, sizeof (sock));
+       sock.sin_family = AF_INET;
+       sock.sin_addr.s_addr = htonl (INADDR_LOOPBACK); /* TODO: don't hard-code this */
+       sock.sin_port = htons (443);
+
+       addr = soup_address_new_from_sockaddr ((struct sockaddr *) &sock, sizeof (sock));
+       g_assert (addr != NULL);
+
+       /* Set up the resolver, adding TODO */
+       priv->resolver = gdata_mock_resolver_new ();
+       gdata_mock_resolver_add_A (priv->resolver, "www.google.com", "127.0.0.1"); /* TODO: get IP from soup 
*/
+       gdata_mock_resolver_add_A (priv->resolver, "gdata.youtube.com", "127.0.0.1"); /* TODO */
+       gdata_mock_resolver_add_A (priv->resolver, "uploads.gdata.youtube.com", "127.0.0.1"); /* TODO */
+
+       g_resolver_set_default (G_RESOLVER (priv->resolver));
+
+       /* Set up the server. */
+       thread_context = g_main_context_new ();
+       priv->server = soup_server_new ("interface", addr,
+                                       "port", 443,
+                                       "ssl-cert-file", "/etc/pki/tls/certs/localhost.crt", /* TODO */
+                                       "ssl-key-file", "/etc/pki/tls/private/localhost.key" /* TODO */,
+                                       "async-context", thread_context,
+                                       NULL);
+       soup_server_add_handler (priv->server, "/", server_handler_cb, self, NULL);
+
+       g_main_context_unref (thread_context);
+       g_object_unref (addr);
+
+       /* Start the network thread. */
+       priv->server_thread = g_thread_new ("mock-server-thread", server_thread_cb, self);
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_server_stop (GDataMockServer *self)
+{
+       GDataMockServerPrivate *priv = self->priv;
+
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+       g_return_if_fail (priv->server != NULL);
+       g_return_if_fail (priv->resolver != NULL);
+
+       /* Stop the server. */
+       soup_server_disconnect (priv->server);
+       g_thread_join (priv->server_thread);
+       priv->server_thread = NULL;
+       gdata_mock_resolver_reset (priv->resolver);
+
+       g_clear_object (&priv->server);
+       g_clear_object (&priv->resolver);
+
+       /* Reset the trace file. */
+       g_clear_object (&priv->next_message);
+       g_clear_object (&priv->input_stream);
+       g_clear_object (&priv->trace_file);
+}
+
+/**
+ * TODO: Document me.
+ */
+GFile *
+gdata_mock_server_get_trace_directory (GDataMockServer *self)
+{
+       g_return_val_if_fail (GDATA_IS_MOCK_SERVER (self), NULL);
+
+       return self->priv->trace_directory;
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_server_set_trace_directory (GDataMockServer *self, GFile *trace_directory)
+{
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+       g_return_if_fail (trace_directory == NULL || G_IS_FILE (trace_directory));
+
+       if (trace_directory != NULL) {
+               g_object_ref (trace_directory);
+       }
+
+       g_clear_object (&self->priv->trace_directory);
+       self->priv->trace_directory = trace_directory;
+       g_object_notify (G_OBJECT (self), "trace-directory");
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_server_start_trace (GDataMockServer *self, const gchar *trace_name)
+{
+       GFile *trace_file;
+
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+       g_return_if_fail (trace_name != NULL && *trace_name != '\0');
+
+       g_assert (self->priv->trace_directory != NULL);
+
+       trace_file = g_file_get_child (self->priv->trace_directory, trace_name);
+       gdata_mock_server_start_trace_full (self, trace_file);
+       g_object_unref (trace_file);
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_server_start_trace_full (GDataMockServer *self, GFile *trace_file)
+{
+       GDataMockServerPrivate *priv = self->priv;
+       GError *child_error = NULL;
+
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+       g_return_if_fail (G_IS_FILE (trace_file));
+
+       g_return_if_fail (priv->output_stream == NULL);
+
+       /* TODO */
+       if (priv->enable_logging == TRUE) {
+               priv->output_stream = g_file_replace (trace_file, NULL, FALSE, G_FILE_CREATE_NONE, NULL, 
&child_error);
+
+               if (child_error != NULL) {
+                       gchar *trace_file_path;
+
+                       trace_file_path = g_file_get_path (trace_file);
+                       g_warning ("Error replacing trace file ‘%s’: %s", trace_file_path, 
child_error->message);
+                       g_free (trace_file_path);
+
+                       g_error_free (child_error);
+
+                       return;
+               }
+       }
+
+       if (priv->enable_online == FALSE) {
+               gdata_mock_server_load_trace (self, trace_file, NULL, &child_error);
+
+               if (child_error != NULL) {
+                       gchar *trace_file_path = g_file_get_path (trace_file);
+                       g_error ("Error loading trace file ‘%s’: %s", trace_file_path, child_error->message);
+                       g_free (trace_file_path);
+
+                       g_error_free (child_error);
+
+                       return;
+               }
+
+               gdata_mock_server_run (self);
+       }
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_server_end_trace (GDataMockServer *self)
+{
+       GDataMockServerPrivate *priv = self->priv;
+
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+
+       if (priv->enable_online == FALSE) {
+               gdata_mock_server_stop (self);
+       }
+       /* TODO: Integrate logging. */
+
+       if (priv->enable_logging == TRUE) {
+               g_clear_object (&self->priv->output_stream);
+       }
+}
+
+/**
+ * TODO: Document me.
+ */
+gboolean
+gdata_mock_server_get_enable_online (GDataMockServer *self)
+{
+       g_return_val_if_fail (GDATA_IS_MOCK_SERVER (self), FALSE);
+
+       return self->priv->enable_online;
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_server_set_enable_online (GDataMockServer *self, gboolean enable_online)
+{
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+
+       self->priv->enable_online = enable_online;
+       g_object_notify (G_OBJECT (self), "enable-online");
+}
+
+/**
+ * TODO: Document me.
+ */
+gboolean
+gdata_mock_server_get_enable_logging (GDataMockServer *self)
+{
+       g_return_val_if_fail (GDATA_IS_MOCK_SERVER (self), FALSE);
+
+       return self->priv->enable_logging;
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_server_set_enable_logging (GDataMockServer *self, gboolean enable_logging)
+{
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+
+       self->priv->enable_logging = enable_logging;
+       g_object_notify (G_OBJECT (self), "enable-logging");
+
+       /* TODO: Disable logging if we're currently in a trace section? */
+}
+
+/**
+ * TODO: Document me.
+ */
+void
+gdata_mock_server_log_message_chunk (GDataMockServer *self, const gchar *message_chunk)
+{
+       GDataMockServerPrivate *priv = self->priv;
+       GError *child_error = NULL;
+
+       g_return_if_fail (GDATA_IS_MOCK_SERVER (self));
+       g_return_if_fail (message_chunk != NULL);
+
+       /* Silently ignore the call if logging is disabled or if a trace file hasn't been specified. */
+       if (priv->enable_logging == FALSE || priv->output_stream == NULL) {
+               return;
+       }
+
+       /* Append to the trace file. */
+       if (g_output_stream_write_all (G_OUTPUT_STREAM (priv->output_stream), message_chunk, strlen 
(message_chunk), NULL, NULL, &child_error) == FALSE ||
+           g_output_stream_write_all (G_OUTPUT_STREAM (priv->output_stream), "\n", 1, NULL, NULL, 
&child_error) == FALSE) {
+               gchar *trace_file_path = g_file_get_path (priv->trace_file);
+               g_warning ("Error appending to log file ‘%s’: %s", trace_file_path, child_error->message);
+               g_free (trace_file_path);
+
+               g_error_free (child_error);
+
+               return;
+       }
+}
diff --git a/gdata/tests/mock-server.h b/gdata/tests/mock-server.h
new file mode 100644
index 0000000..d0bbd21
--- /dev/null
+++ b/gdata/tests/mock-server.h
@@ -0,0 +1,75 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+/*
+ * GData Client
+ * Copyright (C) Philip Withnall 2013 <philip tecnocode co uk>
+ * 
+ * GData Client is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * GData Client is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GData Client.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef GDATA_MOCK_SERVER_H
+#define GDATA_MOCK_SERVER_H
+
+#include <glib.h>
+#include <glib-object.h>
+#include <gio/gio.h>
+
+G_BEGIN_DECLS
+
+#define GDATA_TYPE_MOCK_SERVER         (gdata_mock_server_get_type ())
+#define GDATA_MOCK_SERVER(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GDATA_TYPE_MOCK_SERVER, 
GDataMockServer))
+#define GDATA_MOCK_SERVER_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), GDATA_TYPE_MOCK_SERVER, 
GDataMockServerClass))
+#define GDATA_IS_MOCK_SERVER(o)                (G_TYPE_CHECK_INSTANCE_TYPE ((o), GDATA_TYPE_MOCK_SERVER))
+#define GDATA_IS_MOCK_SERVER_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), GDATA_TYPE_MOCK_SERVER))
+#define GDATA_MOCK_SERVER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GDATA_TYPE_MOCK_SERVER, 
GDataMockServerClass))
+
+typedef struct _GDataMockServerPrivate GDataMockServerPrivate;
+
+typedef struct {
+       GObject parent;
+       GDataMockServerPrivate *priv;
+} GDataMockServer;
+
+typedef struct {
+       GObjectClass parent;
+} GDataMockServerClass;
+
+GType gdata_mock_server_get_type (void) G_GNUC_CONST;
+
+GDataMockServer *gdata_mock_server_new (void) G_GNUC_MALLOC G_GNUC_WARN_UNUSED_RESULT;
+
+void gdata_mock_server_load_trace (GDataMockServer *self, GFile *trace_file, GCancellable *cancellable, 
GError **error);
+void gdata_mock_server_load_trace_async (GDataMockServer *self, GFile *trace_file, GCancellable 
*cancellable, GAsyncReadyCallback callback, gpointer user_data);
+void gdata_mock_server_load_trace_finish (GDataMockServer *self, GAsyncResult *result, GError **error);
+
+void gdata_mock_server_run (GDataMockServer *self);
+void gdata_mock_server_stop (GDataMockServer *self);
+
+GFile *gdata_mock_server_get_trace_directory (GDataMockServer *self) G_GNUC_WARN_UNUSED_RESULT;
+void gdata_mock_server_set_trace_directory (GDataMockServer *self, GFile *trace_directory);
+
+void gdata_mock_server_start_trace (GDataMockServer *self, const gchar *trace_name);
+void gdata_mock_server_start_trace_full (GDataMockServer *self, GFile *trace_file);
+void gdata_mock_server_end_trace (GDataMockServer *self);
+
+gboolean gdata_mock_server_get_enable_online (GDataMockServer *self) G_GNUC_WARN_UNUSED_RESULT;
+void gdata_mock_server_set_enable_online (GDataMockServer *self, gboolean enable_online);
+
+gboolean gdata_mock_server_get_enable_logging (GDataMockServer *self) G_GNUC_WARN_UNUSED_RESULT;
+void gdata_mock_server_set_enable_logging (GDataMockServer *self, gboolean enable_logging);
+
+void gdata_mock_server_log_message_chunk (GDataMockServer *self, const gchar *message_chunk);
+
+G_END_DECLS
+
+#endif /* !GDATA_MOCK_SERVER_H */
diff --git a/gdata/tests/traces/youtube/authentication b/gdata/tests/traces/youtube/authentication
new file mode 100644
index 0000000..aebfca9
--- /dev/null
+++ b/gdata/tests/traces/youtube/authentication
@@ -0,0 +1,26 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1372714737
+> Soup-Debug: SoupSessionSync 1 (0x646340), SoupMessage 1 (0x8c2ab0), SoupSocket 1 (0x84d160)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=youtube&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714737
+< Soup-Debug: SoupMessage 1 (0x8c2ab0)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Mon, 01 Jul 2013 21:38:57 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 881
+< Server: GSE
+< 
+< 
SID=DQAAAMwAAAB5ft9WleCWDdCr0YCe-NGt0dYz020Tx8HzjPufW3jt1UXjFMRZ54wB3aQuEkoHcNSZG2vSxxwQvxfA2J__45ZrBTu0oVGHtnKeCgwfLs1s1A8sIE0HPLNhwkf4wW6MSt-wHGtXI-6w84tDtaaTve_C6L2EAm-ay73SuxzyWuSgIADDZXx02qKqFlVPIgwO-UivbvHqLFrhSIElM7gWYs_jlwT5JBCbSp89eY_3JYqvkcH9e7btm9Wq8J_CP5HVP5Gv5SAbSSYynFcfhyJILQko
+< 
LSID=DQAAAM8AAAAv-Qq_-zF4WHcrG4MmQ4NQSAZeGMLrzUe6RTD__D5vq_Roqb08sEFI4wJQ--HBhW42nGgWnE4MIU4VsEszgPyQNlUZVWIpb9lGEaF_PWcWxaGzSj6FPNgU6flZ6lz350ScU3YLbSRTXrK1alerx0yNFsdMAlfP4LwaMlItzmN1bHXDdb2awDxtoTLf9_826jmPRiNZaSLtVD7acaDXuBknnUERXmt2qzxio_tbQNa4bNftCQtI-tgA9XwWPKHmf65SA1EDv4fGznkJXn1h4DqP
+< 
Auth=DQAAAM8AAAAv-Qq_-zF4WHcrG4MmQ4NQSAZeGMLrzUe6RTD__D5vq_Roqb08sEFI4wJQ--HBhW4gBmS-j9sfTJz2CX_5ksczewn71Rx6T_uz1PZkGuGQ4s4u_Lxh1c3JSgPGf2d6Ylx3-qypzQ2TygSf_ow967lHQ4YZYbOFWC-BVkzilx8e1jTMKQGG3uydogHySpg70J34-E5iq9rr5ayVBu2D7wLAjKgHB08Imf1-c7wqN-QdTL9kyp0_XBk58xsWGnuC0gecYvTLD-Bg9ISUKNHhQrtx
+  
diff --git a/gdata/tests/traces/youtube/authentication-async b/gdata/tests/traces/youtube/authentication-async
new file mode 100644
index 0000000..4161c2b
--- /dev/null
+++ b/gdata/tests/traces/youtube/authentication-async
@@ -0,0 +1,26 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1372714740
+> Soup-Debug: SoupSessionSync 1 (0x646450), SoupMessage 1 (0x7fffdc002b80), SoupSocket 1 (0x7fffe401cdf0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=youtube&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714740
+< Soup-Debug: SoupMessage 1 (0x7fffdc002b80)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Mon, 01 Jul 2013 21:39:00 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 881
+< Server: GSE
+< 
+< 
SID=DQAAAMwAAAAQDciQmsnNElQcIeITMD7M33oYcrMNJKCzsYIG5Du3S4UfSX6ksSt3iJ_CrTPXkr-a5U-N6PpI4l_719ZAvcP5fMbThaASk_wlFTAn9RTGh1jjkl4UoRWNYsYzQneBkafSkAK-_aw-eCCgLxBPO-Ne8k0nZQVTvZzDqZFn00CreL8Np9I3HFLv8FOYTEbMpjFIUdvWzXFN1-42z0vRuB_AwrMwGZXn5LxIc-xnKwxFhVxGW9x211HYAtv_d7-WUBb5IPVLgVJHt_mneBit0nwb
+< 
LSID=DQAAAM8AAACsDU-9iKVg60qciHkfNZCVhIEe7WBIsh1NeOekPUG4mS2WLUzMRow9HccDpAN4_Koi1KT4ZcpgmfLyQfEfKVvneVsBftiyEnPNFZlAh-TuEy7Xb_xpGXxKAIIPIMVFi5N7anPTQSJsdob3Slcjakkv6H-QMhtH0nFcMkYiir0lnFP_fwZVI-OHREQ30kLEpfodx-wPinQDnceTGxcEogS8Eaf8FIkFZSfHoJXtHZpPLy2mtjxoeQJXtFJr70I3QosQXF3MiJGJuNwCA9pwb8Nv
+< 
Auth=DQAAAM8AAACsDU-9iKVg60qciHkfNZCVhIEe7WBIsh1NeOekPUG4mS2WLUzMRow9HccDpAN4_Kq2zBF-6ZNXqUR2i-rklnhtdsiy8fNDc9UijXd9-EMzr4fQq0iZpJEZ3DPZP9OjKY5rIJ6bhGYffKPEaOX76fm8vxxudUjf9BmzQXm4n4qeTqzQ1C2JLeqdUoNQrjDhwTRBdcxH7Y0ijegGe7CQHtRHgot_J1X0uXQgZPrGTWtVQG6El5dqVD4tDav5AxQSxa4i99KAnymwxe7HcoXi7Rd6
+  
diff --git a/gdata/tests/traces/youtube/batch b/gdata/tests/traces/youtube/batch
new file mode 100644
index 0000000..fa91b26
--- /dev/null
+++ b/gdata/tests/traces/youtube/batch
@@ -0,0 +1,58 @@
+> POST /feeds/api/videos/batch HTTP/1.1
+> Soup-Debug-Timestamp: 1372714738
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 5 (0x8c28d0), SoupSocket 2 (0x84d3a0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Batch operation feed</title><id>batch1</id><updated>2013-07-01T21:38:58Z</updated><entry><title 
type='text'>Batch operation 
query</title><id>https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY</id><updated>2013-07-01T21:38:58Z</updated><batch:id>1</batch:id><batch:operation
 type='query'/></entry></feed>
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714738
+< Soup-Debug: SoupMessage 5 (0x8c28d0)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< GData-Version: 2.1
+< Date: Mon, 01 Jul 2013 21:38:58 GMT
+< Expires: Mon, 01 Jul 2013 21:38:58 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 6091
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed 
xmlns='http://www.w3.org/2005/Atom'><id>https://gdata.youtube.com/feeds/api/videos/batch/1372714738608</id><updated>2013-07-01T21:38:58.664Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><title 
type='text'>Batch operation feed</title><entry xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkEBR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY</id><published>2010-08-02T19:52:59.000Z</published><updated>2013-07-01T21:37:36.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'/><title>Fooish Bar</title><conten
 t type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/RzR2k8yo4NY?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/related'/><link rel='http://gdata.youtub
 e.com/schemas/2007#video.captionTracks' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/captions' yt:hasEntries='false'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=RzR2k8yo4NY'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hdu7S-LbC8V98jsR_tu6GA'/><link 
rel='http://gdata.youtube.com/schemas/2007#insight.views' type='text/html' 
href='https://insight.youtube.com/video-analytics-partner/gwt/csv-zip?token=ChUKAggEEg8IABILUnpSMms4eW80Tlk&amp;sig=MCwCFDCUxZ5OzwbHQAqO0pq8rqvNkJXOAhQQUV4KOJvlnd1qZTwmueYhFvpD0A&amp;user_starttime=1371945600000&amp;user_endtime=1372550400000&amp;exp=1372718338659&amp;devKey=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm'/><link
 rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><author><name>GDataTest</name
<uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></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'/><batch:id>1</batch:id><batch:operation type='query'/><batch:status code='200' 
reason='Success'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments' 
countHint='450'/></gd:comments><media:group><media:category label='People &amp; Blogs' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>People</media:c
 ategory><media:content 
url='https://www.youtube.com/v/RzR2k8yo4NY?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='12' 
yt:format='5'/><media:content 
url='rtsp://v5.cache8.c.youtube.com/CkULENy73wIaPAnW4KjMk3Y0RxMYDSANFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='12' yt:format='1'/><media:content 
url='rtsp://v5.cache8.c.youtube.com/CkULENy73wIaPAnW4KjMk3Y0RxMYESARFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='12' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='GDataTest'>gdatatest</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' href='http://www.youtube.com/t/terms'>yo
 utube</media:license><media:player 
url='https://www.youtube.com/watch?v=RzR2k8yo4NY&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/RzR2k8yo4NY/default.jpg' height='90' width='120' time='00:00:06' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/RzR2k8yo4NY/1.jpg' height='90' width='120' time='00:00:03' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/2.jpg' height='90' width='120' 
time='00:00:06' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/3.jpg' 
height='90' width='120' time='00:00:09' yt:name='end'/><media:title type='plain'>Fooish 
Bar</media:title><yt:duration seconds='12'/><yt:uploaded>2010-08-02T19:52:59.000Z</yt:uploaded><yt:uploa
 
derId>UCHdu7S-LbC8V98jsR_tu6GA</yt:uploaderId><yt:videoid>RzR2k8yo4NY</yt:videoid></media:group><yt:statistics
 favoriteCount='0' viewCount='9'/></entry></feed>
+  
+> POST /feeds/api/videos/batch HTTP/1.1
+> Soup-Debug-Timestamp: 1372714738
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 6 (0x8c2ab0), SoupSocket 3 (0x84d5e0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Batch operation feed</title><id>batch1</id><updated>2013-07-01T21:38:58Z</updated><entry><title 
type='text'>Batch operation 
query</title><id>https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI</id><updated>2013-07-01T21:38:58Z</updated><batch:id>2</batch:id><batch:operation
 type='query'/></entry><entry><title type='text'>Batch operation 
query</title><id>https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY</id><updated>2013-07-01T21:38:58Z</updated><batch:id>1</batch:id><batch:operation
 type='query'/></entry></feed>
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714739
+< Soup-Debug: SoupMessage 6 (0x8c2ab0)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< GData-Version: 2.1
+< Date: Mon, 01 Jul 2013 21:38:59 GMT
+< Expires: Mon, 01 Jul 2013 21:38:59 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 11779
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed 
xmlns='http://www.w3.org/2005/Atom'><id>https://gdata.youtube.com/feeds/api/videos/batch/1372714738949</id><updated>2013-07-01T21:38:59.012Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><title 
type='text'>Batch operation feed</title><entry xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;Ak4HQ347eCp7I2A9Wx5TF0o.&quot;'><id>tag:youtube.com,2008:video:VppEcVz8qaI</id><published>2010-08-02T19:53:00.000Z</published><updated>2010-08-02T19:55: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='People' label='People &amp; 
Blogs'/><title>Fooish Bar 2</title><cont
 ent type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/VppEcVz8qaI?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=VppEcVz8qaI&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI/related'/><link rel='http://gdata.yout
 ube.com/schemas/2007#video.captionTracks' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI/captions' yt:hasEntries='false'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=VppEcVz8qaI'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hdu7S-LbC8V98jsR_tu6GA'/><link 
rel='http://gdata.youtube.com/schemas/2007#insight.views' type='text/html' 
href='https://insight.youtube.com/video-analytics-partner/gwt/csv-zip?token=ChUKAggEEg8IABILVnBwRWNWejhxYUk&amp;sig=MCwCFDm_c-CJyIgFb8d7YU10gNrZUu0LAhQUh59golyoB1MsoBBrXkMuVE3E4Q&amp;user_starttime=1371945600000&amp;user_endtime=1372550400000&amp;exp=1372718339008&amp;devKey=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm'/><link
 rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI'/><author><name>GDataTest</na
 
me><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></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'/><batch:id>2</batch:id><batch:operation type='query'/><batch:status code='200' 
reason='Success'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI/comments' 
countHint='0'/></gd:comments><media:group><media:category label='People &amp; Blogs' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>People</media:c
 ategory><media:content 
url='https://www.youtube.com/v/VppEcVz8qaI?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='12' 
yt:format='5'/><media:content 
url='rtsp://v1.cache8.c.youtube.com/CkULENy73wIaPAmiqfxccUSaVhMYDSANFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='12' yt:format='1'/><media:content 
url='rtsp://v1.cache8.c.youtube.com/CkULENy73wIaPAmiqfxccUSaVhMYESARFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='12' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='GDataTest'>gdatatest</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' href='http://www.youtube.com/t/terms'>yo
 utube</media:license><media:player 
url='https://www.youtube.com/watch?v=VppEcVz8qaI&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/VppEcVz8qaI/default.jpg' height='90' width='120' time='00:00:06' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/VppEcVz8qaI/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/VppEcVz8qaI/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/VppEcVz8qaI/1.jpg' height='90' width='120' time='00:00:03' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/VppEcVz8qaI/2.jpg' height='90' width='120' 
time='00:00:06' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/VppEcVz8qaI/3.jpg' 
height='90' width='120' time='00:00:09' yt:name='end'/><media:title type='plain'>Fooish Bar 
2</media:title><yt:duration seconds='12'/><yt:uploaded>2010-08-02T19:53:00.000Z</yt:uploaded><yt:upl
 
oaderId>UCHdu7S-LbC8V98jsR_tu6GA</yt:uploaderId><yt:videoid>VppEcVz8qaI</yt:videoid></media:group></entry><entry
 xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkEBR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY</id><published>2010-08-02T19:52:59.000Z</published><updated>2013-07-01T21:37:36.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'/><title>Fooish Bar</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/RzR2k8yo4NY?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' href='https://www.youtube.c
 om/watch?v=RzR2k8yo4NY&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.captionTracks' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/captions' yt:hasEntries='false'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http
 s://m.youtube.com/details?v=RzR2k8yo4NY'/><link rel='http://gdata.youtube.com/schemas/2007#uploader' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/users/Hdu7S-LbC8V98jsR_tu6GA'/><link 
rel='http://gdata.youtube.com/schemas/2007#insight.views' type='text/html' 
href='https://insight.youtube.com/video-analytics-partner/gwt/csv-zip?token=ChUKAggEEg8IABILUnpSMms4eW80Tlk&amp;sig=MCwCFAnJn5z1h025lbwJ60gXSUfOcYEZAhRrszg1jkrF0LORQGlW7nxAhUkkdg&amp;user_starttime=1371945600000&amp;user_endtime=1372550400000&amp;exp=1372718339015&amp;devKey=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm'/><link
 rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessC
 ontrol 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'/><batch:id>1</batch:id><batch:operation type='query'/><batch:status 
code='200' reason='Success'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments' 
countHint='450'/></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='https://www.youtube.com/v/RzR2k8yo4NY?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='fu
 ll' duration='12' yt:format='5'/><media:content 
url='rtsp://v5.cache8.c.youtube.com/CkULENy73wIaPAnW4KjMk3Y0RxMYDSANFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='12' yt:format='1'/><media:content 
url='rtsp://v5.cache8.c.youtube.com/CkULENy73wIaPAnW4KjMk3Y0RxMYESARFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='12' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='GDataTest'>gdatatest</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=RzR2k8yo4NY&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/RzR2k8yo4NY/default.jpg' height='90' width='120' time='00:00:06' yt:name='default
 '/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/mqdefault.jpg' height='180' width='320' 
yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/hqdefault.jpg' height='360' 
width='480' yt:name='hqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/1.jpg' height='90' 
width='120' time='00:00:03' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/2.jpg' 
height='90' width='120' time='00:00:06' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/RzR2k8yo4NY/3.jpg' height='90' width='120' time='00:00:09' 
yt:name='end'/><media:title type='plain'>Fooish Bar</media:title><yt:duration 
seconds='12'/><yt:uploaded>2010-08-02T19:52:59.000Z</yt:uploaded><yt:uploaderId>UCHdu7S-LbC8V98jsR_tu6GA</yt:uploaderId><yt:videoid>RzR2k8yo4NY</yt:videoid></media:group><yt:statistics
 favoriteCount='0' viewCount='9'/></entry></feed>
+  
diff --git a/gdata/tests/traces/youtube/batch-async b/gdata/tests/traces/youtube/batch-async
new file mode 100644
index 0000000..bbd22c4
--- /dev/null
+++ b/gdata/tests/traces/youtube/batch-async
@@ -0,0 +1,29 @@
+> POST /feeds/api/videos/batch HTTP/1.1
+> Soup-Debug-Timestamp: 1372714779
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 64 (0x7fffdc201f60), SoupSocket 29 (0x7fffe401ca30)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:batch='http://schemas.google.com/gdata/batch' xmlns:gd='http://schemas.google.com/g/2005'><title 
type='text'>Batch operation feed</title><id>batch1</id><updated>2013-07-01T21:39:39Z</updated><entry><title 
type='text'>Batch operation 
query</title><id>https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY</id><updated>2013-07-01T21:39:39Z</updated><batch:id>1</batch:id><batch:operation
 type='query'/></entry></feed>
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714779
+< Soup-Debug: SoupMessage 64 (0x7fffdc201f60)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< GData-Version: 2.1
+< Date: Mon, 01 Jul 2013 21:39:39 GMT
+< Expires: Mon, 01 Jul 2013 21:39:39 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 6092
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed 
xmlns='http://www.w3.org/2005/Atom'><id>https://gdata.youtube.com/feeds/api/videos/batch/1372714779781</id><updated>2013-07-01T21:39:39.836Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><title 
type='text'>Batch operation feed</title><entry xmlns:batch='http://schemas.google.com/gdata/batch' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkEBR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY</id><published>2010-08-02T19:52:59.000Z</published><updated>2013-07-01T21:37:36.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'/><title>Fooish Bar</title><conten
 t type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/RzR2k8yo4NY?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/related'/><link rel='http://gdata.youtub
 e.com/schemas/2007#video.captionTracks' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/captions' yt:hasEntries='false'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=RzR2k8yo4NY'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hdu7S-LbC8V98jsR_tu6GA'/><link 
rel='http://gdata.youtube.com/schemas/2007#insight.views' type='text/html' 
href='https://insight.youtube.com/video-analytics-partner/gwt/csv-zip?token=ChUKAggEEg8IABILUnpSMms4eW80Tlk&amp;sig=MC0CFQCSl7yTjpwZhD7mV7wEHH6XUunRDwIUeeZpQbTNgKO3ki-8GRO7dYDKTTE&amp;user_starttime=1371945600000&amp;user_endtime=1372550400000&amp;exp=1372718379831&amp;devKey=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm'/><link
 rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><author><name>GDataTest</nam
 
e><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></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'/><batch:id>1</batch:id><batch:operation type='query'/><batch:status code='200' 
reason='Success'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments' 
countHint='450'/></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='https://www.youtube.com/v/RzR2k8yo4NY?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='12' 
yt:format='5'/><media:content 
url='rtsp://v5.cache8.c.youtube.com/CkULENy73wIaPAnW4KjMk3Y0RxMYDSANFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='12' yt:format='1'/><media:content 
url='rtsp://v5.cache8.c.youtube.com/CkULENy73wIaPAnW4KjMk3Y0RxMYESARFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='12' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='GDataTest'>gdatatest</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' href='http://www.youtube.com/t/terms'>y
 outube</media:license><media:player 
url='https://www.youtube.com/watch?v=RzR2k8yo4NY&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/RzR2k8yo4NY/default.jpg' height='90' width='120' time='00:00:06' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/RzR2k8yo4NY/1.jpg' height='90' width='120' time='00:00:03' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/2.jpg' height='90' width='120' 
time='00:00:06' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/3.jpg' 
height='90' width='120' time='00:00:09' yt:name='end'/><media:title type='plain'>Fooish 
Bar</media:title><yt:duration seconds='12'/><yt:uploaded>2010-08-02T19:52:59.000Z</yt:uploaded><yt:uplo
 
aderId>UCHdu7S-LbC8V98jsR_tu6GA</yt:uploaderId><yt:videoid>RzR2k8yo4NY</yt:videoid></media:group><yt:statistics
 favoriteCount='0' viewCount='9'/></entry></feed>
+  
diff --git a/gdata/tests/traces/youtube/batch-async-cancellation 
b/gdata/tests/traces/youtube/batch-async-cancellation
new file mode 100644
index 0000000..e69de29
diff --git a/gdata/tests/traces/youtube/categories b/gdata/tests/traces/youtube/categories
new file mode 100644
index 0000000..210627c
--- /dev/null
+++ b/gdata/tests/traces/youtube/categories
@@ -0,0 +1,51 @@
+> GET /schemas/2007/categories.cat HTTP/1.1
+> Soup-Debug-Timestamp: 1372714737
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 1 (0x8c2c90), SoupSocket 1 (0x84d220)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714737
+< Soup-Debug: SoupMessage 1 (0x8c2c90)
+< X-GData-User-Country: GB
+< Content-Type: application/atomcat+xml; charset=UTF-8
+< Date: Mon, 01 Jul 2013 21:38:57 GMT
+< Expires: Mon, 01 Jul 2013 21:38:57 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 6379
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><app:categories xmlns:app='http://www.w3.org/2007/app' 
xmlns:atom='http://www.w3.org/2005/Atom' xmlns:yt='http://gdata.youtube.com/schemas/2007' fixed='yes' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'><atom:category term='Film' label='Film &amp; 
Animation' xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ 
EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN 
TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Autos' label='Autos &amp; Vehicles' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Music' label='Music' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH
  CL CO CZ DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO 
RU SA SE SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Animals' label='Pets &amp; 
Animals' xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG 
ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN 
TR TW UA UG US YE ZA'/></atom:category><atom:category term='Sports' label='Sports' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Shortmov' label='Short Movies' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Travel' label='Travel &amp; Events' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT 
 AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ 
PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Games' 
label='Gaming' xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK 
DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK 
SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Videoblog' label='Videoblogging' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='People' label='People &amp; Blogs' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Comedy' label='Comedy' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT
  AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ 
PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category 
term='Entertainment' label='Entertainment' xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT 
AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ 
PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='News' 
label='News &amp; Politics' xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH 
CL CO CZ DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO 
RU SA SE SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Howto' label='Howto &amp; 
Style' xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG 
ES FI FR GB GH GR HK HU ID IE IL IN IT JO
  JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA UG US YE 
ZA'/></atom:category><atom:category term='Education' label='Education' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Tech' label='Science &amp; Technology' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Nonprofit' label='Nonprofits &amp; Activism' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='US'/></atom:category><atom:category term='Movies' 
label='Movies' xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_anime_animati
 on' label='Anime/Animation' xml:lang='en-US'><yt:deprecated/></atom:category><atom:category 
term='Movies_action_adventure' label='Action/Adventure' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_classics' label='Classics' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_comedy' label='Comedy' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_documentary' label='Documentary' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_drama' label='Drama' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_family' label='Family' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_foreign' label='Foreign' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_horror' label='Horror' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_sci_fi_fantasy' 
label='Sci-Fi/Fantasy' xml:lang='e
 n-US'><yt:deprecated/></atom:category><atom:category term='Movies_thriller' label='Thriller' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_shorts' label='Shorts' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Shows' label='Shows' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Trailers' label='Trailers' 
xml:lang='en-US'><yt:deprecated/></atom:category></app:categories>
+  
+> GET /schemas/2007/categories.cat HTTP/1.1
+> Soup-Debug-Timestamp: 1372714737
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 2 (0x8c2c90), SoupSocket 1 (0x84d220)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Accept-Language: it
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714737
+< Soup-Debug: SoupMessage 2 (0x8c2c90)
+< X-GData-User-Country: GB
+< Content-Type: application/atomcat+xml; charset=UTF-8
+< Date: Mon, 01 Jul 2013 21:38:57 GMT
+< Expires: Mon, 01 Jul 2013 21:38:57 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 6377
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><app:categories xmlns:app='http://www.w3.org/2007/app' 
xmlns:atom='http://www.w3.org/2005/Atom' xmlns:yt='http://gdata.youtube.com/schemas/2007' fixed='yes' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'><atom:category term='Film' label='Film e 
animazione' xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ 
EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN 
TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Autos' label='Auto e motori' 
xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Music' label='Musica' 
xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ
  DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE 
SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Animals' label='Animali' 
xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Sports' label='Sport' 
xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Shortmov' label='Cortometraggi' 
xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category term='Travel' label='Viaggi ed eventi' 
xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ
  DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE 
SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Games' label='Giochi' 
xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Videoblog' label='Blog video' 
xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category term='People' label='Persone e blog' 
xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Comedy' label='Umorismo' 
xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE 
 DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG 
SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Entertainment' label='Intrattenimento' 
xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='News' label='Notizie e politica' 
xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Howto' label='Guide pratiche e stile' 
xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG 
 NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category 
term='Education' label='Istruzione' xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR 
CA CH CL CO CZ DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL 
PT RO RU SA SE SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Tech' label='Scienze e 
tecnologie' xml:lang='it-IT'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ 
EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN 
TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Nonprofit' label='Non profit e attivismo' 
xml:lang='it-IT'><yt:assignable/><yt:browsable regions='US'/></atom:category><atom:category term='Movies' 
label='Film' xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category term='Movies_anime_animation' 
label='Anime/Animazione' x
 ml:lang='it-IT'><yt:deprecated/></atom:category><atom:category term='Movies_action_adventure' 
label='Azione/Avventura' xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category 
term='Movies_classics' label='Classici' xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category 
term='Movies_comedy' label='Umorismo' xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category 
term='Movies_documentary' label='Documentari' xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category 
term='Movies_drama' label='Drammatici' xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category 
term='Movies_family' label='Famiglia' xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category 
term='Movies_foreign' label='Stranieri' xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category 
term='Movies_horror' label='Horror' xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category 
term='Movies_sci_fi_fantasy' label='Fantascienza/Fantasy' xml:lang='it-IT'><yt:de
 precated/></atom:category><atom:category term='Movies_thriller' label='Thriller' 
xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category term='Movies_shorts' label='Cortometraggi' 
xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category term='Shows' label='Programmi' 
xml:lang='it-IT'><yt:deprecated/></atom:category><atom:category term='Trailers' label='Trailer' 
xml:lang='it-IT'><yt:deprecated/></atom:category></app:categories>
+  
diff --git a/gdata/tests/traces/youtube/categories-async b/gdata/tests/traces/youtube/categories-async
new file mode 100644
index 0000000..c2089c2
--- /dev/null
+++ b/gdata/tests/traces/youtube/categories-async
@@ -0,0 +1,25 @@
+> GET /schemas/2007/categories.cat HTTP/1.1
+> Soup-Debug-Timestamp: 1372714778
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 61 (0x8c2e70), SoupSocket 28 (0x7fffe401cbb0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714778
+< Soup-Debug: SoupMessage 61 (0x8c2e70)
+< X-GData-User-Country: GB
+< Content-Type: application/atomcat+xml; charset=UTF-8
+< Date: Mon, 01 Jul 2013 21:39:38 GMT
+< Expires: Mon, 01 Jul 2013 21:39:38 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 6379
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><app:categories xmlns:app='http://www.w3.org/2007/app' 
xmlns:atom='http://www.w3.org/2005/Atom' xmlns:yt='http://gdata.youtube.com/schemas/2007' fixed='yes' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'><atom:category term='Film' label='Film &amp; 
Animation' xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ 
EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN 
TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Autos' label='Autos &amp; Vehicles' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Music' label='Music' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH
  CL CO CZ DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO 
RU SA SE SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Animals' label='Pets &amp; 
Animals' xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG 
ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN 
TR TW UA UG US YE ZA'/></atom:category><atom:category term='Sports' label='Sports' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Shortmov' label='Short Movies' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Travel' label='Travel &amp; Events' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT 
 AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ 
PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Games' 
label='Gaming' xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK 
DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK 
SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Videoblog' label='Videoblogging' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='People' label='People &amp; Blogs' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Comedy' label='Comedy' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT
  AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ 
PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category 
term='Entertainment' label='Entertainment' xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT 
AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ 
PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='News' 
label='News &amp; Politics' xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH 
CL CO CZ DE DK DZ EG ES FI FR GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO 
RU SA SE SG SK SN TN TR TW UA UG US YE ZA'/></atom:category><atom:category term='Howto' label='Howto &amp; 
Style' xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG 
ES FI FR GB GH GR HK HU ID IE IL IN IT JO
  JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA UG US YE 
ZA'/></atom:category><atom:category term='Education' label='Education' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Tech' label='Science &amp; Technology' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='AE AR AT AU BE BR CA CH CL CO CZ DE DK DZ EG ES FI FR 
GB GH GR HK HU ID IE IL IN IT JO JP KE KR MA MX MY NG NL NO NZ PE PH PL PT RO RU SA SE SG SK SN TN TR TW UA 
UG US YE ZA'/></atom:category><atom:category term='Nonprofit' label='Nonprofits &amp; Activism' 
xml:lang='en-US'><yt:assignable/><yt:browsable regions='US'/></atom:category><atom:category term='Movies' 
label='Movies' xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_anime_animati
 on' label='Anime/Animation' xml:lang='en-US'><yt:deprecated/></atom:category><atom:category 
term='Movies_action_adventure' label='Action/Adventure' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_classics' label='Classics' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_comedy' label='Comedy' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_documentary' label='Documentary' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_drama' label='Drama' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_family' label='Family' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_foreign' label='Foreign' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_horror' label='Horror' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_sci_fi_fantasy' 
label='Sci-Fi/Fantasy' xml:lang='e
 n-US'><yt:deprecated/></atom:category><atom:category term='Movies_thriller' label='Thriller' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Movies_shorts' label='Shorts' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Shows' label='Shows' 
xml:lang='en-US'><yt:deprecated/></atom:category><atom:category term='Trailers' label='Trailers' 
xml:lang='en-US'><yt:deprecated/></atom:category></app:categories>
+  
diff --git a/gdata/tests/traces/youtube/comment-delete b/gdata/tests/traces/youtube/comment-delete
new file mode 100644
index 0000000..e69de29
diff --git a/gdata/tests/traces/youtube/comment-delete-async b/gdata/tests/traces/youtube/comment-delete-async
new file mode 100644
index 0000000..e69de29
diff --git a/gdata/tests/traces/youtube/comment-insert b/gdata/tests/traces/youtube/comment-insert
new file mode 100644
index 0000000..4e8f71f
--- /dev/null
+++ b/gdata/tests/traces/youtube/comment-insert
@@ -0,0 +1,33 @@
+> POST /feeds/api/videos/RzR2k8yo4NY/comments HTTP/1.1
+> Soup-Debug-Timestamp: 1372714768
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 38 (0x8c29c0), SoupSocket 19 (0x84d6a0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'></title><content type='text'>This is a test 
comment.</content><category term='http://gdata.youtube.com/schemas/2007#comment' 
scheme='http://schemas.google.com/g/2005#kind'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1372714768
+< Soup-Debug: SoupMessage 38 (0x8c29c0)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Mon, 01 Jul 2013 21:39:28 GMT
+< Date: Mon, 01 Jul 2013 21:39:28 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.1
+< ETag: W/"DkACSX47eCp7I2A9WhFRF0w."
+< Location: 
https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqWUeFT76CidCSqgE2t0FmzZTPW0NkiQbY
+< Content-Location: 
https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqWUeFT76CidCSqgE2t0FmzZTPW0NkiQbY
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkACSX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqWUeFT76CidCSqgE2t0FmzZTPW0NkiQbY</id><published>2013-07-01T21:39:28.000Z</published><updated>2013-07-01T21:39:28.000Z</updated><app:edited>2013-07-01T21:39:28.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k
 8yo4NY/comments/TlXUqsnFsOqWUeFT76CidCSqgE2t0FmzZTPW0NkiQbY'/><link rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqWUeFT76CidCSqgE2t0FmzZTPW0NkiQbY'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry>
+  
diff --git a/gdata/tests/traces/youtube/comment-insert-async b/gdata/tests/traces/youtube/comment-insert-async
new file mode 100644
index 0000000..92cdc8a
--- /dev/null
+++ b/gdata/tests/traces/youtube/comment-insert-async
@@ -0,0 +1,33 @@
+> POST /feeds/api/videos/RzR2k8yo4NY/comments HTTP/1.1
+> Soup-Debug-Timestamp: 1372714776
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 55 (0x8c2e70), SoupSocket 26 (0x84d6a0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Content-Type: application/atom+xml
+> Connection: Keep-Alive
+> 
+> <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:gd='http://schemas.google.com/g/2005'><title type='text'></title><content type='text'>This is a test 
comment.</content><category term='http://gdata.youtube.com/schemas/2007#comment' 
scheme='http://schemas.google.com/g/2005#kind'/></entry>
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1372714776
+< Soup-Debug: SoupMessage 55 (0x8c2e70)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Mon, 01 Jul 2013 21:39:36 GMT
+< Date: Mon, 01 Jul 2013 21:39:36 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.1
+< ETag: W/"DkADR347eCp7I2A9WhFRF0w."
+< Location: 
https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpHzqPcekeHv4bighBo3sCN8hwR51oLoKI
+< Content-Location: 
https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpHzqPcekeHv4bighBo3sCN8hwR51oLoKI
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkADR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpHzqPcekeHv4bighBo3sCN8hwR51oLoKI</id><published>2013-07-01T21:39:36.000Z</published><updated>2013-07-01T21:39:36.000Z</updated><app:edited>2013-07-01T21:39:36.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k
 8yo4NY/comments/TlXUqsnFsOpHzqPcekeHv4bighBo3sCN8hwR51oLoKI'/><link rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpHzqPcekeHv4bighBo3sCN8hwR51oLoKI'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry>
+  
diff --git a/gdata/tests/traces/youtube/comment-query b/gdata/tests/traces/youtube/comment-query
new file mode 100644
index 0000000..7ae3e35
--- /dev/null
+++ b/gdata/tests/traces/youtube/comment-query
@@ -0,0 +1,29 @@
+> GET /feeds/api/videos/RzR2k8yo4NY/comments HTTP/1.1
+> Soup-Debug-Timestamp: 1372714767
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 36 (0x8c2d80), SoupSocket 18 (0x7fffe401cdf0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714767
+< Soup-Debug: SoupMessage 36 (0x8c2d80)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Mon, 01 Jul 2013 21:39:27 GMT
+< Date: Mon, 01 Jul 2013 21:39:27 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.1
+< ETag: W/"DkACRnozeyp7I2A9WhFRF0w."
+< Last-Modified: Mon, 01 Jul 2013 21:39:27 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkACRnozeyp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comments</id><updated>2013-07-01T21:39:27.483Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments'/><link 
rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://g
 data.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/batch'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments?start-index=1&amp;max-results=25'/><link
 rel='service' type='application/atomsvc+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments?alt=atom-service'/><link rel='next' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments?start-index=26&amp;max-results=25'/><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>450</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='W/&quot;DkEBR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOrdzYzTvgC0tfZtJhUrcq8JZXxs0RQ6cGQ</id><published>2013-07-0
 
1T21:37:36.000Z</published><updated>2013-07-01T21:37:36.000Z</updated><app:edited>2013-07-01T21:37:36.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrdzYzTvgC0tfZtJhUrcq8JZXxs0RQ6cGQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrdzYzTvgC0tfZtJhUrcq8JZXxs0RQ6cGQ'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:chan
 nelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry 
gd:etag='W/&quot;DkEBRH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqfyYrj8zgVF9I1Y2bDkflag9CJMDzLz-k</id><published>2013-07-01T21:37:35.000Z</published><updated>2013-07-01T21:37:35.000Z</updated><app:edited>2013-07-01T21:37:35.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqfyYrj8zgVF9I1Y2bDkflag9CJMDzLz-k'/><link
 rel='edit' type='application/atom+xml' href='
 
https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqfyYrj8zgVF9I1Y2bDkflag9CJMDzLz-k'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkEBRX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpdQ8wwSneZMSzlcIMJlzot1MrigZ4JUUs</id><published>2013-07-01T21:37:34.000Z</published><updated>2013-07-01T21:37:34.000Z</updated><app:edited>2013-07-01T21:37:34.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
 href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpdQ8wwSneZMSzlcIMJlzot1MrigZ4JUUs'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpdQ8wwSneZMSzlcIMJlzot1MrigZ4JUUs'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkEASH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqyglx4MZDVpIQEhi-Pn3wZgZsWBXFGfNo</id><published>2013-07-01T21:37:29.000Z</published><updated>2013-07-01T21:37:29.000Z</updated><app:edited>2013-07-01T21:37:29.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.yo
 utube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a test 
comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqyglx4MZDVpIQEhi-Pn3wZgZsWBXFGfNo'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqyglx4MZDVpIQEhi-Pn3wZgZsWBXFGfNo'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 gd:etag='W/&quot;DkIDQ347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:T
 
lXUqsnFsOrTri_LnwGPl4RMAd3txEsO-x-mnpOUcIw</id><published>2013-07-01T21:36:12.000Z</published><updated>2013-07-01T21:36:12.000Z</updated><app:edited>2013-07-01T21:36:12.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrTri_LnwGPl4RMAd3txEsO-x-mnpOUcIw'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrTri_LnwGPl4RMAd3txEsO-x-mnpOUcIw'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</ur
 
i><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkIDQH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqDeMkuoBQc6wklSZtQIbhTWPm9qDk9Xt4</id><published>2013-07-01T21:36:11.000Z</published><updated>2013-07-01T21:36:11.000Z</updated><app:edited>2013-07-01T21:36:11.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqDeMkuoBQc6wklSZtQIbhTW
 Pm9qDk9Xt4'/><link rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqDeMkuoBQc6wklSZtQIbhTWPm9qDk9Xt4'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkIDQX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpnMSGJQdY19SfLkvVP-2m5XAul93YPUQQ</id><published>2013-07-01T21:36:10.000Z</published><updated>2013-07-01T21:36:10.000Z</updated><app:edited>2013-07-01T21:36:10.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' href='https://gdata.youtube.com/feeds/
 api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpnMSGJQdY19SfLkvVP-2m5XAul93YPUQQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpnMSGJQdY19SfLkvVP-2m5XAul93YPUQQ'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkICRX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOr4mc-bbynsjHJlkaDTejLIX5yaDTUT7GU</id><published>2013-07-01T21:36:04.000Z</published><updated>2013-07-01T21:36:04.000Z</updated><app:edited>2013-07-01T21:36:04.000Z</app:edited><category
 sche
 me='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#comment'/><title>This 
is a test ...</title><content>This is a test comment.</content><link rel='related' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link 
rel='alternate' type='text/html' href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr4mc-bbynsjHJlkaDTejLIX5yaDTUT7GU'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr4mc-bbynsjHJlkaDTejLIX5yaDTUT7GU'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 gd:etag='W/&quot;CUcDR347eCp7I2A9WhFRF0w
 
.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpq3iEMcwegdtpt_oiVtcOzDVYGRlI4Cjo</id><published>2013-07-01T21:11:16.000Z</published><updated>2013-07-01T21:11:16.000Z</updated><app:edited>2013-07-01T21:11:16.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpq3iEMcwegdtpt_oiVtcOzDVYGRlI4Cjo'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpq3iEMcwegdtpt_oiVtcOzDVYGRlI4Cjo'/><author><name>GDataTest</n
 
ame><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CUcDRH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqMcEWo0tui9xlb_POViGPyc3dhc4uIjwA</id><published>2013-07-01T21:11:15.000Z</published><updated>2013-07-01T21:11:15.000Z</updated><app:edited>2013-07-01T21:11:15.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/
 videos/RzR2k8yo4NY/comments/TlXUqsnFsOqMcEWo0tui9xlb_POViGPyc3dhc4uIjwA'/><link rel='edit' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqMcEWo0tui9xlb_POViGPyc3dhc4uIjwA'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CUcDQH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOq7RH0gy5cPEWTZhvvPhMR0zZ7sbtp5CZ4</id><published>2013-07-01T21:11:11.000Z</published><updated>2013-07-01T21:11:11.000Z</updated><app:edited>2013-07-01T21:11:11.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type=
 'application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' 
type='text/html' href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOq7RH0gy5cPEWTZhvvPhMR0zZ7sbtp5CZ4'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOq7RH0gy5cPEWTZhvvPhMR0zZ7sbtp5CZ4'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CEUDSH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqjbIKuMpXAjKBykIpLn85VglKYAJ3whis</id><published>2013-07-01T20:57:59.000Z</published><updated>2013-07-01T20:57:59.000Z</updated><a
 pp:edited>2013-07-01T20:57:59.000Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqjbIKuMpXAjKBykIpLn85VglKYAJ3whis'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqjbIKuMpXAjKBykIpLn85VglKYAJ3whis'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt
 :videoid></entry><entry 
gd:etag='W/&quot;CEUDSX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpOpbMSi1ERoNBUl7zhd9XrYdVeYC6Xo_s</id><published>2013-07-01T20:57:58.000Z</published><updated>2013-07-01T20:57:58.000Z</updated><app:edited>2013-07-01T20:57:58.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpOpbMSi1ERoNBUl7zhd9XrYdVeYC6Xo_s'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnF
 
sOpOpbMSi1ERoNBUl7zhd9XrYdVeYC6Xo_s'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CEUDRX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOozyzqYTyTg7TLcIuyUzUwFEy0I746AYuc</id><published>2013-07-01T20:57:54.000Z</published><updated>2013-07-01T20:57:54.000Z</updated><app:edited>2013-07-01T20:57:54.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' typ
 e='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOozyzqYTyTg7TLcIuyUzUwFEy0I746AYuc'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOozyzqYTyTg7TLcIuyUzUwFEy0I746AYuc'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DUAERn47eCp7I2A9WhNVEEo.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpUyZ0xrU7rgl6a3__57nWEmwjXsAwkI8c</id><published>2012-12-21T08:15:07.000Z</published><updated>2012-12-21T08:15:07.000Z</updated><app:edited>2012-12-21T08:15:07.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><co
 ntent>This is a test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpUyZ0xrU7rgl6a3__57nWEmwjXsAwkI8c'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpUyZ0xrU7rgl6a3__57nWEmwjXsAwkI8c'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DUAER347eCp7I2A9WhNVEEo.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOoKqojfAmMKBuR8fshrmUc_h11WIE0PPyQ</id><published>2012-12-21T08:
 
15:06.000Z</published><updated>2012-12-21T08:15:06.000Z</updated><app:edited>2012-12-21T08:15:06.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoKqojfAmMKBuR8fshrmUc_h11WIE0PPyQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoKqojfAmMKBuR8fshrmUc_h11WIE0PPyQ'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId
UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry 
gd:etag='W/&quot;DUAERH47eCp7I2A9WhNVEEo.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOr6u6HuImmuCa6wcU1XhL9FRb9vZM0pfRA</id><published>2012-12-21T08:15:05.000Z</published><updated>2012-12-21T08:15:05.000Z</updated><app:edited>2012-12-21T08:15:05.000Z</app:edited><category
scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr6u6HuImmuCa6wcU1XhL9FRb9vZM0pfRA'/><link
rel='edit' type='application/atom+xml' href='https
 
://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr6u6HuImmuCa6wcU1XhL9FRb9vZM0pfRA'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;AkUBQn47eCp7I2A9WhNWGU0.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOoBPGVeZ6JMp_qJqkyKNQHuyS0Dg0qAc0o</id><published>2012-12-19T09:10:53.000Z</published><updated>2012-12-19T09:10:53.000Z</updated><app:edited>2012-12-19T09:10:53.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' href=
 'https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoBPGVeZ6JMp_qJqkyKNQHuyS0Dg0qAc0o'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoBPGVeZ6JMp_qJqkyKNQHuyS0Dg0qAc0o'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;AkUBQ347eCp7I2A9WhNWGU0.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOr39DxDpyoePGzuKjXpEMsCx5eEO9HSQgM</id><published>2012-12-19T09:10:52.000Z</published><updated>2012-12-19T09:10:52.000Z</updated><app:edited>2012-12-19T09:10:52.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube
 .com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a test 
comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr39DxDpyoePGzuKjXpEMsCx5eEO9HSQgM'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr39DxDpyoePGzuKjXpEMsCx5eEO9HSQgM'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 gd:etag='W/&quot;AkUBQH47eCp7I2A9WhNWGU0.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqs
 
nFsOr1oqVwHSpj9AYhLvM5gxLHvIv-E58GacI</id><published>2012-12-19T09:10:51.000Z</published><updated>2012-12-19T09:10:51.000Z</updated><app:edited>2012-12-19T09:10:51.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr1oqVwHSpj9AYhLvM5gxLHvIv-E58GacI'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr1oqVwHSpj9AYhLvM5gxLHvIv-E58GacI'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri>
 
<yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;AkUBQX47eCp7I2A9WhNWGU0.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqjFFJ60p5aoKjAkJxzRzEctsCqBWXr21k</id><published>2012-12-19T09:10:50.000Z</published><updated>2012-12-19T09:10:50.000Z</updated><app:edited>2012-12-19T09:10:50.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqjFFJ60p5aoKjAkJxzRzEctsC
 qBWXr21k'/><link rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqjFFJ60p5aoKjAkJxzRzEctsCqBWXr21k'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkECQ347eCp7I2A9WhNWGEg.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOoUCK_J3WN8wjVxal-uMCAW7DwsRacYaTM</id><published>2012-12-18T18:17:42.000Z</published><updated>2012-12-18T18:17:42.000Z</updated><app:edited>2012-12-18T18:17:42.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/ap
 i/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoUCK_J3WN8wjVxal-uMCAW7DwsRacYaTM'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoUCK_J3WN8wjVxal-uMCAW7DwsRacYaTM'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkECQH47eCp7I2A9WhNWGEg.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqkeS7vSt7hQWHDVyNghKtR0S82CR3PdSM</id><published>2012-12-18T18:17:41.000Z</published><updated>2012-12-18T18:17:41.000Z</updated><app:edited>2012-12-18T18:17:41.000Z</app:edited><category
 scheme
 ='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#comment'/><title>This 
is a test ...</title><content>This is a test comment.</content><link rel='related' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link 
rel='alternate' type='text/html' href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqkeS7vSt7hQWHDVyNghKtR0S82CR3PdSM'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqkeS7vSt7hQWHDVyNghKtR0S82CR3PdSM'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 gd:etag='W/&quot;DkECQX47eCp7I2A9WhNWGE
 
g.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOrFKH86vHiITHel9aCkM6oJ-tOlCUwV-KM</id><published>2012-12-18T18:17:40.000Z</published><updated>2012-12-18T18:17:40.000Z</updated><app:edited>2012-12-18T18:17:40.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrFKH86vHiITHel9aCkM6oJ-tOlCUwV-KM'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrFKH86vHiITHel9aCkM6oJ-tOlCUwV-KM'/><author><name>GDataTest</
 
name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkEBSH47eCp7I2A9WhNWGEg.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOp892DRrYh3OzfJ0Ar7rHhNw6eZUne8evc</id><published>2012-12-18T18:17:39.000Z</published><updated>2012-12-18T18:17:39.000Z</updated><app:edited>2012-12-18T18:17:39.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/
 api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOp892DRrYh3OzfJ0Ar7rHhNw6eZUne8evc'/><link rel='edit' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOp892DRrYh3OzfJ0Ar7rHhNw6eZUne8evc'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry></feed>
+  
diff --git a/gdata/tests/traces/youtube/comment-query-async b/gdata/tests/traces/youtube/comment-query-async
new file mode 100644
index 0000000..6f64213
--- /dev/null
+++ b/gdata/tests/traces/youtube/comment-query-async
@@ -0,0 +1,29 @@
+> GET /feeds/api/videos/RzR2k8yo4NY/comments HTTP/1.1
+> Soup-Debug-Timestamp: 1372714772
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 47 (0x8c2e70), SoupSocket 22 (0x84d6a0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714772
+< Soup-Debug: SoupMessage 47 (0x8c2e70)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Mon, 01 Jul 2013 21:39:32 GMT
+< Date: Mon, 01 Jul 2013 21:39:32 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.1
+< ETag: W/"DkADQ3k-fyp7I2A9WhFRF0w."
+< Last-Modified: Mon, 01 Jul 2013 21:39:32 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkADQ3k-fyp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comments</id><updated>2013-07-01T21:39:32.757Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments'/><link 
rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://g
 data.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/batch'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments?start-index=1&amp;max-results=25'/><link
 rel='service' type='application/atomsvc+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments?alt=atom-service'/><link rel='next' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments?start-index=26&amp;max-results=25'/><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>450</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='W/&quot;DkACSX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqWUeFT76CidCSqgE2t0FmzZTPW0NkiQbY</id><published>2013-07-0
 
1T21:39:28.000Z</published><updated>2013-07-01T21:39:28.000Z</updated><app:edited>2013-07-01T21:39:28.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqWUeFT76CidCSqgE2t0FmzZTPW0NkiQbY'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqWUeFT76CidCSqgE2t0FmzZTPW0NkiQbY'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:chan
 nelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry 
gd:etag='W/&quot;DkEBR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOrdzYzTvgC0tfZtJhUrcq8JZXxs0RQ6cGQ</id><published>2013-07-01T21:37:36.000Z</published><updated>2013-07-01T21:37:36.000Z</updated><app:edited>2013-07-01T21:37:36.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrdzYzTvgC0tfZtJhUrcq8JZXxs0RQ6cGQ'/><link
 rel='edit' type='application/atom+xml' href='
 
https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrdzYzTvgC0tfZtJhUrcq8JZXxs0RQ6cGQ'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkEBRH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqfyYrj8zgVF9I1Y2bDkflag9CJMDzLz-k</id><published>2013-07-01T21:37:35.000Z</published><updated>2013-07-01T21:37:35.000Z</updated><app:edited>2013-07-01T21:37:35.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
 href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqfyYrj8zgVF9I1Y2bDkflag9CJMDzLz-k'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqfyYrj8zgVF9I1Y2bDkflag9CJMDzLz-k'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkEBRX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpdQ8wwSneZMSzlcIMJlzot1MrigZ4JUUs</id><published>2013-07-01T21:37:34.000Z</published><updated>2013-07-01T21:37:34.000Z</updated><app:edited>2013-07-01T21:37:34.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.yo
 utube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a test 
comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpdQ8wwSneZMSzlcIMJlzot1MrigZ4JUUs'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpdQ8wwSneZMSzlcIMJlzot1MrigZ4JUUs'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 gd:etag='W/&quot;DkEASH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:T
 
lXUqsnFsOqyglx4MZDVpIQEhi-Pn3wZgZsWBXFGfNo</id><published>2013-07-01T21:37:29.000Z</published><updated>2013-07-01T21:37:29.000Z</updated><app:edited>2013-07-01T21:37:29.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqyglx4MZDVpIQEhi-Pn3wZgZsWBXFGfNo'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqyglx4MZDVpIQEhi-Pn3wZgZsWBXFGfNo'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest<
 
/uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkIDQ347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOrTri_LnwGPl4RMAd3txEsO-x-mnpOUcIw</id><published>2013-07-01T21:36:12.000Z</published><updated>2013-07-01T21:36:12.000Z</updated><app:edited>2013-07-01T21:36:12.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrTri_LnwGPl4RMAd3txE
 sO-x-mnpOUcIw'/><link rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrTri_LnwGPl4RMAd3txEsO-x-mnpOUcIw'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkIDQH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqDeMkuoBQc6wklSZtQIbhTWPm9qDk9Xt4</id><published>2013-07-01T21:36:11.000Z</published><updated>2013-07-01T21:36:11.000Z</updated><app:edited>2013-07-01T21:36:11.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' href='https://gdata.youtube.com/fee
 ds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqDeMkuoBQc6wklSZtQIbhTWPm9qDk9Xt4'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqDeMkuoBQc6wklSZtQIbhTWPm9qDk9Xt4'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkIDQX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpnMSGJQdY19SfLkvVP-2m5XAul93YPUQQ</id><published>2013-07-01T21:36:10.000Z</published><updated>2013-07-01T21:36:10.000Z</updated><app:edited>2013-07-01T21:36:10.000Z</app:edited><category
 s
 cheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpnMSGJQdY19SfLkvVP-2m5XAul93YPUQQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpnMSGJQdY19SfLkvVP-2m5XAul93YPUQQ'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 gd:etag='W/&quot;DkICRX47eCp7I2A9W
 
hFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOr4mc-bbynsjHJlkaDTejLIX5yaDTUT7GU</id><published>2013-07-01T21:36:04.000Z</published><updated>2013-07-01T21:36:04.000Z</updated><app:edited>2013-07-01T21:36:04.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr4mc-bbynsjHJlkaDTejLIX5yaDTUT7GU'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr4mc-bbynsjHJlkaDTejLIX5yaDTUT7GU'/><author><name>GDataT
 
est</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CUcDR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpq3iEMcwegdtpt_oiVtcOzDVYGRlI4Cjo</id><published>2013-07-01T21:11:16.000Z</published><updated>2013-07-01T21:11:16.000Z</updated><app:edited>2013-07-01T21:11:16.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feed
 s/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpq3iEMcwegdtpt_oiVtcOzDVYGRlI4Cjo'/><link rel='edit' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpq3iEMcwegdtpt_oiVtcOzDVYGRlI4Cjo'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CUcDRH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqMcEWo0tui9xlb_POViGPyc3dhc4uIjwA</id><published>2013-07-01T21:11:15.000Z</published><updated>2013-07-01T21:11:15.000Z</updated><app:edited>2013-07-01T21:11:15.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related'
  type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link 
rel='alternate' type='text/html' href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqMcEWo0tui9xlb_POViGPyc3dhc4uIjwA'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqMcEWo0tui9xlb_POViGPyc3dhc4uIjwA'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CUcDQH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOq7RH0gy5cPEWTZhvvPhMR0zZ7sbtp5CZ4</id><published>2013-07-01T21:11:11.000Z</published><updated>2013-07-01T21:11:11.000Z</upda
 ted><app:edited>2013-07-01T21:11:11.000Z</app:edited><category 
scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOq7RH0gy5cPEWTZhvvPhMR0zZ7sbtp5CZ4'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOq7RH0gy5cPEWTZhvvPhMR0zZ7sbtp5CZ4'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4
 NY</yt:videoid></entry><entry 
gd:etag='W/&quot;CEUDSH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqjbIKuMpXAjKBykIpLn85VglKYAJ3whis</id><published>2013-07-01T20:57:59.000Z</published><updated>2013-07-01T20:57:59.000Z</updated><app:edited>2013-07-01T20:57:59.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqjbIKuMpXAjKBykIpLn85VglKYAJ3whis'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/Tl
 
XUqsnFsOqjbIKuMpXAjKBykIpLn85VglKYAJ3whis'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CEUDSX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpOpbMSi1ERoNBUl7zhd9XrYdVeYC6Xo_s</id><published>2013-07-01T20:57:58.000Z</published><updated>2013-07-01T20:57:58.000Z</updated><app:edited>2013-07-01T20:57:58.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='sel
 f' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpOpbMSi1ERoNBUl7zhd9XrYdVeYC6Xo_s'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpOpbMSi1ERoNBUl7zhd9XrYdVeYC6Xo_s'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CEUDRX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOozyzqYTyTg7TLcIuyUzUwFEy0I746AYuc</id><published>2013-07-01T20:57:54.000Z</published><updated>2013-07-01T20:57:54.000Z</updated><app:edited>2013-07-01T20:57:54.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title>
 <content>This is a test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOozyzqYTyTg7TLcIuyUzUwFEy0I746AYuc'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOozyzqYTyTg7TLcIuyUzUwFEy0I746AYuc'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DUAERn47eCp7I2A9WhNVEEo.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpUyZ0xrU7rgl6a3__57nWEmwjXsAwkI8c</id><published>2012-12-21T
 
08:15:07.000Z</published><updated>2012-12-21T08:15:07.000Z</updated><app:edited>2012-12-21T08:15:07.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpUyZ0xrU7rgl6a3__57nWEmwjXsAwkI8c'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpUyZ0xrU7rgl6a3__57nWEmwjXsAwkI8c'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channe
 lId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry 
gd:etag='W/&quot;DUAER347eCp7I2A9WhNVEEo.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOoKqojfAmMKBuR8fshrmUc_h11WIE0PPyQ</id><published>2012-12-21T08:15:06.000Z</published><updated>2012-12-21T08:15:06.000Z</updated><app:edited>2012-12-21T08:15:06.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoKqojfAmMKBuR8fshrmUc_h11WIE0PPyQ'/><link
 rel='edit' type='application/atom+xml' href='ht
 
tps://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoKqojfAmMKBuR8fshrmUc_h11WIE0PPyQ'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DUAERH47eCp7I2A9WhNVEEo.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOr6u6HuImmuCa6wcU1XhL9FRb9vZM0pfRA</id><published>2012-12-21T08:15:05.000Z</published><updated>2012-12-21T08:15:05.000Z</updated><app:edited>2012-12-21T08:15:05.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' href=
 'https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr6u6HuImmuCa6wcU1XhL9FRb9vZM0pfRA'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr6u6HuImmuCa6wcU1XhL9FRb9vZM0pfRA'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;AkUBQn47eCp7I2A9WhNWGU0.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOoBPGVeZ6JMp_qJqkyKNQHuyS0Dg0qAc0o</id><published>2012-12-19T09:10:53.000Z</published><updated>2012-12-19T09:10:53.000Z</updated><app:edited>2012-12-19T09:10:53.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube
 .com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a test 
comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoBPGVeZ6JMp_qJqkyKNQHuyS0Dg0qAc0o'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoBPGVeZ6JMp_qJqkyKNQHuyS0Dg0qAc0o'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 gd:etag='W/&quot;AkUBQ347eCp7I2A9WhNWGU0.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqs
 
nFsOr39DxDpyoePGzuKjXpEMsCx5eEO9HSQgM</id><published>2012-12-19T09:10:52.000Z</published><updated>2012-12-19T09:10:52.000Z</updated><app:edited>2012-12-19T09:10:52.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr39DxDpyoePGzuKjXpEMsCx5eEO9HSQgM'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr39DxDpyoePGzuKjXpEMsCx5eEO9HSQgM'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri>
 
<yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;AkUBQH47eCp7I2A9WhNWGU0.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOr1oqVwHSpj9AYhLvM5gxLHvIv-E58GacI</id><published>2012-12-19T09:10:51.000Z</published><updated>2012-12-19T09:10:51.000Z</updated><app:edited>2012-12-19T09:10:51.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr1oqVwHSpj9AYhLvM5gxLHvIv
 -E58GacI'/><link rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr1oqVwHSpj9AYhLvM5gxLHvIv-E58GacI'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;AkUBQX47eCp7I2A9WhNWGU0.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqjFFJ60p5aoKjAkJxzRzEctsCqBWXr21k</id><published>2012-12-19T09:10:50.000Z</published><updated>2012-12-19T09:10:50.000Z</updated><app:edited>2012-12-19T09:10:50.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/v
 ideos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqjFFJ60p5aoKjAkJxzRzEctsCqBWXr21k'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqjFFJ60p5aoKjAkJxzRzEctsCqBWXr21k'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkECQ347eCp7I2A9WhNWGEg.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOoUCK_J3WN8wjVxal-uMCAW7DwsRacYaTM</id><published>2012-12-18T18:17:42.000Z</published><updated>2012-12-18T18:17:42.000Z</updated><app:edited>2012-12-18T18:17:42.000Z</app:edited><category
 scheme='h
 ttp://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a 
test ...</title><content>This is a test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoUCK_J3WN8wjVxal-uMCAW7DwsRacYaTM'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoUCK_J3WN8wjVxal-uMCAW7DwsRacYaTM'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 gd:etag='W/&quot;DkECQH47eCp7I2A9WhNWGEg.&
 
quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqkeS7vSt7hQWHDVyNghKtR0S82CR3PdSM</id><published>2012-12-18T18:17:41.000Z</published><updated>2012-12-18T18:17:41.000Z</updated><app:edited>2012-12-18T18:17:41.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqkeS7vSt7hQWHDVyNghKtR0S82CR3PdSM'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqkeS7vSt7hQWHDVyNghKtR0S82CR3PdSM'/><author><name>GDataTest</nam
 
e><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkECQX47eCp7I2A9WhNWGEg.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOrFKH86vHiITHel9aCkM6oJ-tOlCUwV-KM</id><published>2012-12-18T18:17:40.000Z</published><updated>2012-12-18T18:17:40.000Z</updated><app:edited>2012-12-18T18:17:40.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/vi
 deos/RzR2k8yo4NY/comments/TlXUqsnFsOrFKH86vHiITHel9aCkM6oJ-tOlCUwV-KM'/><link rel='edit' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrFKH86vHiITHel9aCkM6oJ-tOlCUwV-KM'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry></feed>
+  
diff --git a/gdata/tests/traces/youtube/comment-query-async-progress-closure 
b/gdata/tests/traces/youtube/comment-query-async-progress-closure
new file mode 100644
index 0000000..92532b2
--- /dev/null
+++ b/gdata/tests/traces/youtube/comment-query-async-progress-closure
@@ -0,0 +1,29 @@
+> GET /feeds/api/videos/RzR2k8yo4NY/comments HTTP/1.1
+> Soup-Debug-Timestamp: 1372714773
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 49 (0x7fffdc2019c0), SoupSocket 22 (0x84d6a0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714773
+< Soup-Debug: SoupMessage 49 (0x7fffdc2019c0)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Mon, 01 Jul 2013 21:39:33 GMT
+< Date: Mon, 01 Jul 2013 21:39:33 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.1
+< ETag: W/"DkADQn08eSp7I2A9WhFRF0w."
+< Last-Modified: Mon, 01 Jul 2013 21:39:33 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:openSearch='http://a9.com/-/spec/opensearch/1.1/' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkADQn08eSp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comments</id><updated>2013-07-01T21:39:33.371Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link
 rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments'/><link 
rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments'/><link 
rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://g
 data.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/batch'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments?start-index=1&amp;max-results=25'/><link
 rel='service' type='application/atomsvc+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments?alt=atom-service'/><link rel='next' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments?start-index=26&amp;max-results=25'/><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>450</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='W/&quot;DkACSX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqWUeFT76CidCSqgE2t0FmzZTPW0NkiQbY</id><published>2013-07-0
 
1T21:39:28.000Z</published><updated>2013-07-01T21:39:28.000Z</updated><app:edited>2013-07-01T21:39:28.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqWUeFT76CidCSqgE2t0FmzZTPW0NkiQbY'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqWUeFT76CidCSqgE2t0FmzZTPW0NkiQbY'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:chan
 nelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry 
gd:etag='W/&quot;DkEBR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOrdzYzTvgC0tfZtJhUrcq8JZXxs0RQ6cGQ</id><published>2013-07-01T21:37:36.000Z</published><updated>2013-07-01T21:37:36.000Z</updated><app:edited>2013-07-01T21:37:36.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrdzYzTvgC0tfZtJhUrcq8JZXxs0RQ6cGQ'/><link
 rel='edit' type='application/atom+xml' href='
 
https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrdzYzTvgC0tfZtJhUrcq8JZXxs0RQ6cGQ'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkEBRH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqfyYrj8zgVF9I1Y2bDkflag9CJMDzLz-k</id><published>2013-07-01T21:37:35.000Z</published><updated>2013-07-01T21:37:35.000Z</updated><app:edited>2013-07-01T21:37:35.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
 href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqfyYrj8zgVF9I1Y2bDkflag9CJMDzLz-k'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqfyYrj8zgVF9I1Y2bDkflag9CJMDzLz-k'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkEBRX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpdQ8wwSneZMSzlcIMJlzot1MrigZ4JUUs</id><published>2013-07-01T21:37:34.000Z</published><updated>2013-07-01T21:37:34.000Z</updated><app:edited>2013-07-01T21:37:34.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.yo
 utube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a test 
comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpdQ8wwSneZMSzlcIMJlzot1MrigZ4JUUs'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpdQ8wwSneZMSzlcIMJlzot1MrigZ4JUUs'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 gd:etag='W/&quot;DkEASH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:T
 
lXUqsnFsOqyglx4MZDVpIQEhi-Pn3wZgZsWBXFGfNo</id><published>2013-07-01T21:37:29.000Z</published><updated>2013-07-01T21:37:29.000Z</updated><app:edited>2013-07-01T21:37:29.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqyglx4MZDVpIQEhi-Pn3wZgZsWBXFGfNo'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqyglx4MZDVpIQEhi-Pn3wZgZsWBXFGfNo'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest<
 
/uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkIDQ347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOrTri_LnwGPl4RMAd3txEsO-x-mnpOUcIw</id><published>2013-07-01T21:36:12.000Z</published><updated>2013-07-01T21:36:12.000Z</updated><app:edited>2013-07-01T21:36:12.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrTri_LnwGPl4RMAd3txEsO-
 x-mnpOUcIw'/><link rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrTri_LnwGPl4RMAd3txEsO-x-mnpOUcIw'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkIDQH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqDeMkuoBQc6wklSZtQIbhTWPm9qDk9Xt4</id><published>2013-07-01T21:36:11.000Z</published><updated>2013-07-01T21:36:11.000Z</updated><app:edited>2013-07-01T21:36:11.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' href='https://gdata.youtube.com/feeds/
 api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqDeMkuoBQc6wklSZtQIbhTWPm9qDk9Xt4'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqDeMkuoBQc6wklSZtQIbhTWPm9qDk9Xt4'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkIDQX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpnMSGJQdY19SfLkvVP-2m5XAul93YPUQQ</id><published>2013-07-01T21:36:10.000Z</published><updated>2013-07-01T21:36:10.000Z</updated><app:edited>2013-07-01T21:36:10.000Z</app:edited><category
 sche
 me='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#comment'/><title>This 
is a test ...</title><content>This is a test comment.</content><link rel='related' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link 
rel='alternate' type='text/html' href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpnMSGJQdY19SfLkvVP-2m5XAul93YPUQQ'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpnMSGJQdY19SfLkvVP-2m5XAul93YPUQQ'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 gd:etag='W/&quot;DkICRX47eCp7I2A9WhFR
 
F0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOr4mc-bbynsjHJlkaDTejLIX5yaDTUT7GU</id><published>2013-07-01T21:36:04.000Z</published><updated>2013-07-01T21:36:04.000Z</updated><app:edited>2013-07-01T21:36:04.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr4mc-bbynsjHJlkaDTejLIX5yaDTUT7GU'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr4mc-bbynsjHJlkaDTejLIX5yaDTUT7GU'/><author><name>GDataTest</n
 
ame><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CUcDR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpq3iEMcwegdtpt_oiVtcOzDVYGRlI4Cjo</id><published>2013-07-01T21:11:16.000Z</published><updated>2013-07-01T21:11:16.000Z</updated><app:edited>2013-07-01T21:11:16.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/a
 pi/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpq3iEMcwegdtpt_oiVtcOzDVYGRlI4Cjo'/><link rel='edit' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpq3iEMcwegdtpt_oiVtcOzDVYGRlI4Cjo'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CUcDRH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqMcEWo0tui9xlb_POViGPyc3dhc4uIjwA</id><published>2013-07-01T21:11:15.000Z</published><updated>2013-07-01T21:11:15.000Z</updated><app:edited>2013-07-01T21:11:15.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' ty
 pe='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link 
rel='alternate' type='text/html' href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqMcEWo0tui9xlb_POViGPyc3dhc4uIjwA'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqMcEWo0tui9xlb_POViGPyc3dhc4uIjwA'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CUcDQH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOq7RH0gy5cPEWTZhvvPhMR0zZ7sbtp5CZ4</id><published>2013-07-01T21:11:11.000Z</published><updated>2013-07-01T21:11:11.000Z</updated
<app:edited>2013-07-01T21:11:11.000Z</app:edited><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOq7RH0gy5cPEWTZhvvPhMR0zZ7sbtp5CZ4'/><link
rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOq7RH0gy5cPEWTZhvvPhMR0zZ7sbtp5CZ4'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY<
 /yt:videoid></entry><entry 
gd:etag='W/&quot;CEUDSH47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqjbIKuMpXAjKBykIpLn85VglKYAJ3whis</id><published>2013-07-01T20:57:59.000Z</published><updated>2013-07-01T20:57:59.000Z</updated><app:edited>2013-07-01T20:57:59.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqjbIKuMpXAjKBykIpLn85VglKYAJ3whis'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUq
 
snFsOqjbIKuMpXAjKBykIpLn85VglKYAJ3whis'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CEUDSX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpOpbMSi1ERoNBUl7zhd9XrYdVeYC6Xo_s</id><published>2013-07-01T20:57:58.000Z</published><updated>2013-07-01T20:57:58.000Z</updated><app:edited>2013-07-01T20:57:58.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' 
 type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpOpbMSi1ERoNBUl7zhd9XrYdVeYC6Xo_s'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpOpbMSi1ERoNBUl7zhd9XrYdVeYC6Xo_s'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;CEUDRX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOozyzqYTyTg7TLcIuyUzUwFEy0I746AYuc</id><published>2013-07-01T20:57:54.000Z</published><updated>2013-07-01T20:57:54.000Z</updated><app:edited>2013-07-01T20:57:54.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title>
 <content>This is a test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOozyzqYTyTg7TLcIuyUzUwFEy0I746AYuc'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOozyzqYTyTg7TLcIuyUzUwFEy0I746AYuc'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DUAERn47eCp7I2A9WhNVEEo.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOpUyZ0xrU7rgl6a3__57nWEmwjXsAwkI8c</id><published>2012-12-21T
 
08:15:07.000Z</published><updated>2012-12-21T08:15:07.000Z</updated><app:edited>2012-12-21T08:15:07.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpUyZ0xrU7rgl6a3__57nWEmwjXsAwkI8c'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOpUyZ0xrU7rgl6a3__57nWEmwjXsAwkI8c'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channe
 lId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry 
gd:etag='W/&quot;DUAER347eCp7I2A9WhNVEEo.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOoKqojfAmMKBuR8fshrmUc_h11WIE0PPyQ</id><published>2012-12-21T08:15:06.000Z</published><updated>2012-12-21T08:15:06.000Z</updated><app:edited>2012-12-21T08:15:06.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoKqojfAmMKBuR8fshrmUc_h11WIE0PPyQ'/><link
 rel='edit' type='application/atom+xml' href='ht
 
tps://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoKqojfAmMKBuR8fshrmUc_h11WIE0PPyQ'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DUAERH47eCp7I2A9WhNVEEo.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOr6u6HuImmuCa6wcU1XhL9FRb9vZM0pfRA</id><published>2012-12-21T08:15:05.000Z</published><updated>2012-12-21T08:15:05.000Z</updated><app:edited>2012-12-21T08:15:05.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' hr
 ef='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr6u6HuImmuCa6wcU1XhL9FRb9vZM0pfRA'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr6u6HuImmuCa6wcU1XhL9FRb9vZM0pfRA'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;AkUBQn47eCp7I2A9WhNWGU0.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOoBPGVeZ6JMp_qJqkyKNQHuyS0Dg0qAc0o</id><published>2012-12-19T09:10:53.000Z</published><updated>2012-12-19T09:10:53.000Z</updated><app:edited>2012-12-19T09:10:53.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.yout
 ube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a test 
comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoBPGVeZ6JMp_qJqkyKNQHuyS0Dg0qAc0o'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoBPGVeZ6JMp_qJqkyKNQHuyS0Dg0qAc0o'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 gd:etag='W/&quot;AkUBQ347eCp7I2A9WhNWGU0.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlX
 
UqsnFsOr39DxDpyoePGzuKjXpEMsCx5eEO9HSQgM</id><published>2012-12-19T09:10:52.000Z</published><updated>2012-12-19T09:10:52.000Z</updated><app:edited>2012-12-19T09:10:52.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr39DxDpyoePGzuKjXpEMsCx5eEO9HSQgM'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr39DxDpyoePGzuKjXpEMsCx5eEO9HSQgM'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</u
 
ri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;AkUBQH47eCp7I2A9WhNWGU0.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOr1oqVwHSpj9AYhLvM5gxLHvIv-E58GacI</id><published>2012-12-19T09:10:51.000Z</published><updated>2012-12-19T09:10:51.000Z</updated><app:edited>2012-12-19T09:10:51.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr1oqVwHSpj9AYhLvM5gxLH
 vIv-E58GacI'/><link rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOr1oqVwHSpj9AYhLvM5gxLHvIv-E58GacI'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;AkUBQX47eCp7I2A9WhNWGU0.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqjFFJ60p5aoKjAkJxzRzEctsCqBWXr21k</id><published>2012-12-19T09:10:50.000Z</published><updated>2012-12-19T09:10:50.000Z</updated><app:edited>2012-12-19T09:10:50.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' href='https://gdata.youtube.com/feeds
 /api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqjFFJ60p5aoKjAkJxzRzEctsCqBWXr21k'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqjFFJ60p5aoKjAkJxzRzEctsCqBWXr21k'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkECQ347eCp7I2A9WhNWGEg.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOoUCK_J3WN8wjVxal-uMCAW7DwsRacYaTM</id><published>2012-12-18T18:17:42.000Z</published><updated>2012-12-18T18:17:42.000Z</updated><app:edited>2012-12-18T18:17:42.000Z</app:edited><category
 sch
 eme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoUCK_J3WN8wjVxal-uMCAW7DwsRacYaTM'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOoUCK_J3WN8wjVxal-uMCAW7DwsRacYaTM'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 gd:etag='W/&quot;DkECQH47eCp7I2A9WhN
 
WGEg.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOqkeS7vSt7hQWHDVyNghKtR0S82CR3PdSM</id><published>2012-12-18T18:17:41.000Z</published><updated>2012-12-18T18:17:41.000Z</updated><app:edited>2012-12-18T18:17:41.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqkeS7vSt7hQWHDVyNghKtR0S82CR3PdSM'/><link
 rel='edit' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOqkeS7vSt7hQWHDVyNghKtR0S82CR3PdSM'/><author><name>GDataTes
 
t</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry><entry
 
gd:etag='W/&quot;DkECQX47eCp7I2A9WhNWGEg.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY:comment:TlXUqsnFsOrFKH86vHiITHel9aCkM6oJ-tOlCUwV-KM</id><published>2012-12-18T18:17:40.000Z</published><updated>2012-12-18T18:17:40.000Z</updated><app:edited>2012-12-18T18:17:40.000Z</app:edited><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#comment'/><title>This is a test ...</title><content>This is a 
test comment.</content><link rel='related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/fee
 ds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrFKH86vHiITHel9aCkM6oJ-tOlCUwV-KM'/><link rel='edit' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments/TlXUqsnFsOrFKH86vHiITHel9aCkM6oJ-tOlCUwV-KM'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:channelId>UCHdu7S-LbC8V98jsR_tu6GA</yt:channelId><yt:videoid>RzR2k8yo4NY</yt:videoid></entry></feed>
+  
diff --git a/gdata/tests/traces/youtube/global-authentication 
b/gdata/tests/traces/youtube/global-authentication
new file mode 100644
index 0000000..1715836
--- /dev/null
+++ b/gdata/tests/traces/youtube/global-authentication
@@ -0,0 +1,26 @@
+> POST /accounts/ClientLogin HTTP/1.1
+> Soup-Debug-Timestamp: 1372714736
+> Soup-Debug: SoupSessionSync 1 (0x646120), SoupMessage 1 (0x8c28d0), SoupSocket 1 (0x84d0a0)
+> Host: www.google.com
+> Content-Type: application/x-www-form-urlencoded
+> Connection: Keep-Alive
+> 
+> 
accountType=HOSTED%5FOR%5FGOOGLE&Email=libgdata%2Etest%40gmail%2Ecom&Passwd=gdata%2Dgdata&service=youtube&source=ytapi%2DGNOME%2Dlibgdata%2D444fubtt%2D0
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714736
+< Soup-Debug: SoupMessage 1 (0x8c28d0)
+< Content-Type: text/plain
+< Cache-control: no-cache, no-store
+< Pragma: no-cache
+< Expires: Mon, 01-Jan-1990 00:00:00 GMT
+< Date: Mon, 01 Jul 2013 21:38:56 GMT
+< X-Content-Type-Options: nosniff
+< X-XSS-Protection: 1; mode=block
+< Content-Length: 881
+< Server: GSE
+< 
+< 
SID=DQAAAMwAAADZJwPyMg9XRgmVz9_DyI1CLaSBcP5Ld208FQdvB43Uw_TgbOAa5IAL41EZpfKSoNWxVY9uoreV0ThFtG-g47UINQfAkdfzQSvZgVQlc0p8leXPUSWR9tFWVi_iszr8zn5Jfl92IUyY_RwOOUBKRl_V7MkLDQXYMDvznSQ_dZcrm9m2CPLleamLT_IIR1X3Ms1-JsZj02cTzPlU4RcehZOrN4unjDOjYvhgtkHdkqxtd4Rk6YTaLDFo6E8zPodhG5aOIvl7URiCw8kWzDjz4RTf
+< 
LSID=DQAAAM4AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyGv_68zPlL7vjaI5YcIOoG9lvkG2AGElastRt8FQdN4zqeTBhTisRMjiqafSV4I8_1BNsYFKtH8dO3DiUzDxqMtRcwZ162aIp_20Sskvsq_CrBZ5MjMbLOJygM4tBXwL1F7MEezeya-K94o65u7F_8pErVp3GQu2wNdUSecKQaLApEMHCOZ9AnNAGZg7tKkFj_F6ad_6SqoJTvmaxkcClK1
+< 
Auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+  
diff --git a/gdata/tests/traces/youtube/query-related b/gdata/tests/traces/youtube/query-related
new file mode 100644
index 0000000..ba264e3
--- /dev/null
+++ b/gdata/tests/traces/youtube/query-related
@@ -0,0 +1,29 @@
+> GET /feeds/api/videos/q1UPMEmCqZo/related HTTP/1.1
+> Soup-Debug-Timestamp: 1372714749
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 21 (0x7fffe4018650), SoupSocket 9 (0x7fffe0008ee0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714749
+< Soup-Debug: SoupMessage 21 (0x7fffe4018650)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Mon, 01 Jul 2013 21:39:09 GMT
+< Date: Mon, 01 Jul 2013 21:39:09 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.1
+< ETag: W/"DkAASH05fyp7I2A9WhFRF0w."
+< Last-Modified: Mon, 01 Jul 2013 21:39:09 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?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;DkAASH05fyp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:q1UPMEmCqZo:related</id><updated>2013-07-01T21:39:09.327Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#video'/><title>Videos related to 'Escape From City 17 - Part 
One'</title><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link rel='alternate' 
type='text/html' 
href='https://www.youtube.com/results?search=related&amp;search_query=&amp;v=q1UPMEmCqZo'/><link 
rel='related' type='application/atom+xml' href='https://gdata.youtube
 .com/feeds/api/videos/q1UPMEmCqZo'/><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related'/><link 
rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related?start-index=1&amp;max-results=25'/><link 
rel='service' type='application/atomsvc+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related?alt=atom-service'/><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>12</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 gd:etag='W/&quot;CEIMRX47eCp7I2A9WhBQFEw.&qu
 
ot;'><id>tag:youtube.com,2008:video:olgO_tevdBQ</id><published>2013-03-16T04:32:07.000Z</published><updated>2013-03-16T05:43:04.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'/><title>Half -Life 2. Escape City 17.</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/olgO_tevdBQ?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=olgO_tevdBQ&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/olgO_tevdBQ/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='https://gd
 ata.youtube.com/feeds/api/videos/olgO_tevdBQ/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/olgO_tevdBQ/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/olgO_tevdBQ/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=olgO_tevdBQ'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/M838w_pwlnYl2fCKXUZwHg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/olgO_tevdBQ'/><author><name>shakenbake8891</name><uri>https://gdata.youtube.com/feeds/api/users/shakenbake8891</uri><yt:userId>M838w_pwlnYl2fCKXUZwHg</yt:userId></author><yt:accessControl
 action='commen
 t' 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='https://gdata.youtube.com/feeds/api/videos/olgO_tevdBQ/comments' 
countHint='0'/></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='https://www.youtube.com/v/olgO_tevdBQ?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expres
 sion='full' duration='801' yt:format='5'/><media:content 
url='rtsp://v4.cache8.c.youtube.com/CkYLENy73wIaPQkUdK_X_g5YohMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='801' yt:format='1'/><media:content 
url='rtsp://v4.cache8.c.youtube.com/CkYLENy73wIaPQkUdK_X_g5YohMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='801' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' 
yt:display='shakenbake8891'>shakenbake8891</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=olgO_tevdBQ&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/olgO_tevdBQ/default.jpg' height='90' width='120' time='00:06:
 40.500' yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/olgO_tevdBQ/mqdefault.jpg' 
height='180' width='320' yt:name='mqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/olgO_tevdBQ/hqdefault.jpg' height='360' width='480' 
yt:name='hqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/olgO_tevdBQ/sddefault.jpg' height='480' 
width='640' yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/olgO_tevdBQ/1.jpg' height='90' 
width='120' time='00:03:20.250' yt:name='start'/><media:thumbnail 
url='https://i.ytimg.com/vi/olgO_tevdBQ/2.jpg' height='90' width='120' time='00:06:40.500' 
yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/olgO_tevdBQ/3.jpg' height='90' width='120' 
time='00:10:00.750' yt:name='end'/><media:title type='plain'>Half -Life 2. Escape City 
17.</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='801'/><yt:uploaded>2013-03-16T04:32:07.000Z</yt:uploaded><yt:uploaderId>UCM838w_pwlnYl2fCKXUZwHg</yt
 :uploaderId><yt:videoid>olgO_tevdBQ</yt:videoid></media:group><yt:statistics favoriteCount='0' 
viewCount='40'/></entry><entry 
gd:etag='W/&quot;CE8BRX47eCp7I2A9WhBUFUo.&quot;'><id>tag:youtube.com,2008:video:IIk2MVKwDVg</id><published>2012-04-16T12:10:48.000Z</published><updated>2013-05-03T09:20: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='People' label='People &amp; 
Blogs'/><title>Half-Life 2 Escape From City 17 (Part 2)</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/IIk2MVKwDVg?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=IIk2MVKwDVg&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
 href='https://gdata.youtube.com/feeds/api/videos/IIk2MVKwDVg/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/IIk2MVKwDVg/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/IIk2MVKwDVg/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/IIk2MVKwDVg/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=IIk2MVKwDVg'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/RjsR6uolPoZLhOqN6lZCUA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/IIk2MVKwDVg'/><author
<name>Crisstyan 
Padureanu</name><uri>https://gdata.youtube.com/feeds/api/users/RjsR6uolPoZLhOqN6lZCUA</uri><yt:userId>RjsR6uolPoZLhOqN6lZCUA</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/IIk2MVKwDVg/comments' 
countHint='4'/></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='https://www.youtu
 
be.com/v/IIk2MVKwDVg?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='553' 
yt:format='5'/><media:content 
url='rtsp://v8.cache4.c.youtube.com/CkYLENy73wIaPQlYDbBSMTaJIBMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='553' yt:format='1'/><media:content 
url='rtsp://v8.cache4.c.youtube.com/CkYLENy73wIaPQlYDbBSMTaJIBMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='553' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='Crisstyan 
Padureanu'>RjsR6uolPoZLhOqN6lZCUA</media:credit><media:description type='plain'>Half-Life 2 Escape From City 
17 (Part 1,2,3).Have a nice day and thanks for watching!</media:description><me
 dia:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=IIk2MVKwDVg&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/IIk2MVKwDVg/default.jpg' height='90' width='120' time='00:04:36.500' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/IIk2MVKwDVg/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/IIk2MVKwDVg/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/IIk2MVKwDVg/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/IIk2MVKwDVg/1.jpg' height='90' width='120' 
time='00:02:18.250' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/IIk2MVKwDVg/2.jpg' 
height='90' width='120' time='00:04:36.500' yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/I
 Ik2MVKwDVg/3.jpg' height='90' width='120' time='00:06:54.750' yt:name='end'/><media:title 
type='plain'>Half-Life 2 Escape From City 17 (Part 
2)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='553'/><yt:uploaded>2012-04-16T12:10:48.000Z</yt:uploaded><yt:uploaderId>UCRjsR6uolPoZLhOqN6lZCUA</yt:uploaderId><yt:videoid>IIk2MVKwDVg</yt:videoid></media:group><gd:rating
 average='4.6923075' max='5' min='1' numRaters='13' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' viewCount='385'/><yt:rating 
numDislikes='1' numLikes='12'/></entry><entry 
gd:etag='W/&quot;CkQCR347eCp7I2A9WhBWGUk.&quot;'><id>tag:youtube.com,2008:video:D_0GboHrRME</id><published>2012-09-15T07:27:26.000Z</published><updated>2013-04-14T11:52: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='Games' label='G
 aming'/><title>Half-Life Escape From City 17: Part One (HD 720p RUS)</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/D_0GboHrRME?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=D_0GboHrRME&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/D_0GboHrRME/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/D_0GboHrRME/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/D_0GboHrRME/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='https://gda
 ta.youtube.com/feeds/api/videos/D_0GboHrRME/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=D_0GboHrRME'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/NjIZi6fudFXdRwbDKg4vqw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/D_0GboHrRME'/><author><name>PalladinGOLD</name><uri>https://gdata.youtube.com/feeds/api/users/PalladinGOLD</uri><yt:userId>NjIZi6fudFXdRwbDKg4vqw</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/D_0GboHrRME/comments' 
countHint='0'/></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='https://www.youtube.com/v/D_0GboHrRME?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='329' 
yt:format='5'/><media:content 
url='rtsp://v8.cache4.c.youtube.com/CkYLENy73wIaPQnBROuBbgb9DxMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='329' yt:format='1'/><media:content 
url='rtsp://v8.cache4.c.youtube.com/CkYLENy73wI
 aPQnBROuBbgb9DxMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp' 
type='video/3gpp' medium='video' expression='full' duration='329' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='PalladinGOLD'>palladingold</media:credit><media:description 
type='plain'>Escape from City 17: Part One — это короткометражный фильм, созданный небольшой командой The 
Purchase Brothers из Торонто, Канада, и рассказывающий историю 
п...</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=D_0GboHrRME&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/D_0GboHrRME/default.jpg' height='90' width='120' time='00:02:44.500' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/D_0GboHrRME/m
 qdefault.jpg' height='180' width='320' yt:name='mqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/D_0GboHrRME/hqdefault.jpg' height='360' width='480' 
yt:name='hqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/D_0GboHrRME/sddefault.jpg' height='480' 
width='640' yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/D_0GboHrRME/1.jpg' height='90' 
width='120' time='00:01:22.250' yt:name='start'/><media:thumbnail 
url='https://i.ytimg.com/vi/D_0GboHrRME/2.jpg' height='90' width='120' time='00:02:44.500' 
yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/D_0GboHrRME/3.jpg' height='90' width='120' 
time='00:04:06.750' yt:name='end'/><media:title type='plain'>Half-Life Escape From City 17: Part One (HD 720p 
RUS)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='329'/><yt:uploaded>2012-09-15T07:27:26.000Z</yt:uploaded><yt:uploaderId>UCNjIZi6fudFXdRwbDKg4vqw</yt:uploaderId><yt:videoid>D_0GboHrRME</yt:videoid></media:group
<gd:rating average='5.0' max='5' min='1' numRaters='6' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='281'/><yt:rating numDislikes='0' numLikes='6'/></entry><entry 
gd:etag='W/&quot;DkIDSX47eCp7I2A9WhFSEk8.&quot;'><id>tag:youtube.com,2008:video:5D3_so4P-Go</id><published>2013-04-06T21:17:56.000Z</published><updated>2013-06-14T15:42:58.000Z</updated><app:control><yt:state
name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Film' label='Film &amp; 
Animation'/><title>Half Life 2: "Escape From City 17" Music Video HD</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/5D3_so4P-Go?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp
 ;app=youtube_gdata'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=5D3_so4P-Go&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/5D3_so4P-Go/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/5D3_so4P-Go/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/5D3_so4P-Go/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/5D3_so4P-Go/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/yeJCDQB9k2yKQyb0gF9p6A'/><link rel='self' type='applic
 ation/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/5D3_so4P-Go'/><author><name>WheresQualdo</name><uri>https://gdata.youtube.com/feeds/api/users/WheresQualdo</uri><yt:userId>yeJCDQB9k2yKQyb0gF9p6A</yt:userId></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='denied'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/5D3_so4P-Go/comments' 
countHint='0'/></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='https://www.youtube.com/v/5D3_so4P-Go?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='318' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' 
yt:display='WheresQualdo'>wheresqualdo</media:credit><media:description type='plain'>No Copyright 
Infringement intended. All credit goes to the Purchase Brothers. This is a simple music video that I cut 
together for it. For best picture/audio...</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=5D3_so4P-Go&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i.ytimg.com/vi/5D3_so4P-Go/default.
 jpg' height='90' width='120' time='00:02:39' yt:name='default'/><media:thumbnail 
url='https://i.ytimg.com/vi/5D3_so4P-Go/mqdefault.jpg' height='180' width='320' 
yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/5D3_so4P-Go/hqdefault.jpg' height='360' 
width='480' yt:name='hqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/5D3_so4P-Go/sddefault.jpg' 
height='480' width='640' yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/5D3_so4P-Go/1.jpg' 
height='90' width='120' time='00:01:19.500' yt:name='start'/><media:thumbnail 
url='https://i.ytimg.com/vi/5D3_so4P-Go/2.jpg' height='90' width='120' time='00:02:39' 
yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/5D3_so4P-Go/3.jpg' height='90' width='120' 
time='00:03:58.500' yt:name='end'/><media:title type='plain'>Half Life 2: "Escape From City 17" Music Video 
HD</media:title><yt:duration 
seconds='318'/><yt:uploaded>2013-04-06T21:17:56.000Z</yt:uploaded><yt:uploaderId>UCyeJCDQB9k2yKQyb0
 gF9p6A</yt:uploaderId><yt:videoid>5D3_so4P-Go</yt:videoid></media:group><yt:statistics favoriteCount='0' 
viewCount='22'/></entry><entry 
gd:etag='W/&quot;C0EFSX47eCp7I2A9WhBSGU8.&quot;'><id>tag:youtube.com,2008:video:Pbxod42kqG8</id><published>2012-12-30T05:35:45.000Z</published><updated>2013-02-26T23:33:38.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'/><title>ESCAPE FROM 
CITY 17! Half-Life 2 Part 1</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/Pbxod42kqG8?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=Pbxod42kqG8&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href
 ='https://gdata.youtube.com/feeds/api/videos/Pbxod42kqG8/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Pbxod42kqG8/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Pbxod42kqG8/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Pbxod42kqG8/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=Pbxod42kqG8'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/fijr_LD_migV5x7g0Wm0fA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/Pbxod42kqG8'/><author><na
 me>Jacob 
Haddad</name><uri>https://gdata.youtube.com/feeds/api/users/EPICCOOLJAKE111</uri><yt:userId>fijr_LD_migV5x7g0Wm0fA</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/Pbxod42kqG8/comments' 
countHint='1'/></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='https://www.youtube.com/v/Pbxod42kqG8?version=
 3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata' 
type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='873' 
yt:format='5'/><media:content 
url='rtsp://v3.cache7.c.youtube.com/CkYLENy73wIaPQlvqKSNd2i8PRMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='873' yt:format='1'/><media:content 
url='rtsp://v3.cache7.c.youtube.com/CkYLENy73wIaPQlvqKSNd2i8PRMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='873' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='Jacob Haddad' 
yt:type='partner'>epiccooljake111</media:credit><media:description type='plain'>A New Lets play For You 
Trolls!</media:description><media:keywords/><media:license type='text/html' href='http://www.youtube.com/t/te
 rms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=Pbxod42kqG8&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/Pbxod42kqG8/default.jpg' height='90' width='120' time='00:07:16.500' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/Pbxod42kqG8/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/Pbxod42kqG8/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/Pbxod42kqG8/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/Pbxod42kqG8/1.jpg' height='90' width='120' 
time='00:03:38.250' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/Pbxod42kqG8/2.jpg' 
height='90' width='120' time='00:07:16.500' yt:name='middle'/><media:thumbnail 
url='https://i.ytimg.com/vi/Pbxod42kqG8/3.jpg' height='90' width='120' time='00:10:54.750' yt:name='end'/><m
 edia:title type='plain'>ESCAPE FROM CITY 17! Half-Life 2 Part 
1</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='873'/><yt:uploaded>2012-12-30T05:35:45.000Z</yt:uploaded><yt:uploaderId>UCfijr_LD_migV5x7g0Wm0fA</yt:uploaderId><yt:videoid>Pbxod42kqG8</yt:videoid></media:group><gd:rating
 average='5.0' max='5' min='1' numRaters='2' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics 
favoriteCount='0' viewCount='66'/><yt:rating numDislikes='0' numLikes='2'/></entry><entry 
gd:etag='W/&quot;A0cDQ347eCp7I2A9WhJVFE8.&quot;'><id>tag:youtube.com,2008:video:13pr8R7xHPU</id><published>2012-08-31T16:04:32.000Z</published><updated>2012-08-31T16:04: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='Games' label='Gaming'/><title>Escape From 
The City 17: Half-Life 2 Episode 1 - 09 - Exit 17 (1 of 2)</ti
 tle><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/13pr8R7xHPU?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=13pr8R7xHPU&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/13pr8R7xHPU/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/13pr8R7xHPU/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/13pr8R7xHPU/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/13pr8R7xHPU/related'/><link rel='http://
 gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=13pr8R7xHPU'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/92FkukPVKeQ8clNuwdLD1Q'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/13pr8R7xHPU'/><author><name>ohuckabee</name><uri>https://gdata.youtube.com/feeds/api/users/ohuckabee</uri><yt:userId>92FkukPVKeQ8clNuwdLD1Q</yt:userId></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' permiss
 ion='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/13pr8R7xHPU/comments' 
countHint='0'/></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='https://www.youtube.com/v/13pr8R7xHPU?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='1000' 
yt:format='5'/><media:content 
url='rtsp://v7.cache1.c.youtube.com/CkYLENy73wIaPQn1HPEe8Wt61xMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='1000' yt:format='1'/><media:content 
url='rtsp://v7.cache1.c.youtube.com/CkYLENy73wIaPQn1HPEe8Wt61xMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3
 UbFCcYOYM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='1000' 
yt:format='6'/><media:credit role='uploader' scheme='urn:youtube' 
yt:display='ohuckabee'>ohuckabee</media:credit><media:description type='plain'>This is one of those escort 
missions where you're guaranteed to save at least one batch of people, assuming that you don't go *really* 
out of your way to get...</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=13pr8R7xHPU&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/13pr8R7xHPU/default.jpg' height='90' width='120' time='00:08:20' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/13pr8R7xHPU/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/13pr8R7xHPU/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault
 '/><media:thumbnail url='https://i.ytimg.com/vi/13pr8R7xHPU/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/13pr8R7xHPU/1.jpg' height='90' width='120' 
time='00:04:10' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/13pr8R7xHPU/2.jpg' height='90' 
width='120' time='00:08:20' yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/13pr8R7xHPU/3.jpg' 
height='90' width='120' time='00:12:30' yt:name='end'/><media:title type='plain'>Escape From The City 17: 
Half-Life 2 Episode 1 - 09 - Exit 17 (1 of 
2)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='1000'/><yt:uploaded>2012-08-31T16:04:32.000Z</yt:uploaded><yt:uploaderId>UC92FkukPVKeQ8clNuwdLD1Q</yt:uploaderId><yt:videoid>13pr8R7xHPU</yt:videoid></media:group><yt:statistics
 favoriteCount='0' viewCount='51'/></entry><entry 
gd:etag='W/&quot;CUIHQH47eCp7I2A9WhFSGEQ.&quot;'><id>tag:youtube.com,2008:video:R-MGaLu4SPk</id><publish
 ed>2012-09-07T18:48:11.000Z</published><updated>2013-06-22T09:32:11.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'/><title>Escape from 
city 17 (part one) - Half Life Live action film</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/R-MGaLu4SPk?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=R-MGaLu4SPk&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/R-MGaLu4SPk/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/R-MGaLu4SP
 k/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/R-MGaLu4SPk/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/R-MGaLu4SPk/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=R-MGaLu4SPk'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/67CvRZFyaWobQx6fEuD_xA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/R-MGaLu4SPk'/><author><name>Vickmann 
Dark</name><uri>https://gdata.youtube.com/feeds/api/users/DarkVickmann</uri><yt:userId>67CvRZFyaWobQx6fEuD_xA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl act
 ion='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='https://gdata.youtube.com/feeds/api/videos/R-MGaLu4SPk/comments' 
countHint='0'/></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='https://www.youtube.com/v/R-MGaLu4SPk?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='282' 
yt:format='5'/><media:content ur
 
l='rtsp://v6.cache7.c.youtube.com/CkYLENy73wIaPQn5SLi7aAbjRxMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='282' yt:format='1'/><media:content 
url='rtsp://v6.cache7.c.youtube.com/CkYLENy73wIaPQn5SLi7aAbjRxMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='282' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='Vickmann Dark'>darkvickmann</media:credit><media:description 
type='plain'>Escape from city 17 (part one) - Half Life Live action 
film.</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=R-MGaLu4SPk&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/R-MGaLu4SPk/default.jpg' height='90' width='
 120' time='00:02:21' yt:name='default'/><media:thumbnail 
url='https://i.ytimg.com/vi/R-MGaLu4SPk/mqdefault.jpg' height='180' width='320' 
yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/R-MGaLu4SPk/hqdefault.jpg' height='360' 
width='480' yt:name='hqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/R-MGaLu4SPk/sddefault.jpg' 
height='480' width='640' yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/R-MGaLu4SPk/1.jpg' 
height='90' width='120' time='00:01:10.500' yt:name='start'/><media:thumbnail 
url='https://i.ytimg.com/vi/R-MGaLu4SPk/2.jpg' height='90' width='120' time='00:02:21' 
yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/R-MGaLu4SPk/3.jpg' height='90' width='120' 
time='00:03:31.500' yt:name='end'/><media:title type='plain'>Escape from city 17 (part one) - Half Life Live 
action film</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='282'/><yt:uploaded>2012-09-07T18:48:11.000Z</yt:uploaded><yt:
 
uploaderId>UC67CvRZFyaWobQx6fEuD_xA</yt:uploaderId><yt:videoid>R-MGaLu4SPk</yt:videoid></media:group><gd:rating
 average='5.0' max='5' min='1' numRaters='7' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics 
favoriteCount='0' viewCount='220'/><yt:rating numDislikes='0' numLikes='7'/></entry><entry 
gd:etag='W/&quot;C04MRX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:CQOMRgH9GmM</id><published>2013-07-01T06:25:14.000Z</published><updated>2013-07-01T20:53:04.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'/><title>CrySpy - "Tease"</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/CQOMRgH9GmM?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' href='https:
 //www.youtube.com/watch?v=CQOMRgH9GmM&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CQOMRgH9GmM/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CQOMRgH9GmM/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CQOMRgH9GmM/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CQOMRgH9GmM/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=CQOMRgH9GmM'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/
 Tmd_8nUYZpd2CUEGx47RAQ'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/CQOMRgH9GmM'/><author><name>Coyotemation</name><uri>https://gdata.youtube.com/feeds/api/users/Coyotemation</uri><yt:userId>Tmd_8nUYZpd2CUEGx47RAQ</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/CQOMRgH9GmM/comments' 
countHint='201'/></gd:comments><yt:hd/><media:group><media:category labe
 l='Film &amp; Animation' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Film</media:category><media:content 
url='https://www.youtube.com/v/CQOMRgH9GmM?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='24' 
yt:format='5'/><media:content 
url='rtsp://v8.cache8.c.youtube.com/CkYLENy73wIaPQljGv0BRowDCRMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='24' yt:format='1'/><media:content 
url='rtsp://v8.cache8.c.youtube.com/CkYLENy73wIaPQljGv0BRowDCRMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='24' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='Coyotemation' yt:type='partner'>coyotemation</media:cred
 it><media:description type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=CQOMRgH9GmM&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/CQOMRgH9GmM/default.jpg' height='90' width='120' time='00:00:12' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/CQOMRgH9GmM/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/CQOMRgH9GmM/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/CQOMRgH9GmM/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/CQOMRgH9GmM/1.jpg' height='90' width='120' 
time='00:00:06' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/CQOMRgH9GmM/2.jpg' height='90' 
width='120' time='00:00:12' yt:name='middle'/><media:thumbnail ur
 l='https://i.ytimg.com/vi/CQOMRgH9GmM/3.jpg' height='90' width='120' time='00:00:18' 
yt:name='end'/><media:title type='plain'>CrySpy - 
"Tease"</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='24'/><yt:uploaded>2013-07-01T06:25:14.000Z</yt:uploaded><yt:uploaderId>UCTmd_8nUYZpd2CUEGx47RAQ</yt:uploaderId><yt:videoid>CQOMRgH9GmM</yt:videoid></media:group><gd:rating
 average='4.990521' max='5' min='1' numRaters='1266' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' viewCount='3689'/><yt:rating 
numDislikes='3' numLikes='1263'/></entry><entry 
gd:etag='W/&quot;C0YFR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:CcIEikou_-s</id><published>2013-06-30T13:47:55.000Z</published><updated>2013-07-01T20:38:36.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'/><title>Gowdy: House Won't Take Schumer's Advice</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/CcIEikou_-s?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=CcIEikou_-s&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CcIEikou_-s/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CcIEikou_-s/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CcIEikou_-s/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='https://g
 data.youtube.com/feeds/api/videos/CcIEikou_-s/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=CcIEikou_-s'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/7aGP2jPnwbzp3jSjkG_BpQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/CcIEikou_-s'/><author><name>unicornwizurd</name><uri>https://gdata.youtube.com/feeds/api/users/unicornwizurd</uri><yt:userId>7aGP2jPnwbzp3jSjkG_BpQ</yt:userId></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 ac
 tion='autoPlay' permission='allowed'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/CcIEikou_-s/comments' 
countHint='11'/></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='https://www.youtube.com/v/CcIEikou_-s?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='73' 
yt:format='5'/><media:content 
url='rtsp://v4.cache5.c.youtube.com/CkYLENy73wIaPQnr_y5KigTCCRMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='73' yt:format='1'/><media:content 
url='rtsp://v4.cache5.c.youtube
 
.com/CkYLENy73wIaPQnr_y5KigTCCRMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='73' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' 
yt:display='unicornwizurd'>unicornwizurd</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=CcIEikou_-s&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/CcIEikou_-s/default.jpg' height='90' width='120' time='00:00:36.500' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/CcIEikou_-s/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/CcIEikou_-s/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/CcIEikou_-s/sddefault.jpg' he
 ight='480' width='640' yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/CcIEikou_-s/1.jpg' 
height='90' width='120' time='00:00:18.250' yt:name='start'/><media:thumbnail 
url='https://i.ytimg.com/vi/CcIEikou_-s/2.jpg' height='90' width='120' time='00:00:36.500' 
yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/CcIEikou_-s/3.jpg' height='90' width='120' 
time='00:00:54.750' yt:name='end'/><media:title type='plain'>Gowdy: House Won't Take Schumer's 
Advice</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='73'/><yt:uploaded>2013-06-30T13:47:55.000Z</yt:uploaded><yt:uploaderId>UC7aGP2jPnwbzp3jSjkG_BpQ</yt:uploaderId><yt:videoid>CcIEikou_-s</yt:videoid></media:group><gd:rating
 average='3.105263' max='5' min='1' numRaters='19' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' viewCount='6152'/><yt:rating 
numDislikes='9' numLikes='10'/></entry><entry gd:etag='W/&quot;C0QGR347eCp7I2A9WhFRF0w.&quot;'
<id>tag:youtube.com,2008:video:DFkLDSmLouU</id><published>2011-09-30T17:43:27.000Z</published><updated>2013-07-01T20:42:06.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'/><title>Happy Reunion at Garland Animal Services</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/DFkLDSmLouU?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=DFkLDSmLouU&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/DFkLDSmLouU/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='htt
 ps://gdata.youtube.com/feeds/api/videos/DFkLDSmLouU/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/DFkLDSmLouU/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/DFkLDSmLouU/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=DFkLDSmLouU'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/5I-iBY-t50ZduPCmpNyG4w'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/DFkLDSmLouU'/><author><name>garlandtx 
gov</name><uri>https://gdata.youtube.com/feeds/api/users/garlandtxgov</uri><yt:userId>5I-iBY-t50ZduPCmpNyG4w</yt:userId></author><yt:accessControl
 action='co
 mment' 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='https://gdata.youtube.com/feeds/api/videos/DFkLDSmLouU/comments' 
countHint='46'/></gd:comments><georss:where><gml:Point><gml:pos>32.90726089477539 
-96.6412353515625</gml:pos></gml:Point></georss:where><media:group><media:category label='Film &amp; 
Animation' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Film</media:category><media:content 
url='https://www.youtube.com/v/DFkLDSmLouU?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQ
 nGDm&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' 
expression='full' duration='109' yt:format='5'/><media:content 
url='rtsp://v2.cache7.c.youtube.com/CkYLENy73wIaPQnloospDQtZDBMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='109' yt:format='1'/><media:content 
url='rtsp://v2.cache7.c.youtube.com/CkYLENy73wIaPQnloospDQtZDBMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='109' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='garlandtx gov'>garlandtxgov</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=DFkLDSmLouU&amp;feature=youtube_gdata_player'/><media
 :thumbnail url='https://i.ytimg.com/vi/DFkLDSmLouU/default.jpg' height='90' width='120' time='00:00:54.500' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/DFkLDSmLouU/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/DFkLDSmLouU/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/DFkLDSmLouU/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/DFkLDSmLouU/1.jpg' height='90' width='120' 
time='00:00:27.250' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/DFkLDSmLouU/2.jpg' 
height='90' width='120' time='00:00:54.500' yt:name='middle'/><media:thumbnail 
url='https://i.ytimg.com/vi/DFkLDSmLouU/3.jpg' height='90' width='120' time='00:01:21.750' 
yt:name='end'/><media:title type='plain'>Happy Reunion at Garland Animal Services</media:title><yt:duration 
seconds='109'/><yt:uploaded>2011-09-30T17
 
:43:27.000Z</yt:uploaded><yt:uploaderId>UC5I-iBY-t50ZduPCmpNyG4w</yt:uploaderId><yt:videoid>DFkLDSmLouU</yt:videoid></media:group><gd:rating
 average='4.634408' max='5' min='1' numRaters='186' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='27853'/><yt:rating numDislikes='17' numLikes='169'/></entry><entry 
gd:etag='W/&quot;C0YBR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:Fcpe6TdiZ3Q</id><published>2013-05-16T18:05:36.000Z</published><updated>2013-07-01T20:39: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='Film' label='Film &amp; 
Animation'/><title>YOU SNOOZE, YOU LOSE. (Life's a Zoo #2)</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/Fcpe6TdiZ3Q?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=you
 tube_gdata'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=Fcpe6TdiZ3Q&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Fcpe6TdiZ3Q/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Fcpe6TdiZ3Q/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Fcpe6TdiZ3Q/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Fcpe6TdiZ3Q/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=Fcpe6TdiZ3Q'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='applic
 ation/atom+xml' href='https://gdata.youtube.com/feeds/api/users/-T_EdQ6MTufAWnFXa7dnYw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/Fcpe6TdiZ3Q'/><author><name>Shut Up! 
Cartoons</name><uri>https://gdata.youtube.com/feeds/api/users/ShutUpCartoons</uri><yt:userId>-T_EdQ6MTufAWnFXa7dnYw</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/Fcpe6TdiZ3Q/comments' c
 ountHint='525'/></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='https://www.youtube.com/v/Fcpe6TdiZ3Q?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='1337' 
yt:format='5'/><media:content 
url='rtsp://v3.cache6.c.youtube.com/CkYLENy73wIaPQl0Z2I36V7KFRMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='1337' yt:format='1'/><media:content 
url='rtsp://v3.cache6.c.youtube.com/CkYLENy73wIaPQl0Z2I36V7KFRMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='1337' yt:format='6'/><media:credit 
role='uploader' scheme='urn:
 youtube' yt:display='Shut Up! Cartoons' yt:type='partner'>shutupcartoons</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=Fcpe6TdiZ3Q&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/Fcpe6TdiZ3Q/default.jpg' height='90' width='120' time='00:11:08.500' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/Fcpe6TdiZ3Q/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/Fcpe6TdiZ3Q/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/Fcpe6TdiZ3Q/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/Fcpe6TdiZ3Q/1.jpg' height='90' width='120' 
time='00:05:34.250' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/Fcpe
 6TdiZ3Q/2.jpg' height='90' width='120' time='00:11:08.500' yt:name='middle'/><media:thumbnail 
url='https://i.ytimg.com/vi/Fcpe6TdiZ3Q/3.jpg' height='90' width='120' time='00:16:42.750' 
yt:name='end'/><media:title type='plain'>YOU SNOOZE, YOU LOSE. (Life's a Zoo 
#2)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='1337'/><yt:uploaded>2013-05-16T18:05:36.000Z</yt:uploaded><yt:uploaderId>UC-T_EdQ6MTufAWnFXa7dnYw</yt:uploaderId><yt:videoid>Fcpe6TdiZ3Q</yt:videoid></media:group><gd:rating
 average='4.86755' max='5' min='1' numRaters='1812' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='21897'/><yt:rating numDislikes='60' numLikes='1752'/></entry><entry 
gd:etag='W/&quot;C0AHRn47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:HZXP9FMm9w4</id><published>2013-06-30T07:18:00.000Z</published><updated>2013-07-01T20:48:57.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://gdat
 a.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' 
term='Film' label='Film &amp; Animation'/><title>3D Doctor Who 50th Anniversary Trailer - VFX 
Breakdown</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/HZXP9FMm9w4?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=HZXP9FMm9w4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/HZXP9FMm9w4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/HZXP9FMm9w4/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api
 /videos/HZXP9FMm9w4/complaints'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/HZXP9FMm9w4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=HZXP9FMm9w4'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/ggccVQxXZFny58cconVANA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/HZXP9FMm9w4'/><author><name>John 
Smith</name><uri>https://gdata.youtube.com/feeds/api/users/ggccVQxXZFny58cconVANA</uri><yt:userId>ggccVQxXZFny58cconVANA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderated'/><yt:accessControl 
action='rate' permi
 ssion='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='https://gdata.youtube.com/feeds/api/videos/HZXP9FMm9w4/comments' 
countHint='526'/></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='https://www.youtube.com/v/HZXP9FMm9w4?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='300' 
yt:format='5'/><media:content 
url='rtsp://v5.cache4.c.youtube.com/CkYLENy73wIaPQkO9yZT9M-VHRMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCc
 YOYM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='300' 
yt:format='1'/><media:content 
url='rtsp://v5.cache4.c.youtube.com/CkYLENy73wIaPQkO9yZT9M-VHRMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='300' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='John 
Smith'>ggccVQxXZFny58cconVANA</media:credit><media:description type='plain'/><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=HZXP9FMm9w4&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/HZXP9FMm9w4/default.jpg' height='90' width='120' time='00:02:30' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/HZXP9FMm9w4/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.co
 m/vi/HZXP9FMm9w4/hqdefault.jpg' height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/HZXP9FMm9w4/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/HZXP9FMm9w4/1.jpg' height='90' width='120' 
time='00:01:15' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/HZXP9FMm9w4/2.jpg' height='90' 
width='120' time='00:02:30' yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/HZXP9FMm9w4/3.jpg' 
height='90' width='120' time='00:03:45' yt:name='end'/><media:title type='plain'>3D Doctor Who 50th 
Anniversary Trailer - VFX Breakdown</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='300'/><yt:uploaded>2013-06-30T07:18:00.000Z</yt:uploaded><yt:uploaderId>UCggccVQxXZFny58cconVANA</yt:uploaderId><yt:videoid>HZXP9FMm9w4</yt:videoid></media:group><gd:rating
 average='4.980413' max='5' min='1' numRaters='1838' rel='http://schemas.google.com/g/2005#overall'/
<yt:statistics favoriteCount='0' viewCount='34014'/><yt:rating numDislikes='9' 
numLikes='1829'/></entry></feed>
+  
diff --git a/gdata/tests/traces/youtube/query-related-async-progress-closure 
b/gdata/tests/traces/youtube/query-related-async-progress-closure
new file mode 100644
index 0000000..59bc589
--- /dev/null
+++ b/gdata/tests/traces/youtube/query-related-async-progress-closure
@@ -0,0 +1,29 @@
+> GET /feeds/api/videos/q1UPMEmCqZo/related HTTP/1.1
+> Soup-Debug-Timestamp: 1372714746
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 17 (0x7fffe4018650), SoupSocket 6 (0x7fffe0008e20)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714746
+< Soup-Debug: SoupMessage 17 (0x7fffe4018650)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Mon, 01 Jul 2013 21:39:06 GMT
+< Date: Mon, 01 Jul 2013 21:39:06 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.1
+< ETag: W/"DkAAR3syeSp7I2A9WhFRF0w."
+< Last-Modified: Mon, 01 Jul 2013 21:39:06 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?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;DkAAR3syeSp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:q1UPMEmCqZo:related</id><updated>2013-07-01T21:39:06.591Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#video'/><title>Videos related to 'Escape From City 17 - Part 
One'</title><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link rel='alternate' 
type='text/html' 
href='https://www.youtube.com/results?search=related&amp;search_query=&amp;v=q1UPMEmCqZo'/><link 
rel='related' type='application/atom+xml' href='https://gdata.youtube
 .com/feeds/api/videos/q1UPMEmCqZo'/><link rel='http://schemas.google.com/g/2005#feed' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related'/><link 
rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related?start-index=1&amp;max-results=25'/><link 
rel='service' type='application/atomsvc+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related?alt=atom-service'/><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>12</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 gd:etag='W/&quot;CEIMRX47eCp7I2A9WhBQFEw.&qu
 
ot;'><id>tag:youtube.com,2008:video:olgO_tevdBQ</id><published>2013-03-16T04:32:07.000Z</published><updated>2013-03-16T05:43:04.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'/><title>Half -Life 2. Escape City 17.</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/olgO_tevdBQ?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=olgO_tevdBQ&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/olgO_tevdBQ/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='https://gd
 ata.youtube.com/feeds/api/videos/olgO_tevdBQ/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/olgO_tevdBQ/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/olgO_tevdBQ/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=olgO_tevdBQ'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/M838w_pwlnYl2fCKXUZwHg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/olgO_tevdBQ'/><author><name>shakenbake8891</name><uri>https://gdata.youtube.com/feeds/api/users/shakenbake8891</uri><yt:userId>M838w_pwlnYl2fCKXUZwHg</yt:userId></author><yt:accessControl
 action='commen
 t' 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='https://gdata.youtube.com/feeds/api/videos/olgO_tevdBQ/comments' 
countHint='0'/></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='https://www.youtube.com/v/olgO_tevdBQ?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expres
 sion='full' duration='801' yt:format='5'/><media:content 
url='rtsp://v4.cache8.c.youtube.com/CkYLENy73wIaPQkUdK_X_g5YohMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='801' yt:format='1'/><media:content 
url='rtsp://v4.cache8.c.youtube.com/CkYLENy73wIaPQkUdK_X_g5YohMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='801' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' 
yt:display='shakenbake8891'>shakenbake8891</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=olgO_tevdBQ&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/olgO_tevdBQ/default.jpg' height='90' width='120' time='00:06:
 40.500' yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/olgO_tevdBQ/mqdefault.jpg' 
height='180' width='320' yt:name='mqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/olgO_tevdBQ/hqdefault.jpg' height='360' width='480' 
yt:name='hqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/olgO_tevdBQ/sddefault.jpg' height='480' 
width='640' yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/olgO_tevdBQ/1.jpg' height='90' 
width='120' time='00:03:20.250' yt:name='start'/><media:thumbnail 
url='https://i.ytimg.com/vi/olgO_tevdBQ/2.jpg' height='90' width='120' time='00:06:40.500' 
yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/olgO_tevdBQ/3.jpg' height='90' width='120' 
time='00:10:00.750' yt:name='end'/><media:title type='plain'>Half -Life 2. Escape City 
17.</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='801'/><yt:uploaded>2013-03-16T04:32:07.000Z</yt:uploaded><yt:uploaderId>UCM838w_pwlnYl2fCKXUZwHg</yt
 :uploaderId><yt:videoid>olgO_tevdBQ</yt:videoid></media:group><yt:statistics favoriteCount='0' 
viewCount='40'/></entry><entry 
gd:etag='W/&quot;CE8BRX47eCp7I2A9WhBUFUo.&quot;'><id>tag:youtube.com,2008:video:IIk2MVKwDVg</id><published>2012-04-16T12:10:48.000Z</published><updated>2013-05-03T09:20: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='People' label='People &amp; 
Blogs'/><title>Half-Life 2 Escape From City 17 (Part 2)</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/IIk2MVKwDVg?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=IIk2MVKwDVg&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
 href='https://gdata.youtube.com/feeds/api/videos/IIk2MVKwDVg/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/IIk2MVKwDVg/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/IIk2MVKwDVg/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/IIk2MVKwDVg/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=IIk2MVKwDVg'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/RjsR6uolPoZLhOqN6lZCUA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/IIk2MVKwDVg'/><author
<name>Crisstyan 
Padureanu</name><uri>https://gdata.youtube.com/feeds/api/users/RjsR6uolPoZLhOqN6lZCUA</uri><yt:userId>RjsR6uolPoZLhOqN6lZCUA</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/IIk2MVKwDVg/comments' 
countHint='4'/></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='https://www.youtu
 
be.com/v/IIk2MVKwDVg?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='553' 
yt:format='5'/><media:content 
url='rtsp://v8.cache4.c.youtube.com/CkYLENy73wIaPQlYDbBSMTaJIBMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='553' yt:format='1'/><media:content 
url='rtsp://v8.cache4.c.youtube.com/CkYLENy73wIaPQlYDbBSMTaJIBMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='553' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='Crisstyan 
Padureanu'>RjsR6uolPoZLhOqN6lZCUA</media:credit><media:description type='plain'>Half-Life 2 Escape From City 
17 (Part 1,2,3).Have a nice day and thanks for watching!</media:description><me
 dia:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=IIk2MVKwDVg&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/IIk2MVKwDVg/default.jpg' height='90' width='120' time='00:04:36.500' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/IIk2MVKwDVg/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/IIk2MVKwDVg/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/IIk2MVKwDVg/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/IIk2MVKwDVg/1.jpg' height='90' width='120' 
time='00:02:18.250' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/IIk2MVKwDVg/2.jpg' 
height='90' width='120' time='00:04:36.500' yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/I
 Ik2MVKwDVg/3.jpg' height='90' width='120' time='00:06:54.750' yt:name='end'/><media:title 
type='plain'>Half-Life 2 Escape From City 17 (Part 
2)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='553'/><yt:uploaded>2012-04-16T12:10:48.000Z</yt:uploaded><yt:uploaderId>UCRjsR6uolPoZLhOqN6lZCUA</yt:uploaderId><yt:videoid>IIk2MVKwDVg</yt:videoid></media:group><gd:rating
 average='4.6923075' max='5' min='1' numRaters='13' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' viewCount='385'/><yt:rating 
numDislikes='1' numLikes='12'/></entry><entry 
gd:etag='W/&quot;CkQCR347eCp7I2A9WhBWGUk.&quot;'><id>tag:youtube.com,2008:video:D_0GboHrRME</id><published>2012-09-15T07:27:26.000Z</published><updated>2013-04-14T11:52: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='Games' label='G
 aming'/><title>Half-Life Escape From City 17: Part One (HD 720p RUS)</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/D_0GboHrRME?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=D_0GboHrRME&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/D_0GboHrRME/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/D_0GboHrRME/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/D_0GboHrRME/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='https://gda
 ta.youtube.com/feeds/api/videos/D_0GboHrRME/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=D_0GboHrRME'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/NjIZi6fudFXdRwbDKg4vqw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/D_0GboHrRME'/><author><name>PalladinGOLD</name><uri>https://gdata.youtube.com/feeds/api/users/PalladinGOLD</uri><yt:userId>NjIZi6fudFXdRwbDKg4vqw</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/D_0GboHrRME/comments' 
countHint='0'/></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='https://www.youtube.com/v/D_0GboHrRME?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='329' 
yt:format='5'/><media:content 
url='rtsp://v8.cache4.c.youtube.com/CkYLENy73wIaPQnBROuBbgb9DxMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='329' yt:format='1'/><media:content 
url='rtsp://v8.cache4.c.youtube.com/CkYLENy73wI
 aPQnBROuBbgb9DxMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp' 
type='video/3gpp' medium='video' expression='full' duration='329' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='PalladinGOLD'>palladingold</media:credit><media:description 
type='plain'>Escape from City 17: Part One — это короткометражный фильм, созданный небольшой командой The 
Purchase Brothers из Торонто, Канада, и рассказывающий историю 
п...</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=D_0GboHrRME&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/D_0GboHrRME/default.jpg' height='90' width='120' time='00:02:44.500' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/D_0GboHrRME/m
 qdefault.jpg' height='180' width='320' yt:name='mqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/D_0GboHrRME/hqdefault.jpg' height='360' width='480' 
yt:name='hqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/D_0GboHrRME/sddefault.jpg' height='480' 
width='640' yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/D_0GboHrRME/1.jpg' height='90' 
width='120' time='00:01:22.250' yt:name='start'/><media:thumbnail 
url='https://i.ytimg.com/vi/D_0GboHrRME/2.jpg' height='90' width='120' time='00:02:44.500' 
yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/D_0GboHrRME/3.jpg' height='90' width='120' 
time='00:04:06.750' yt:name='end'/><media:title type='plain'>Half-Life Escape From City 17: Part One (HD 720p 
RUS)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='329'/><yt:uploaded>2012-09-15T07:27:26.000Z</yt:uploaded><yt:uploaderId>UCNjIZi6fudFXdRwbDKg4vqw</yt:uploaderId><yt:videoid>D_0GboHrRME</yt:videoid></media:group
<gd:rating average='5.0' max='5' min='1' numRaters='6' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='281'/><yt:rating numDislikes='0' numLikes='6'/></entry><entry 
gd:etag='W/&quot;C0EFSX47eCp7I2A9WhBSGU8.&quot;'><id>tag:youtube.com,2008:video:Pbxod42kqG8</id><published>2012-12-30T05:35:45.000Z</published><updated>2013-02-26T23:33:38.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'/><title>ESCAPE 
FROM CITY 17! Half-Life 2 Part 1</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/Pbxod42kqG8?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=Pbxod42kqG8&amp;feature=youtube_gdata'/><link rel='http://gdata.
 youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Pbxod42kqG8/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Pbxod42kqG8/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Pbxod42kqG8/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Pbxod42kqG8/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=Pbxod42kqG8'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/fijr_LD_migV5x7g0Wm0fA'/><link rel='self' 
type='application/atom+xml' href='https://gdata.
 youtube.com/feeds/api/videos/q1UPMEmCqZo/related/Pbxod42kqG8'/><author><name>Jacob 
Haddad</name><uri>https://gdata.youtube.com/feeds/api/users/EPICCOOLJAKE111</uri><yt:userId>fijr_LD_migV5x7g0Wm0fA</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/Pbxod42kqG8/comments' 
countHint='1'/></gd:comments><yt:hd/><media:group><media:category label='Gaming' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Games</media:c
 ategory><media:content 
url='https://www.youtube.com/v/Pbxod42kqG8?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='873' 
yt:format='5'/><media:content 
url='rtsp://v3.cache7.c.youtube.com/CkYLENy73wIaPQlvqKSNd2i8PRMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='873' yt:format='1'/><media:content 
url='rtsp://v3.cache7.c.youtube.com/CkYLENy73wIaPQlvqKSNd2i8PRMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='873' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='Jacob Haddad' 
yt:type='partner'>epiccooljake111</media:credit><media:description type='plain'>A New Lets play For You 
Trolls!</media:description><media:k
 eywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=Pbxod42kqG8&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/Pbxod42kqG8/default.jpg' height='90' width='120' time='00:07:16.500' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/Pbxod42kqG8/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/Pbxod42kqG8/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/Pbxod42kqG8/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/Pbxod42kqG8/1.jpg' height='90' width='120' 
time='00:03:38.250' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/Pbxod42kqG8/2.jpg' 
height='90' width='120' time='00:07:16.500' yt:name='middle'/><media:thumbnail 
url='https://i.ytimg.com/vi/Pbxod4
 2kqG8/3.jpg' height='90' width='120' time='00:10:54.750' yt:name='end'/><media:title type='plain'>ESCAPE 
FROM CITY 17! Half-Life 2 Part 1</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='873'/><yt:uploaded>2012-12-30T05:35:45.000Z</yt:uploaded><yt:uploaderId>UCfijr_LD_migV5x7g0Wm0fA</yt:uploaderId><yt:videoid>Pbxod42kqG8</yt:videoid></media:group><gd:rating
 average='5.0' max='5' min='1' numRaters='2' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics 
favoriteCount='0' viewCount='66'/><yt:rating numDislikes='0' numLikes='2'/></entry><entry 
gd:etag='W/&quot;DkIDSX47eCp7I2A9WhFSEk8.&quot;'><id>tag:youtube.com,2008:video:5D3_so4P-Go</id><published>2013-04-06T21:17:56.000Z</published><updated>2013-06-14T15:42:58.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</yt:state></app:control><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.yo
 utube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' 
term='Film' label='Film &amp; Animation'/><title>Half Life 2: "Escape From City 17" Music Video 
HD</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/5D3_so4P-Go?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=5D3_so4P-Go&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/5D3_so4P-Go/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/5D3_so4P-Go/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/5
 D3_so4P-Go/complaints'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/5D3_so4P-Go/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/yeJCDQB9k2yKQyb0gF9p6A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/5D3_so4P-Go'/><author><name>WheresQualdo</name><uri>https://gdata.youtube.com/feeds/api/users/WheresQualdo</uri><yt:userId>yeJCDQB9k2yKQyb0gF9p6A</yt:userId></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='denied'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/5D3_so4P-Go/comments' 
countHint='0'/></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='https://www.youtube.com/v/5D3_so4P-Go?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='318' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' 
yt:display='WheresQualdo'>wheresqualdo</media:credit><media:description type='plain'>No Copyright 
Infringement intended. All credit goes to the Purchase Brothers. This is a simple music video that I cut 
together for it. For best picture/a
 udio...</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=5D3_so4P-Go&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i.ytimg.com/vi/5D3_so4P-Go/default.jpg' height='90' width='120' time='00:02:39' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/5D3_so4P-Go/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/5D3_so4P-Go/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/5D3_so4P-Go/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/5D3_so4P-Go/1.jpg' height='90' width='120' 
time='00:01:19.500' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/5D3_so4P-Go/2.jpg' height
 ='90' width='120' time='00:02:39' yt:name='middle'/><media:thumbnail 
url='https://i.ytimg.com/vi/5D3_so4P-Go/3.jpg' height='90' width='120' time='00:03:58.500' 
yt:name='end'/><media:title type='plain'>Half Life 2: "Escape From City 17" Music Video 
HD</media:title><yt:duration 
seconds='318'/><yt:uploaded>2013-04-06T21:17:56.000Z</yt:uploaded><yt:uploaderId>UCyeJCDQB9k2yKQyb0gF9p6A</yt:uploaderId><yt:videoid>5D3_so4P-Go</yt:videoid></media:group><yt:statistics
 favoriteCount='0' viewCount='22'/></entry><entry 
gd:etag='W/&quot;A0cDQ347eCp7I2A9WhJVFE8.&quot;'><id>tag:youtube.com,2008:video:13pr8R7xHPU</id><published>2012-08-31T16:04:32.000Z</published><updated>2012-08-31T16:04: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='Games' label='Gaming'/><title>Escape From 
The City 17: Half-Life 2 Episode 1 - 09 - Exit 17 (1 of 2)</ti
 tle><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/13pr8R7xHPU?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=13pr8R7xHPU&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/13pr8R7xHPU/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/13pr8R7xHPU/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/13pr8R7xHPU/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/13pr8R7xHPU/related'/><link rel='http://
 gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=13pr8R7xHPU'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/92FkukPVKeQ8clNuwdLD1Q'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/13pr8R7xHPU'/><author><name>ohuckabee</name><uri>https://gdata.youtube.com/feeds/api/users/ohuckabee</uri><yt:userId>92FkukPVKeQ8clNuwdLD1Q</yt:userId></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' permiss
 ion='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/13pr8R7xHPU/comments' 
countHint='0'/></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='https://www.youtube.com/v/13pr8R7xHPU?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='1000' 
yt:format='5'/><media:content 
url='rtsp://v7.cache1.c.youtube.com/CkYLENy73wIaPQn1HPEe8Wt61xMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='1000' yt:format='1'/><media:content 
url='rtsp://v7.cache1.c.youtube.com/CkYLENy73wIaPQn1HPEe8Wt61xMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3
 UbFCcYOYM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='1000' 
yt:format='6'/><media:credit role='uploader' scheme='urn:youtube' 
yt:display='ohuckabee'>ohuckabee</media:credit><media:description type='plain'>This is one of those escort 
missions where you're guaranteed to save at least one batch of people, assuming that you don't go *really* 
out of your way to get...</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=13pr8R7xHPU&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/13pr8R7xHPU/default.jpg' height='90' width='120' time='00:08:20' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/13pr8R7xHPU/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/13pr8R7xHPU/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault
 '/><media:thumbnail url='https://i.ytimg.com/vi/13pr8R7xHPU/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/13pr8R7xHPU/1.jpg' height='90' width='120' 
time='00:04:10' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/13pr8R7xHPU/2.jpg' height='90' 
width='120' time='00:08:20' yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/13pr8R7xHPU/3.jpg' 
height='90' width='120' time='00:12:30' yt:name='end'/><media:title type='plain'>Escape From The City 17: 
Half-Life 2 Episode 1 - 09 - Exit 17 (1 of 
2)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='1000'/><yt:uploaded>2012-08-31T16:04:32.000Z</yt:uploaded><yt:uploaderId>UC92FkukPVKeQ8clNuwdLD1Q</yt:uploaderId><yt:videoid>13pr8R7xHPU</yt:videoid></media:group><yt:statistics
 favoriteCount='0' viewCount='51'/></entry><entry 
gd:etag='W/&quot;CUIHQH47eCp7I2A9WhFSGEQ.&quot;'><id>tag:youtube.com,2008:video:R-MGaLu4SPk</id><publish
 ed>2012-09-07T18:48:11.000Z</published><updated>2013-06-22T09:32:11.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'/><title>Escape from 
city 17 (part one) - Half Life Live action film</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/R-MGaLu4SPk?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=R-MGaLu4SPk&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/R-MGaLu4SPk/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/R-MGaLu4SP
 k/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/R-MGaLu4SPk/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/R-MGaLu4SPk/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=R-MGaLu4SPk'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/67CvRZFyaWobQx6fEuD_xA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/R-MGaLu4SPk'/><author><name>Vickmann 
Dark</name><uri>https://gdata.youtube.com/feeds/api/users/DarkVickmann</uri><yt:userId>67CvRZFyaWobQx6fEuD_xA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl act
 ion='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='https://gdata.youtube.com/feeds/api/videos/R-MGaLu4SPk/comments' 
countHint='0'/></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='https://www.youtube.com/v/R-MGaLu4SPk?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='282' 
yt:format='5'/><media:content ur
 
l='rtsp://v6.cache7.c.youtube.com/CkYLENy73wIaPQn5SLi7aAbjRxMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='282' yt:format='1'/><media:content 
url='rtsp://v6.cache7.c.youtube.com/CkYLENy73wIaPQn5SLi7aAbjRxMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='282' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='Vickmann Dark'>darkvickmann</media:credit><media:description 
type='plain'>Escape from city 17 (part one) - Half Life Live action 
film.</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=R-MGaLu4SPk&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/R-MGaLu4SPk/default.jpg' height='90' width='
 120' time='00:02:21' yt:name='default'/><media:thumbnail 
url='https://i.ytimg.com/vi/R-MGaLu4SPk/mqdefault.jpg' height='180' width='320' 
yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/R-MGaLu4SPk/hqdefault.jpg' height='360' 
width='480' yt:name='hqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/R-MGaLu4SPk/sddefault.jpg' 
height='480' width='640' yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/R-MGaLu4SPk/1.jpg' 
height='90' width='120' time='00:01:10.500' yt:name='start'/><media:thumbnail 
url='https://i.ytimg.com/vi/R-MGaLu4SPk/2.jpg' height='90' width='120' time='00:02:21' 
yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/R-MGaLu4SPk/3.jpg' height='90' width='120' 
time='00:03:31.500' yt:name='end'/><media:title type='plain'>Escape from city 17 (part one) - Half Life Live 
action film</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='282'/><yt:uploaded>2012-09-07T18:48:11.000Z</yt:uploaded><yt:
 
uploaderId>UC67CvRZFyaWobQx6fEuD_xA</yt:uploaderId><yt:videoid>R-MGaLu4SPk</yt:videoid></media:group><gd:rating
 average='5.0' max='5' min='1' numRaters='7' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics 
favoriteCount='0' viewCount='220'/><yt:rating numDislikes='0' numLikes='7'/></entry><entry 
gd:etag='W/&quot;C04MRX47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:CQOMRgH9GmM</id><published>2013-07-01T06:25:14.000Z</published><updated>2013-07-01T20:53:04.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'/><title>CrySpy - "Tease"</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/CQOMRgH9GmM?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' href='https:
 //www.youtube.com/watch?v=CQOMRgH9GmM&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CQOMRgH9GmM/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CQOMRgH9GmM/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CQOMRgH9GmM/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CQOMRgH9GmM/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=CQOMRgH9GmM'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/
 Tmd_8nUYZpd2CUEGx47RAQ'/><link rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/CQOMRgH9GmM'/><author><name>Coyotemation</name><uri>https://gdata.youtube.com/feeds/api/users/Coyotemation</uri><yt:userId>Tmd_8nUYZpd2CUEGx47RAQ</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/CQOMRgH9GmM/comments' 
countHint='201'/></gd:comments><yt:hd/><media:group><media:category labe
 l='Film &amp; Animation' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Film</media:category><media:content 
url='https://www.youtube.com/v/CQOMRgH9GmM?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='24' 
yt:format='5'/><media:content 
url='rtsp://v8.cache8.c.youtube.com/CkYLENy73wIaPQljGv0BRowDCRMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='24' yt:format='1'/><media:content 
url='rtsp://v8.cache8.c.youtube.com/CkYLENy73wIaPQljGv0BRowDCRMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='24' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='Coyotemation' yt:type='partner'>coyotemation</media:cred
 it><media:description type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=CQOMRgH9GmM&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/CQOMRgH9GmM/default.jpg' height='90' width='120' time='00:00:12' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/CQOMRgH9GmM/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/CQOMRgH9GmM/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/CQOMRgH9GmM/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/CQOMRgH9GmM/1.jpg' height='90' width='120' 
time='00:00:06' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/CQOMRgH9GmM/2.jpg' height='90' 
width='120' time='00:00:12' yt:name='middle'/><media:thumbnail ur
 l='https://i.ytimg.com/vi/CQOMRgH9GmM/3.jpg' height='90' width='120' time='00:00:18' 
yt:name='end'/><media:title type='plain'>CrySpy - 
"Tease"</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='24'/><yt:uploaded>2013-07-01T06:25:14.000Z</yt:uploaded><yt:uploaderId>UCTmd_8nUYZpd2CUEGx47RAQ</yt:uploaderId><yt:videoid>CQOMRgH9GmM</yt:videoid></media:group><gd:rating
 average='4.990521' max='5' min='1' numRaters='1266' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' viewCount='3689'/><yt:rating 
numDislikes='3' numLikes='1263'/></entry><entry 
gd:etag='W/&quot;C0YFR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:CcIEikou_-s</id><published>2013-06-30T13:47:55.000Z</published><updated>2013-07-01T20:38:36.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'/><title>Gowdy: House Won't Take Schumer's Advice</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/CcIEikou_-s?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=CcIEikou_-s&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CcIEikou_-s/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CcIEikou_-s/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/CcIEikou_-s/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='https://g
 data.youtube.com/feeds/api/videos/CcIEikou_-s/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=CcIEikou_-s'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/7aGP2jPnwbzp3jSjkG_BpQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/CcIEikou_-s'/><author><name>unicornwizurd</name><uri>https://gdata.youtube.com/feeds/api/users/unicornwizurd</uri><yt:userId>7aGP2jPnwbzp3jSjkG_BpQ</yt:userId></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 ac
 tion='autoPlay' permission='allowed'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/CcIEikou_-s/comments' 
countHint='11'/></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='https://www.youtube.com/v/CcIEikou_-s?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='73' 
yt:format='5'/><media:content 
url='rtsp://v4.cache5.c.youtube.com/CkYLENy73wIaPQnr_y5KigTCCRMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='73' yt:format='1'/><media:content 
url='rtsp://v4.cache5.c.youtube
 
.com/CkYLENy73wIaPQnr_y5KigTCCRMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='73' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' 
yt:display='unicornwizurd'>unicornwizurd</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=CcIEikou_-s&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/CcIEikou_-s/default.jpg' height='90' width='120' time='00:00:36.500' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/CcIEikou_-s/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/CcIEikou_-s/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/CcIEikou_-s/sddefault.jpg' he
 ight='480' width='640' yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/CcIEikou_-s/1.jpg' 
height='90' width='120' time='00:00:18.250' yt:name='start'/><media:thumbnail 
url='https://i.ytimg.com/vi/CcIEikou_-s/2.jpg' height='90' width='120' time='00:00:36.500' 
yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/CcIEikou_-s/3.jpg' height='90' width='120' 
time='00:00:54.750' yt:name='end'/><media:title type='plain'>Gowdy: House Won't Take Schumer's 
Advice</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='73'/><yt:uploaded>2013-06-30T13:47:55.000Z</yt:uploaded><yt:uploaderId>UC7aGP2jPnwbzp3jSjkG_BpQ</yt:uploaderId><yt:videoid>CcIEikou_-s</yt:videoid></media:group><gd:rating
 average='3.105263' max='5' min='1' numRaters='19' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' viewCount='6152'/><yt:rating 
numDislikes='9' numLikes='10'/></entry><entry gd:etag='W/&quot;C0QGR347eCp7I2A9WhFRF0w.&quot;'
<id>tag:youtube.com,2008:video:DFkLDSmLouU</id><published>2011-09-30T17:43:27.000Z</published><updated>2013-07-01T20:42:06.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'/><title>Happy Reunion at Garland Animal Services</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/DFkLDSmLouU?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=DFkLDSmLouU&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/DFkLDSmLouU/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='htt
 ps://gdata.youtube.com/feeds/api/videos/DFkLDSmLouU/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/DFkLDSmLouU/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/DFkLDSmLouU/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=DFkLDSmLouU'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/5I-iBY-t50ZduPCmpNyG4w'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/DFkLDSmLouU'/><author><name>garlandtx 
gov</name><uri>https://gdata.youtube.com/feeds/api/users/garlandtxgov</uri><yt:userId>5I-iBY-t50ZduPCmpNyG4w</yt:userId></author><yt:accessControl
 action='co
 mment' 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='https://gdata.youtube.com/feeds/api/videos/DFkLDSmLouU/comments' 
countHint='46'/></gd:comments><georss:where><gml:Point><gml:pos>32.90726089477539 
-96.6412353515625</gml:pos></gml:Point></georss:where><media:group><media:category label='Film &amp; 
Animation' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Film</media:category><media:content 
url='https://www.youtube.com/v/DFkLDSmLouU?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQ
 nGDm&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' 
expression='full' duration='109' yt:format='5'/><media:content 
url='rtsp://v2.cache7.c.youtube.com/CkYLENy73wIaPQnloospDQtZDBMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='109' yt:format='1'/><media:content 
url='rtsp://v2.cache7.c.youtube.com/CkYLENy73wIaPQnloospDQtZDBMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='109' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='garlandtx gov'>garlandtxgov</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=DFkLDSmLouU&amp;feature=youtube_gdata_player'/><media
 :thumbnail url='https://i.ytimg.com/vi/DFkLDSmLouU/default.jpg' height='90' width='120' time='00:00:54.500' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/DFkLDSmLouU/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/DFkLDSmLouU/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/DFkLDSmLouU/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/DFkLDSmLouU/1.jpg' height='90' width='120' 
time='00:00:27.250' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/DFkLDSmLouU/2.jpg' 
height='90' width='120' time='00:00:54.500' yt:name='middle'/><media:thumbnail 
url='https://i.ytimg.com/vi/DFkLDSmLouU/3.jpg' height='90' width='120' time='00:01:21.750' 
yt:name='end'/><media:title type='plain'>Happy Reunion at Garland Animal Services</media:title><yt:duration 
seconds='109'/><yt:uploaded>2011-09-30T17
 
:43:27.000Z</yt:uploaded><yt:uploaderId>UC5I-iBY-t50ZduPCmpNyG4w</yt:uploaderId><yt:videoid>DFkLDSmLouU</yt:videoid></media:group><gd:rating
 average='4.634408' max='5' min='1' numRaters='186' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='27853'/><yt:rating numDislikes='17' numLikes='169'/></entry><entry 
gd:etag='W/&quot;C0YBR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:Fcpe6TdiZ3Q</id><published>2013-05-16T18:05:36.000Z</published><updated>2013-07-01T20:39: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='Film' label='Film &amp; 
Animation'/><title>YOU SNOOZE, YOU LOSE. (Life's a Zoo #2)</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/Fcpe6TdiZ3Q?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=you
 tube_gdata'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=Fcpe6TdiZ3Q&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Fcpe6TdiZ3Q/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Fcpe6TdiZ3Q/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Fcpe6TdiZ3Q/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Fcpe6TdiZ3Q/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=Fcpe6TdiZ3Q'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='applic
 ation/atom+xml' href='https://gdata.youtube.com/feeds/api/users/-T_EdQ6MTufAWnFXa7dnYw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/Fcpe6TdiZ3Q'/><author><name>Shut Up! 
Cartoons</name><uri>https://gdata.youtube.com/feeds/api/users/ShutUpCartoons</uri><yt:userId>-T_EdQ6MTufAWnFXa7dnYw</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/Fcpe6TdiZ3Q/comments' c
 ountHint='525'/></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='https://www.youtube.com/v/Fcpe6TdiZ3Q?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='1337' 
yt:format='5'/><media:content 
url='rtsp://v3.cache6.c.youtube.com/CkYLENy73wIaPQl0Z2I36V7KFRMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='1337' yt:format='1'/><media:content 
url='rtsp://v3.cache6.c.youtube.com/CkYLENy73wIaPQl0Z2I36V7KFRMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='1337' yt:format='6'/><media:credit 
role='uploader' scheme='urn:
 youtube' yt:display='Shut Up! Cartoons' yt:type='partner'>shutupcartoons</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=Fcpe6TdiZ3Q&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/Fcpe6TdiZ3Q/default.jpg' height='90' width='120' time='00:11:08.500' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/Fcpe6TdiZ3Q/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.com/vi/Fcpe6TdiZ3Q/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/Fcpe6TdiZ3Q/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/Fcpe6TdiZ3Q/1.jpg' height='90' width='120' 
time='00:05:34.250' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/Fcpe
 6TdiZ3Q/2.jpg' height='90' width='120' time='00:11:08.500' yt:name='middle'/><media:thumbnail 
url='https://i.ytimg.com/vi/Fcpe6TdiZ3Q/3.jpg' height='90' width='120' time='00:16:42.750' 
yt:name='end'/><media:title type='plain'>YOU SNOOZE, YOU LOSE. (Life's a Zoo 
#2)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='1337'/><yt:uploaded>2013-05-16T18:05:36.000Z</yt:uploaded><yt:uploaderId>UC-T_EdQ6MTufAWnFXa7dnYw</yt:uploaderId><yt:videoid>Fcpe6TdiZ3Q</yt:videoid></media:group><gd:rating
 average='4.86755' max='5' min='1' numRaters='1812' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='21897'/><yt:rating numDislikes='60' numLikes='1752'/></entry><entry 
gd:etag='W/&quot;C0AHRn47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:HZXP9FMm9w4</id><published>2013-06-30T07:18:00.000Z</published><updated>2013-07-01T20:48:57.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' term='http://gdat
 a.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' 
term='Film' label='Film &amp; Animation'/><title>3D Doctor Who 50th Anniversary Trailer - VFX 
Breakdown</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/HZXP9FMm9w4?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=HZXP9FMm9w4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/HZXP9FMm9w4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/HZXP9FMm9w4/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api
 /videos/HZXP9FMm9w4/complaints'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/HZXP9FMm9w4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=HZXP9FMm9w4'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/ggccVQxXZFny58cconVANA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/q1UPMEmCqZo/related/HZXP9FMm9w4'/><author><name>John 
Smith</name><uri>https://gdata.youtube.com/feeds/api/users/ggccVQxXZFny58cconVANA</uri><yt:userId>ggccVQxXZFny58cconVANA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderated'/><yt:accessControl 
action='rate' permi
 ssion='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='https://gdata.youtube.com/feeds/api/videos/HZXP9FMm9w4/comments' 
countHint='526'/></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='https://www.youtube.com/v/HZXP9FMm9w4?version=3&amp;f=related&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='300' 
yt:format='5'/><media:content 
url='rtsp://v5.cache4.c.youtube.com/CkYLENy73wIaPQkO9yZT9M-VHRMYDSANFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCc
 YOYM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='300' 
yt:format='1'/><media:content 
url='rtsp://v5.cache4.c.youtube.com/CkYLENy73wIaPQkO9yZT9M-VHRMYESARFEgGUgdyZWxhdGVkciEBErv9LIH_mIpC8a_CyT7QPg7zwexCOkTVrx3UbFCcYOYM/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='300' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='John 
Smith'>ggccVQxXZFny58cconVANA</media:credit><media:description type='plain'/><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=HZXP9FMm9w4&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i.ytimg.com/vi/HZXP9FMm9w4/default.jpg' height='90' width='120' time='00:02:30' 
yt:name='default'/><media:thumbnail url='https://i.ytimg.com/vi/HZXP9FMm9w4/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i.ytimg.co
 m/vi/HZXP9FMm9w4/hqdefault.jpg' height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i.ytimg.com/vi/HZXP9FMm9w4/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i.ytimg.com/vi/HZXP9FMm9w4/1.jpg' height='90' width='120' 
time='00:01:15' yt:name='start'/><media:thumbnail url='https://i.ytimg.com/vi/HZXP9FMm9w4/2.jpg' height='90' 
width='120' time='00:02:30' yt:name='middle'/><media:thumbnail url='https://i.ytimg.com/vi/HZXP9FMm9w4/3.jpg' 
height='90' width='120' time='00:03:45' yt:name='end'/><media:title type='plain'>3D Doctor Who 50th 
Anniversary Trailer - VFX Breakdown</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='300'/><yt:uploaded>2013-06-30T07:18:00.000Z</yt:uploaded><yt:uploaderId>UCggccVQxXZFny58cconVANA</yt:uploaderId><yt:videoid>HZXP9FMm9w4</yt:videoid></media:group><gd:rating
 average='4.980413' max='5' min='1' numRaters='1838' rel='http://schemas.google.com/g/2005#overall'/
<yt:statistics favoriteCount='0' viewCount='34014'/><yt:rating numDislikes='9' 
numLikes='1829'/></entry></feed>
+  
diff --git a/gdata/tests/traces/youtube/query-single b/gdata/tests/traces/youtube/query-single
new file mode 100644
index 0000000..6f1e9c3
--- /dev/null
+++ b/gdata/tests/traces/youtube/query-single
@@ -0,0 +1,29 @@
+> GET /feeds/api/videos/_LeQuMpwbW4 HTTP/1.1
+> Soup-Debug-Timestamp: 1372714741
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 9 (0x8c2ab0), SoupSocket 3 (0x84d5e0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714741
+< Soup-Debug: SoupMessage 9 (0x8c2ab0)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Mon, 01 Jul 2013 21:39:01 GMT
+< Date: Mon, 01 Jul 2013 21:39:01 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: *
+< GData-Version: 2.1
+< ETag: W/"D08ERn47eCp7I2A9Wx5VFk4."
+< Last-Modified: Sat, 09 Oct 2010 14:50:07 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;D08ERn47eCp7I2A9Wx5VFk4.&quot;'><id>tag:youtube.com,2008:video:_LeQuMpwbW4</id><published>2009-03-24T23:03:00.000Z</published><updated>2010-10-09T14:50: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='Education' 
label='Education'/><title>Totem Movie Player</title><content type='video/3gpp' 
src='rtsp://v6.cache5.c.youtube.com/CkULENy73wIaPAlubXDKuJC3_BMYDSANFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=_LeQuMpwbW4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/sc
 hemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_LeQuMpwbW4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_LeQuMpwbW4/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_LeQuMpwbW4/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_LeQuMpwbW4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/QJC-f4iUoHiYSEMniQRFAA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_LeQuMpwbW4'/><author><name>ubuntuhal</name><uri>https://gdata.youtube.com/feeds/api/users/ubuntuhal</uri><yt:u
 serId>QJC-f4iUoHiYSEMniQRFAA</yt:userId></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='denied'/><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='https://gdata.youtube.com/feeds/api/videos/_LeQuMpwbW4/comments' 
countHint='2'/></gd:comments><media:group><media:category label='Education' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Education</media:category><media:content 
url='rtsp://v6.cache5.c.youtube.com/CkULENy73wIaPAlubXDKuJC3_BMYDSANFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 
 type='video/3gpp' medium='video' isDefault='true' expression='full' duration='269' 
yt:format='1'/><media:content 
url='rtsp://v6.cache5.c.youtube.com/CkULENy73wIaPAlubXDKuJC3_BMYESARFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='269' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='ubuntuhal'>ubuntuhal</media:credit><media:description 
type='plain'>The default movie player in Ubuntu is called the Totem Movie Player. I'll show you the basics of 
using this program and also I'll show you how to fix the flickering problems if you're using an ATI card and 
have compiz enabled.</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=_LeQuMpwbW4&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/_LeQuMpwbW4/def
 ault.jpg' height='90' width='120' time='00:02:14.500' yt:name='default'/><media:thumbnail 
url='https://i1.ytimg.com/vi/_LeQuMpwbW4/mqdefault.jpg' height='180' width='320' 
yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/_LeQuMpwbW4/hqdefault.jpg' height='360' 
width='480' yt:name='hqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/_LeQuMpwbW4/1.jpg' height='90' 
width='120' time='00:01:07.250' yt:name='start'/><media:thumbnail 
url='https://i1.ytimg.com/vi/_LeQuMpwbW4/2.jpg' height='90' width='120' time='00:02:14.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/_LeQuMpwbW4/3.jpg' height='90' width='120' 
time='00:03:21.750' yt:name='end'/><media:title type='plain'>Totem Movie Player</media:title><yt:duration 
seconds='269'/><yt:uploaded>2009-03-24T23:03:00.000Z</yt:uploaded><yt:uploaderId>UCQJC-f4iUoHiYSEMniQRFAA</yt:uploaderId><yt:videoid>_LeQuMpwbW4</yt:videoid></media:group><yt:noembed/><gd:rating
 average='5.0' max='5' min='1' numRa
 ters='4' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='2553'/><yt:rating numDislikes='0' numLikes='4'/></entry>
+  
diff --git a/gdata/tests/traces/youtube/query-single-async b/gdata/tests/traces/youtube/query-single-async
new file mode 100644
index 0000000..7823810
--- /dev/null
+++ b/gdata/tests/traces/youtube/query-single-async
@@ -0,0 +1,29 @@
+> GET /feeds/api/videos/_LeQuMpwbW4 HTTP/1.1
+> Soup-Debug-Timestamp: 1372714751
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 25 (0x7fffdc002c70), SoupSocket 11 (0x7fffe0008ee0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714751
+< Soup-Debug: SoupMessage 25 (0x7fffdc002c70)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Mon, 01 Jul 2013 21:39:11 GMT
+< Date: Mon, 01 Jul 2013 21:39:11 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: *
+< GData-Version: 2.1
+< ETag: W/"D08ERn47eCp7I2A9Wx5VFk4."
+< Last-Modified: Sat, 09 Oct 2010 14:50:07 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;D08ERn47eCp7I2A9Wx5VFk4.&quot;'><id>tag:youtube.com,2008:video:_LeQuMpwbW4</id><published>2009-03-24T23:03:00.000Z</published><updated>2010-10-09T14:50: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='Education' 
label='Education'/><title>Totem Movie Player</title><content type='video/3gpp' 
src='rtsp://v6.cache5.c.youtube.com/CkULENy73wIaPAlubXDKuJC3_BMYDSANFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=_LeQuMpwbW4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/sc
 hemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_LeQuMpwbW4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_LeQuMpwbW4/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_LeQuMpwbW4/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_LeQuMpwbW4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/QJC-f4iUoHiYSEMniQRFAA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_LeQuMpwbW4'/><author><name>ubuntuhal</name><uri>https://gdata.youtube.com/feeds/api/users/ubuntuhal</uri><yt:u
 serId>QJC-f4iUoHiYSEMniQRFAA</yt:userId></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='denied'/><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='https://gdata.youtube.com/feeds/api/videos/_LeQuMpwbW4/comments' 
countHint='2'/></gd:comments><media:group><media:category label='Education' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Education</media:category><media:content 
url='rtsp://v6.cache5.c.youtube.com/CkULENy73wIaPAlubXDKuJC3_BMYDSANFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 
 type='video/3gpp' medium='video' isDefault='true' expression='full' duration='269' 
yt:format='1'/><media:content 
url='rtsp://v6.cache5.c.youtube.com/CkULENy73wIaPAlubXDKuJC3_BMYESARFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='269' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='ubuntuhal'>ubuntuhal</media:credit><media:description 
type='plain'>The default movie player in Ubuntu is called the Totem Movie Player. I'll show you the basics of 
using this program and also I'll show you how to fix the flickering problems if you're using an ATI card and 
have compiz enabled.</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=_LeQuMpwbW4&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/_LeQuMpwbW4/def
 ault.jpg' height='90' width='120' time='00:02:14.500' yt:name='default'/><media:thumbnail 
url='https://i1.ytimg.com/vi/_LeQuMpwbW4/mqdefault.jpg' height='180' width='320' 
yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/_LeQuMpwbW4/hqdefault.jpg' height='360' 
width='480' yt:name='hqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/_LeQuMpwbW4/1.jpg' height='90' 
width='120' time='00:01:07.250' yt:name='start'/><media:thumbnail 
url='https://i1.ytimg.com/vi/_LeQuMpwbW4/2.jpg' height='90' width='120' time='00:02:14.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/_LeQuMpwbW4/3.jpg' height='90' width='120' 
time='00:03:21.750' yt:name='end'/><media:title type='plain'>Totem Movie Player</media:title><yt:duration 
seconds='269'/><yt:uploaded>2009-03-24T23:03:00.000Z</yt:uploaded><yt:uploaderId>UCQJC-f4iUoHiYSEMniQRFAA</yt:uploaderId><yt:videoid>_LeQuMpwbW4</yt:videoid></media:group><yt:noembed/><gd:rating
 average='5.0' max='5' min='1' numRa
 ters='4' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='2553'/><yt:rating numDislikes='0' numLikes='4'/></entry>
+  
diff --git a/gdata/tests/traces/youtube/query-standard-feed b/gdata/tests/traces/youtube/query-standard-feed
new file mode 100644
index 0000000..46e253b
--- /dev/null
+++ b/gdata/tests/traces/youtube/query-standard-feed
@@ -0,0 +1,454 @@
+> GET /feeds/api/standardfeeds/top_rated HTTP/1.1
+> Soup-Debug-Timestamp: 1372714740
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 7 (0x8c2c90), SoupSocket 3 (0x84d5e0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714740
+< Soup-Debug: SoupMessage 7 (0x8c2c90)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Mon, 01 Jul 2013 21:39:00 GMT
+< Date: Mon, 01 Jul 2013 21:39:00 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: *
+< GData-Version: 2.1
+< ETag: W/"DkAAQXk9fip7I2A9WhFRF0w."
+< Last-Modified: Mon, 01 Jul 2013 21:39:00 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?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:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkAAQXk9fip7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:standardfeed:global:top_rated</id><updated>2013-07-01T21:39:00.766Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#video'/><title>Top 
Rated</title><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link rel='alternate' 
type='text/html' href='https://www.youtube.com/channel/HCWKQJPHqP4J0'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/standardfeeds/top_rated'/><link 
rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='h
 ttps://gdata.youtube.com/feeds/api/standardfeeds/top_rated/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/standardfeeds/top_rated?start-index=1&amp;max-results=25'/><link 
rel='service' type='application/atomsvc+xml' 
href='https://gdata.youtube.com/feeds/api/standardfeeds/top_rated?alt=atom-service'/><link rel='next' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/standardfeeds/top_rated?start-index=26&amp;max-results=25'/><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>155</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='W/&quot;Dk4FRX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:9bZkp7q19f0</id><published>2012-07-15T07:46:32.000Z</published><updated>2013-06-27T01:01: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'/><title>PSY - 
GANGNAM STYLE (강남스타일) M/V</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/9bZkp7q19f0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=9bZkp7q19f0&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='appli
 cation/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=9bZkp7q19f0'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/rDkAvwZum-UTjHmzDI2iIw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0'/><author><name>officialpsy</name><uri>https://gdata.youtube.com/feeds/api/users/officialpsy</uri><yt:userId>rDkAvwZum-UTjHmzDI2iIw</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderated'/><yt:acces
 sControl 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='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/comments' 
countHint='6079494'/></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='https://www.youtube.com/v/9bZkp7q19f0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='253' 
yt:format='5'/><media:content 
url='rtsp://v6.cache3.c.youtube.com/CkcLENy73wIaPgn99bW6p2S29RMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0
 D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' 
duration='253' yt:format='1'/><media:content 
url='rtsp://v6.cache3.c.youtube.com/CkcLENy73wIaPgn99bW6p2S29RMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='253' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='officialpsy' 
yt:type='partner'>officialpsy</media:credit><media:description type='plain'>PSY - Gangnam Style (강남스타일) 
+< ▶ NOW available on iTunes: http://Smarturl.it/psygangnam
+< ▶ Official PSY Online Store US &amp; International : http://psy.shop.bravadousa.com/
+< ▶ About PSY from YG Ent.: http://smarturl.it/YGfamilyAboutPSY
+< ▶ PSY's Products on eBay: http://stores.ebay.com/ygentertainment
+< ▶ YG-eShop: http://www.ygeshop.com
+<  
+< ===============================
+< PSY CONCERT "HAPPENING"
+< 2013.4.13. SAT 6:30PM
+< THE SEOUL WORLD CUP STADIUM
+< YouTube LIVE@ http://www.youtube.com/officialpsy
+< Tickets: http://smarturl.it/PsyHappeningKor
+< English Booking: http://smarturl.it/PsyHappeningEng
+< ===============================
+< 
+< For More Information @
+< http://www.facebook.com/officialpsy
+< http://twitter.com/psy_oppa
+< http://twitter.com/ygent_official
+< http://me2day.net/psyfive
+< http://www.psypark.com
+< App Store: http://goo.gl/l9TU6
+< Google Play: http://goo.gl/UiEn1
+< 
+< © YG Entertainment Inc. All rights reserved.</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=9bZkp7q19f0&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/9bZkp7q19f0/default.jpg' height='90' width='120' time='00:02:06.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/9bZkp7q19f0/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/9bZkp7q19f0/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/9bZkp7q19f0/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/9bZkp7q19f0/1.jpg' height='90' width='120' 
time='00:01:03.250' yt:name='start'/><media:thumbnail url=
 'https://i1.ytimg.com/vi/9bZkp7q19f0/2.jpg' height='90' width='120' time='00:02:06.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/9bZkp7q19f0/3.jpg' height='90' width='120' 
time='00:03:09.750' yt:name='end'/><media:title type='plain'>PSY - GANGNAM STYLE (강남스타일) 
M/V</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='253'/><yt:uploaded>2012-07-15T07:46:32.000Z</yt:uploaded><yt:uploaderId>UCrDkAvwZum-UTjHmzDI2iIw</yt:uploaderId><yt:videoid>9bZkp7q19f0</yt:videoid></media:group><gd:rating
 average='4.6144605' max='5' min='1' numRaters='8478117' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='1669725106'/><yt:rating numDislikes='817162' numLikes='7660955'/></entry><entry 
gd:etag='W/&quot;Dk8CQ347eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:ASO_zypdnsQ</id><published>2013-04-13T11:59:04.000Z</published><updated>2013-06-27T01:01:02.000Z</updated><category
 scheme='http://s
 chemas.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'/><title>PSY - 
GENTLEMAN M/V</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/ASO_zypdnsQ?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=ASO_zypdnsQ&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api
 /videos/ASO_zypdnsQ/complaints'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=ASO_zypdnsQ'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/rDkAvwZum-UTjHmzDI2iIw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ'/><author><name>officialpsy</name><uri>https://gdata.youtube.com/feeds/api/users/officialpsy</uri><yt:userId>rDkAvwZum-UTjHmzDI2iIw</yt:userId></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:accessCon
 trol 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='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ/comments' 
countHint='1202763'/></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='https://www.youtube.com/v/ASO_zypdnsQ?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='234' 
yt:format='5'/><media:content 
url='rtsp://v5.cache2.c.youtube.com/CkcLENy73wIaPgnEnl0qz78jARMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3
 gpp' medium='video' expression='full' duration='234' yt:format='1'/><media:content 
url='rtsp://v5.cache2.c.youtube.com/CkcLENy73wIaPgnEnl0qz78jARMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='234' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='officialpsy' 
yt:type='partner'>officialpsy</media:credit><media:description type='plain'>▶ NOW available on iTunes: 
http://smarturl.it/PsyGentlemaniT
+< ▶ Official PSY Online Store US &amp; International : http://psy.shop.bravadousa.com/
+< ▶ About PSY from YG Ent.: http://smarturl.it/YGfamilyAboutPSY
+< ▶ PSY's Products on eBay: http://stores.ebay.com/ygentertainment
+< ▶ YG-eShop: http://www.ygeshop.com
+<  
+< For More Information @
+< http://www.facebook.com/officialpsy
+< http://twitter.com/psy_oppa
+< http://twitter.com/ygent_official
+< http://me2day.net/psyfive
+< http://www.psypark.com
+< App Store: http://goo.gl/l9TU6
+< Google Play: http://goo.gl/UiEn1
+< 
+< © YG Entertainment Inc. All rights reserved.</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=ASO_zypdnsQ&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/ASO_zypdnsQ/default.jpg' height='90' width='120' time='00:01:57' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/ASO_zypdnsQ/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/ASO_zypdnsQ/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/ASO_zypdnsQ/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/ASO_zypdnsQ/1.jpg' height='90' width='120' 
time='00:00:58.500' yt:name='start'/><media:thumbnail url='htt
 ps://i1.ytimg.com/vi/ASO_zypdnsQ/2.jpg' height='90' width='120' time='00:01:57' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/ASO_zypdnsQ/3.jpg' height='90' width='120' 
time='00:02:55.500' yt:name='end'/><media:title type='plain'>PSY - GENTLEMAN 
M/V</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='234'/><yt:uploaded>2013-04-13T11:59:04.000Z</yt:uploaded><yt:uploaderId>UCrDkAvwZum-UTjHmzDI2iIw</yt:uploaderId><yt:videoid>ASO_zypdnsQ</yt:videoid></media:group><gd:rating
 average='4.3725' max='5' min='1' numRaters='2930384' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='447783403'/><yt:rating numDislikes='459704' numLikes='2470680'/></entry><entry 
gd:etag='W/&quot;Dk8CSH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:QK8mJJJvaes</id><published>2012-08-29T15:53:50.000Z</published><updated>2013-06-27T01:01:09.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' ter
 m='http://gdata.youtube.com/schemas/2007#video'/><category 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Music' label='Music'/><title>MACKLEMORE 
&amp; RYAN LEWIS - THRIFT SHOP FEAT. WANZ (OFFICIAL VIDEO)</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/QK8mJJJvaes?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=QK8mJJJvaes&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtu
 be.com/feeds/api/videos/QK8mJJJvaes/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=QK8mJJJvaes'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/XYRdIXDdeZIf816EWAr5zQ'/><link rel='self' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes'/><author><name>Ryan 
Lewis</name><uri>https://gdata.youtube.com/feeds/api/users/RyanLewisProductions</uri><yt:userId>XYRdIXDdeZIf816EWAr5zQ</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes/comments' 
countHint='389709'/></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='https://www.youtube.com/v/QK8mJJJvaes?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='233' 
yt:format='5'/><media:content 
url='rtsp://r1---sn-aig7kned.c.youtube.com/CkcLENy73wIaPgnraW-SJCavQBMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/
 0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='233' 
yt:format='1'/><media:content 
url='rtsp://r1---sn-aig7kned.c.youtube.com/CkcLENy73wIaPgnraW-SJCavQBMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='233' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='Ryan Lewis' 
yt:type='partner'>ryanlewisproductions</media:credit><media:description type='plain'>Thrift Shop on iTunes: 
http://itunes.apple.com/us/album/thrift-shop-feat.-wanz-single/id556955707
+< The Heist physical deluxe edition: http://www.macklemoremerch.com
+< The Heist digital deluxe on iTunes: 
http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=560097651
+< The Heist on Amazon: http://amzn.com/B00908DDZM
+< The Heist in-stores NOW!
+< 
+< Credits:
+< 
+< VIDEO
+< 
+< Directed By Jon Jon Augustavo, Ryan Lewis, Ben Haggerty
+< Produced By Hollis Wong-Wear, Tricia Davis, Zach Quillen
+< Lead Grip: David Herberg
+< Grip Assistants: Josh Marten, Jay Neilson
+< Stylists: Annie Murphy, Alex Nordstrom
+< 
+< MUSIC
+< 
+< Written by Ben Haggerty
+< Produced by Ryan Lewis
+< Featuring Wanz
+< Additional vocals by Brooklyn Grinnell
+< Scratches by DV One
+< 
+< SPECIAL THANKS TO
+< 
+< Goodwill Outlet
+< Value Village Capitol Hill
+< Red Light Vintage
+< Fremont Vintage Mall
+< Unicorn/Narwhal
+< Northwest African American Museum
+< 
+< Sara Stapleton, JR Ewing and Inner City Empire, Faisal Jaswal, Clay Davis
+< 
+< http://www.macklemore.com
+< http://www.twitter.com/macklemore
+< http://www.twitter.com/ryanlewis
+< http://www.facebook.com/macklemore
+< http://www.facebook.com/ryanlewisproductions</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=QK8mJJJvaes&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/QK8mJJJvaes/default.jpg' height='90' width='120' time='00:01:56.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/QK8mJJJvaes/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/QK8mJJJvaes/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/QK8mJJJvaes/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/QK8mJJJvaes/1.jpg' height='90' width='120' 
time='00:00:58.250' yt:name='start'/><media:thumbnail url='
 https://i1.ytimg.com/vi/QK8mJJJvaes/2.jpg' height='90' width='120' time='00:01:56.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/QK8mJJJvaes/3.jpg' height='90' width='120' 
time='00:02:54.750' yt:name='end'/><media:title type='plain'>MACKLEMORE &amp; RYAN LEWIS - THRIFT SHOP FEAT. 
WANZ (OFFICIAL VIDEO)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='233'/><yt:uploaded>2012-08-29T15:53:50.000Z</yt:uploaded><yt:uploaderId>UCXYRdIXDdeZIf816EWAr5zQ</yt:uploaderId><yt:videoid>QK8mJJJvaes</yt:videoid></media:group><gd:rating
 average='4.8576236' max='5' min='1' numRaters='1945239' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='354260538'/><yt:rating numDislikes='69239' numLikes='1876000'/></entry><entry 
gd:etag='W/&quot;Dk8NRH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:8UVNT4wvIGY</id><published>2011-07-05T20:58:17.000Z</published><updated>2013-06-27T01:01: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='Music' label='Music'/><title>Gotye - 
Somebody That I Used To Know (feat. Kimbra) - official video</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/8UVNT4wvIGY?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=8UVNT4wvIGY&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complai
 nts' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=8UVNT4wvIGY'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/FC9LamNMmLioW643VZ40OA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY'/><author><name>gotyemusic</name><uri>https://gdata.youtube.com/feeds/api/users/gotyemusic</uri><yt:userId>FC9LamNMmLioW643VZ40OA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderat
 ed'/><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='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/comments' 
countHint='524835'/></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='https://www.youtube.com/v/8UVNT4wvIGY?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='245' 
yt:format='5'/><media:content 
url='rtsp://v4.cache6.c.youtube.com/CkcLENy73wIaPglmIC-MT01F8RMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB
 _5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' 
duration='245' yt:format='1'/><media:content 
url='rtsp://v4.cache6.c.youtube.com/CkcLENy73wIaPglmIC-MT01F8RMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='245' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='gotyemusic' 
yt:type='partner'>gotyemusic</media:credit><media:description type='plain'>Film clip for the Gotye song 
Somebody That I Used To Know, featuring Kimbra from the album Making Mirrors. 
+< Buy Somebody That I Used To Know here: http://www.smarturl.it/gotyesomebody
+< Buy Making Mirrors here http://www.smarturl.it/gotye 
+< http://www.gotye.com/
+< http://www.facebook.com/gotye/
+< http://www.twitter.com/gotye/
+< 
+< **********************************************
+< Somebody That I Used To Know lyrics
+< 
+< Now and then I think of when we were together
+< Like when you said you felt so happy you could die
+< Told myself that you were right for me
+< But felt so lonely in your company
+< But that was love and it's an ache I still remember
+< 
+< You can get addicted to a certain kind of sadness
+< Like resignation to the end
+< Always the end
+< So when we found that we could not make sense
+< Well you said that we would still be friends
+< But I'll admit that I was glad that it was over
+< 
+< But you didn't have to cut me off
+< Make out like it never happened
+< And that we were nothing
+< And I don't even need your love
+< But you treat me like a stranger
+< And that feels so rough
+< You didn't have to stoop so low
+< Have your friends collect your records
+< And then change your number
+< I guess that I don't need that though
+< Now you're just somebody that I used to know
+< 
+< Now and then I think of all the times you screwed me over
+< But had me believing it was always something that I'd done
+< And I don't wanna live that way
+< Reading into every word you say
+< You said that you could let it go 
+< And I wouldn't catch you hung up on somebody that you used to know...
+< 
+< But you didn't have to cut me off
+< Make out like it never happened
+< And that we were nothing
+< And I don't even need your love
+< But you treat me like a stranger
+< And that feels so rough
+< You didn't have to stoop so low
+< Have your friends collect your records
+< And then change your number
+< I guess that I don't need that though
+< Now you're just somebody that I used to know
+< 
+< I used to know
+< That I used to know
+< 
+< Somebody...
+< *************
+< 
+< Video credits:
+< Directed, produced and edited by Natasha Pincus
+< Body art by Emma Hack
+< Cinematographer and colourist: Warwick Field
+< Scenic artist: Howard Clark
+< Key grip: Rob Hansford
+< Assistants: Rose Cidoni, Claire Leighton, Rob Murray
+< Original artwork by Frank De Backer
+< 
+< Music credits:
+< Produced by Wally De Backer
+< Mixed by Francois Tetaz, assisted by Wally at Moose Mastering, Richmond, VIC
+< Bass recorded by Wally in Lucas Taranto's loungeroom, Melbourne, VIC
+< All other sounds put together by Wally in The Barn, Merricks, VIC
+< 
+< Bass guitar: Lucas Taranto
+< Lead and backing vocals: Kimbra
+< Guitar, flutes, percussion and synth samples, lead and backing vocals: Wally
+< 
+< Contains a sample of the recording Seville as performed by Luiz Bonfa. Courtesy of Geffen Records, under 
license from Universal Music Enterprises.  Used by permission. All rights reserved.  Written by Luiz Bonfa 
and published by Sasqua Music. Used by permission.</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=8UVNT4wvIGY&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/8UVNT4wvIGY/default.jpg' height='90' width='120' time='00:02:02.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/8UVNT4wvIGY/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/8UVNT4wvIGY/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/8UV
 NT4wvIGY/sddefault.jpg' height='480' width='640' yt:name='sddefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/8UVNT4wvIGY/1.jpg' height='90' width='120' time='00:01:01.250' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/8UVNT4wvIGY/2.jpg' height='90' width='120' 
time='00:02:02.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/8UVNT4wvIGY/3.jpg' 
height='90' width='120' time='00:03:03.750' yt:name='end'/><media:title type='plain'>Gotye - Somebody That I 
Used To Know (feat. Kimbra) - official 
video</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='245'/><yt:uploaded>2011-07-05T20:58:17.000Z</yt:uploaded><yt:uploaderId>UCFC9LamNMmLioW643VZ40OA</yt:uploaderId><yt:videoid>8UVNT4wvIGY</yt:videoid></media:group><gd:rating
 average='4.8432045' max='5' min='1' numRaters='1873954' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='412724341'/><yt:rating numDislikes='73457' numLi
 kes='1800497'/></entry><entry 
gd:etag='W/&quot;Dk8MRX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:KQ6zr6kCPj8</id><published>2011-03-09T05:30:54.000Z</published><updated>2013-06-27T01:01:24.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>LMFAO - 
Party Rock Anthem ft. Lauren Bennett, GoonRock</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/KQ6zr6kCPj8?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=KQ6zr6kCPj8&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#v
 ideo.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/k78ZcA6kflEvBR0UrGDH0Q'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8'/><author><name>LMFAOVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/LMFAOVEVO</uri><yt:userId>k78ZcA
 6kflEvBR0UrGDH0Q</yt:userId></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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/comments' 
countHint='748770'/></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='https://www.youtube.com/v/KQ6zr6kCPj8?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application
 /x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='376' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='LMFAOVEVO' 
yt:type='partner'>lmfaovevo</media:credit><media:description type='plain'>Buy now http://glnk.it/6t
+< Music video by LMFAO performing Party Rock Anthem featuring Lauren Bennett and GoonRock. (c) 2011 
Interscope
+< #VEVOCertified on July 1, 2011. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=KQ6zr6kCPj8&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/default.jpg' height='90' width='120' time='00:03:08' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/1.jpg' height='90' width='120' 
time='00:
 01:34' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/2.jpg' height='90' 
width='120' time='00:03:08' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/3.jpg' height='90' width='120' time='00:04:42' 
yt:name='end'/><media:title type='plain'>LMFAO - Party Rock Anthem ft. Lauren Bennett, 
GoonRock</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='376'/><yt:uploaded>2011-03-09T05:30:54.000Z</yt:uploaded><yt:uploaderId>UCk78ZcA6kflEvBR0UrGDH0Q</yt:uploaderId><yt:videoid>KQ6zr6kCPj8</yt:videoid></media:group><gd:rating
 average='4.838746' max='5' min='1' numRaters='1863271' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='549263247'/><yt:rating numDislikes='75115' numLikes='1788156'/></entry><entry 
gd:etag='W/&quot;Dk4GQH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:kffacxfA7G4</id><published>2010-02-19T08:11:38.000Z</published><updated>2013-06-27T01
 :02:01.000Z</updated><app:control><yt:state name='restricted' reasonCode='limitedSyndication'>Syndication of 
this video was restricted.</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='Music' label='Music'/><title>Justin 
Bieber - Baby ft. Ludacris</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/kffacxfA7G4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=kffacxfA7G4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='h
 ttps://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hkj014U2CQ2Nv0UZeYpE_A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4'/><author><name>JustinBieberVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/JustinBieberVEVO</uri><yt:userId>Hkj014U2CQ2Nv0UZeYpE_A</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permiss
 ion='allowed'/><yt:accessControl action='rate' permission='allowed'/><yt:accessControl action='embed' 
permission='allowed'/><yt:accessControl action='list' permission='allowed'/><yt:accessControl 
action='autoPlay' permission='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/comments' 
countHint='9306761'/></gd:comments><media:group><media:category label='Music' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Music</media:category><media:content 
url='https://www.youtube.com/v/kffacxfA7G4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='225' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='JustinBieberVEVO' 
yt:type='partner'>justinbieb
 ervevo</media:credit><media:description type='plain'>Music video by Justin Bieber performing Baby feat. 
Ludacris.
+< #VEVOCertified on April 25, 2010. 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=kffacxfA7G4&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/kffacxfA7G4/default.jpg' height='90' width='120' time='00:01:52.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/kffacxfA7G4/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/1.jpg' height='90' width='120' 
time='00:00:56.250' yt:name='star
 t'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/2.jpg' height='90' width='120' 
time='00:01:52.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/3.jpg' 
height='90' width='120' time='00:02:48.750' yt:name='end'/><media:title type='plain'>Justin Bieber - Baby ft. 
Ludacris</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='225'/><yt:uploaded>2010-02-19T08:11:38.000Z</yt:uploaded><yt:uploaderId>UCHkj014U2CQ2Nv0UZeYpE_A</yt:uploaderId><yt:videoid>kffacxfA7G4</yt:videoid></media:group><gd:rating
 average='2.304344' max='5' min='1' numRaters='5204692' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='868203556'/><yt:rating numDislikes='3507515' numLikes='1697177'/></entry><entry 
gd:etag='W/&quot;Dk8ASX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:fWNaR-rxAic</id><published>2012-03-01T23:21:04.000Z</published><updated>2013-06-27T01:00:48.000Z</updated><app:contr
 ol><yt:state name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>Carly Rae 
Jepsen - Call Me Maybe</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/fWNaR-rxAic?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=fWNaR-rxAic&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/a
 pi/videos/fWNaR-rxAic/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/tKuVNj4wVrZvTfxPxAUHcQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic'/><author><name>CarlyRaeJepsenVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/CarlyRaeJepsenVEVO</uri><yt:userId>tKuVNj4wVrZvTfxPxAUHcQ</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowed'/><yt:accessCon
 trol action='rate' permission='allowed'/><yt:accessControl action='embed' 
permission='allowed'/><yt:accessControl action='list' permission='allowed'/><yt:accessControl 
action='autoPlay' permission='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic/comments' 
countHint='704203'/></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='https://www.youtube.com/v/fWNaR-rxAic?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='200' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='CarlyRaeJepsenVEVO' 
yt:type='partner'>carlyraejepsenvevo</media:cre
 dit><media:description type='plain'>Buy Now!  http://smarturl.it/CallMeMaybe
+< Music video by Carly Rae Jepsen performing Call Me Maybe. (C) 2011 604 Records Inc.
+< #VEVOCertified on June 8, 2012. 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=fWNaR-rxAic&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/fWNaR-rxAic/default.jpg' height='90' width='120' time='00:01:40' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/fWNaR-rxAic/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/1.jpg' height='90' width='120' 
time='00:00:50' yt:name='start'/><media
 :thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/2.jpg' height='90' width='120' time='00:01:40' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/3.jpg' height='90' width='120' 
time='00:02:30' yt:name='end'/><media:title type='plain'>Carly Rae Jepsen - Call Me 
Maybe</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='200'/><yt:uploaded>2012-03-01T23:21:04.000Z</yt:uploaded><yt:uploaderId>UCtKuVNj4wVrZvTfxPxAUHcQ</yt:uploaderId><yt:videoid>fWNaR-rxAic</yt:videoid></media:group><gd:rating
 average='4.712018' max='5' min='1' numRaters='1735538' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='470448119'/><yt:rating numDislikes='124951' numLikes='1610587'/></entry><entry 
gd:etag='W/&quot;Dk8CQn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:QJO3ROT-A4E</id><published>2011-08-19T15:00:00.000Z</published><updated>2013-06-27T01:01:03.000Z</updated><app:control><yt:state
 name='r
 estricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>One 
Direction - What Makes You Beautiful</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/QJO3ROT-A4E?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=QJO3ROT-A4E&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QJ
 O3ROT-A4E/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/bW18JZRgko_mOGm5er8Yzg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E'/><author><name>OneDirectionVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/OneDirectionVEVO</uri><yt:userId>bW18JZRgko_mOGm5er8Yzg</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowed'/><yt:accessControl 
action='rat
 e' permission='allowed'/><yt:accessControl action='embed' permission='allowed'/><yt:accessControl 
action='list' permission='allowed'/><yt:accessControl action='autoPlay' 
permission='denied'/><yt:accessControl action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E/comments' 
countHint='1156223'/></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='https://www.youtube.com/v/QJO3ROT-A4E?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='207' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='OneDirectionVEVO' 
yt:type='partner'>onedirectionvevo</media:credit><media:descript
 ion type='plain'>Click here to purchase the single http://www.smarturl.it/1dwmybitunes
+< 
+< Music video by One Direction performing What Makes You Beautiful. (C) 2011 Simco Limited under exclusive 
license to Sony Music Entertainment UK Limited
+< #VEVOCertified on April 16, 2012. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=QJO3ROT-A4E&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='allow'>SZ SY SX JP SR SV ST SK SJ SI SH SO SN SM SL SC SB SA JO SG SE SD CK CI 
CH CO CN CM CL CC CA CG CF ML CD CZ CY CX CR CW CV CU IM ZA IO IN ZM RW IE ID RS DJ ZW IQ RE IS IR IT BL BM 
BN BO BH BI BJ JE BD BE BF BG BA BB BY BZ BT BV BW BQ BR BS HK HN HM UY QA KP JM HR KW HT HU AE AD AG AF AI 
AM AL AO AQ AS AR AU AT AW KZ AX AZ YE KY PR PS OM PW PT PY PA PF PG PE PK PH PN PL PM TZ NA NC WS NE NF NG 
NI FR NL NO NP WF FJ FK FM FO DZ NZ KI GG GF GE GD GB GA GN GM GL GI GH GW GU GT GS GR GQ GP NR GY ME VI MG 
MF MA MC MM ET MO MN FI MH MK ER MU MT MW MV MQ MP MS MR EE EG MY MX EC MZ DM VA LR VC DK UM YT LB L
 C MD UG UA LK LI LV DO LT LU NU LS VU UZ US LY VN RU TN KR TL TM TJ TK TH TF TG TD TC VE LA KG ES KE TV TW 
TT KH TR KN KM TO IL VG RO EH</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/QJO3ROT-A4E/default.jpg' height='90' width='120' time='00:01:43.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/QJO3ROT-A4E/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/QJO3ROT-A4E/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/QJO3ROT-A4E/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/QJO3ROT-A4E/1.jpg' height='90' width='120' 
time='00:00:51.750' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/QJO3ROT-A4E/2.jpg' 
height='90' width='120' time='00:01:43.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/QJO3ROT-A4E/3.jpg' height='90' width='120' 
 time='00:02:35.250' yt:name='end'/><media:title type='plain'>One Direction - What Makes You 
Beautiful</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='207'/><yt:uploaded>2011-08-19T15:00:00.000Z</yt:uploaded><yt:uploaderId>UCbW18JZRgko_mOGm5er8Yzg</yt:uploaderId><yt:videoid>QJO3ROT-A4E</yt:videoid></media:group><gd:rating
 average='4.569341' max='5' min='1' numRaters='1722226' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='397081262'/><yt:rating numDislikes='185423' numLikes='1536803'/></entry><entry 
gd:etag='W/&quot;Dk8MQn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:rYEDA3JcQqw</id><published>2010-11-30T23:16:19.000Z</published><updated>2013-06-27T01:01:23.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</yt:state></app:control><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.c
 om/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Music' 
label='Music'/><title>Adele - Rolling In The Deep</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/rYEDA3JcQqw?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=rYEDA3JcQqw&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/complaints'/><link rel='http://
 gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/omP_epzeKzvBX156r6pm1Q'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw'/><author><name>AdeleVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/AdeleVEVO</uri><yt:userId>omP_epzeKzvBX156r6pm1Q</yt:userId></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='denied'/><yt:accessControl action='synd
 icate' permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/comments' 
countHint='434025'/></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='https://www.youtube.com/v/rYEDA3JcQqw?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='235' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='AdeleVEVO' 
yt:type='partner'>adelevevo</media:credit><media:description type='plain'>Music video by Adele performing 
Rolling In The Deep. (C) 2010 XL Recordings Ltd.
+< 
+< #VEVOCertified on July 25, 2011. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=rYEDA3JcQqw&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/rYEDA3JcQqw/default.jpg' height='90' width='120' time='00:01:57.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/rYEDA3JcQqw/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/rYEDA3JcQqw/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/rYEDA3JcQqw/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/rYEDA3JcQqw/1.jpg' height='90' width='120' 
time
 ='00:00:58.750' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/rYEDA3JcQqw/2.jpg' 
height='90' width='120' time='00:01:57.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/rYEDA3JcQqw/3.jpg' height='90' width='120' time='00:02:56.250' 
yt:name='end'/><media:title type='plain'>Adele - Rolling In The 
Deep</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='235'/><yt:uploaded>2010-11-30T23:16:19.000Z</yt:uploaded><yt:uploaderId>UComP_epzeKzvBX156r6pm1Q</yt:uploaderId><yt:videoid>rYEDA3JcQqw</yt:videoid></media:group><gd:rating
 average='4.9011893' max='5' min='1' numRaters='1539713' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='412797044'/><yt:rating numDislikes='38035' numLikes='1501678'/></entry><entry 
gd:etag='W/&quot;Dk8NR347eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:j5-yKhDd64s</id><published>2010-06-05T04:41:59.000Z</published><updated>2013-06-27T01:01:36.00
 0Z</updated><app:control><yt:state name='restricted' reasonCode='limitedSyndication'>Syndication of this 
video was restricted.</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='Music' label='Music'/><title>Eminem - Not 
Afraid</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/j5-yKhDd64s?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=j5-yKhDd64s&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.co
 m/feeds/api/videos/j5-yKhDd64s/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/20vb-R_px4CguHzzBPhoyQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s'/><author><name>EminemVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/EminemVEVO</uri><yt:userId>20vb-R_px4CguHzzBPhoyQ</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowed'/><yt:accessControl ac
 tion='rate' permission='allowed'/><yt:accessControl action='embed' permission='allowed'/><yt:accessControl 
action='list' permission='allowed'/><yt:accessControl action='autoPlay' 
permission='denied'/><yt:accessControl action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s/comments' 
countHint='1385502'/></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='https://www.youtube.com/v/j5-yKhDd64s?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='259' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='EminemVEVO' 
yt:type='partner'>eminemvevo</media:credit><media:description
  type='plain'>Music video by Eminem performing Not Afraid. (C) 2010 Aftermath Records
+< #VEVOCertified on September 11, 2010.http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=j5-yKhDd64s&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/j5-yKhDd64s/default.jpg' height='90' width='120' time='00:02:09.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/j5-yKhDd64s/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/j5-yKhDd64s/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/j5-yKhDd64s/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/j5-yKhDd64s/1.jpg' height='90' width='120' 
 time='00:01:04.750' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/j5-yKhDd64s/2.jpg' 
height='90' width='120' time='00:02:09.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/j5-yKhDd64s/3.jpg' height='90' width='120' time='00:03:14.250' 
yt:name='end'/><media:title type='plain'>Eminem - Not 
Afraid</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='259'/><yt:uploaded>2010-06-05T04:41:59.000Z</yt:uploaded><yt:uploaderId>UC20vb-R_px4CguHzzBPhoyQ</yt:uploaderId><yt:videoid>j5-yKhDd64s</yt:videoid></media:group><gd:rating
 average='4.8953757' max='5' min='1' numRaters='1517851' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='417008970'/><yt:rating numDislikes='39701' numLikes='1478150'/></entry><entry 
gd:etag='W/&quot;Dk4ESH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:d9NF2edxy-M</id><published>2012-01-06T06:43:30.000Z</published><updated>2013-06-27T01:01: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='Music' label='Music'/><title>Somebody 
That I Used to Know - Walk off the Earth (Gotye - Cover)</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/d9NF2edxy-M?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='http://gdata.youtube.com/schemas/2007#video.in-response-to' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9DGhAUcr4rQ'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=d9NF2edxy-M&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ra
 tings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=d9NF2edxy-M'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/9PEibgWOqZ-1I1JdxRmr6g'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M'/><author><name>walkofftheearth</name><uri>https://gdata.youtube.com/feeds/api/users/walkofftheearth</uri><yt:userId>9PEibgWOqZ-1I1JdxRmr6g</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/comments' 
countHint='246895'/></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='https://www.youtube.com/v/d9NF2edxy-M?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
type='application/x-shockwave-flash' medium='video
 ' isDefault='true' expression='full' duration='265' yt:format='5'/><media:content 
url='rtsp://v6.cache2.c.youtube.com/CkcLENy73wIaPgnjy3Hn2UXTdxMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='265' yt:format='1'/><media:content 
url='rtsp://v6.cache2.c.youtube.com/CkcLENy73wIaPgnjy3Hn2UXTdxMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='265' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' 
yt:display='walkofftheearth'>walkofftheearth</media:credit><media:description type='plain'>Download our new 
album R.E.V.O. here: http://smarturl.it/revo
+< WOTE merch available here: http://bit.ly/xZolh7
+< 
+< "Somebody That I Used To Know" Mp3 available here: http://bit.ly/xe65hD
+< 
+< WOTE TOUR DATES AND TICKET LINKS:
+< 
+< July 12 -- Vancouver Island, BC http://goo.gl/YzwYN
+< July 13 -- Calgary, AB http://goo.gl/Yaa6R
+< July 17 -- Peterborough, ON http://goo.gl/NJc1o
+< July 21 -- Chicago, IL http://goo.gl/NlfcD
+< August 3 -- Philadelphia, PA http://goo.gl/t9b4Z
+< August 10 -- Boston, MA http://goo.gl/KqkUv
+< August 17 -- Detroit, MI http://goo.gl/EVQMw
+< 
+< Walk off the Earth performs a cover of Gotye's "Somebody That I Used to Know" using five people on one 
guitar. 
+< 
+< We would like to thank Gotye and Kimbra for writing such a beautiful song. If you aren't familiar with 
their music, go and check them out right now!
+< 
+< Please help us share this by posting it on your Facebook and Twitter.
+< We will love you for eva and eva!
+< 
+< If you enjoyed this video then....
+< 
+< Hit the "Like" button
+< Add it to your Favorites
+< and of course subscribe to our channel if you haven't already!
+< 
+< Check out WOTE on Facebook: http://www.facebook.com/walkofftheearth
+< 
+< Follow us on Twitter: http://www.twitter.com/walkofftheearth
+< 
+< Subscribe to Gianni and Sarah's blog/music Channel: http://www.youtube.com/gianniandsarahmusic
+< 
+< Special thanks to Guilly for helping us with this video.
+< 
+< Performers from left to right:
+< Joel Cassady 
+< Sarah Blackwood
+< Gianni Luminati
+< Marshall
+< Taylor
+< 
+< Extra Tags:
+< Walk off the earth
+< wote
+< 2 guys 1 guitar
+< 3 guys 1 guitar
+< 4 guys 1 guitar
+< 5 guys 1 guitar
+< gianni luminati
+< gianni nicassio
+< sarah blackwood
+< gianni and sarah
+< marshall
+< walk off the earth</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=d9NF2edxy-M&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/d9NF2edxy-M/default.jpg' height='90' width='120' time='00:02:12.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/d9NF2edxy-M/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/d9NF2edxy-M/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/d9NF2edxy-M/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/d9NF2edxy-M/1.jpg' height='90' width='120' 
time='00:01:06.250' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/d9
 NF2edxy-M/2.jpg' height='90' width='120' time='00:02:12.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/d9NF2edxy-M/3.jpg' height='90' width='120' time='00:03:18.750' 
yt:name='end'/><media:title type='plain'>Somebody That I Used to Know - Walk off the Earth (Gotye - 
Cover)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='265'/><yt:uploaded>2012-01-06T06:43:30.000Z</yt:uploaded><yt:uploaderId>UC9PEibgWOqZ-1I1JdxRmr6g</yt:uploaderId><yt:videoid>d9NF2edxy-M</yt:videoid></media:group><gd:rating
 average='4.9550476' max='5' min='1' numRaters='1420885' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='151407628'/><yt:rating numDislikes='15968' numLikes='1404917'/></entry><entry 
gd:etag='W/&quot;Dk8BQn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:uelHwf8o7_U</id><published>2010-08-05T18:30:09.000Z</published><updated>2013-06-27T01:00:53.000Z</updated><app:control><yt:state
 name='re
 stricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>Eminem - 
Love The Way You Lie ft. Rihanna</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/uelHwf8o7_U?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=uelHwf8o7_U&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/ue
 lHwf8o7_U/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/20vb-R_px4CguHzzBPhoyQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U'/><author><name>EminemVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/EminemVEVO</uri><yt:userId>20vb-R_px4CguHzzBPhoyQ</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowed'/><yt:accessControl 
action='rate' permissio
 n='allowed'/><yt:accessControl action='embed' permission='allowed'/><yt:accessControl action='list' 
permission='allowed'/><yt:accessControl action='autoPlay' permission='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U/comments' 
countHint='761663'/></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='https://www.youtube.com/v/uelHwf8o7_U?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='268' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='EminemVEVO' 
yt:type='partner'>eminemvevo</media:credit><media:description type='plain'>Music vi
 deo by Eminem performing Love The Way You Lie. © 2010 Aftermath Records
+< #VEVOCertified on September 13, 2011. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=uelHwf8o7_U&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/uelHwf8o7_U/default.jpg' height='90' width='120' time='00:02:14' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/uelHwf8o7_U/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/uelHwf8o7_U/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/uelHwf8o7_U/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/uelHwf8o7_U/1.jpg' height='90' width='120' 
tim
 e='00:01:07' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/uelHwf8o7_U/2.jpg' height='90' 
width='120' time='00:02:14' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/uelHwf8o7_U/3.jpg' height='90' width='120' time='00:03:21' 
yt:name='end'/><media:title type='plain'>Eminem - Love The Way You Lie ft. 
Rihanna</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='268'/><yt:uploaded>2010-08-05T18:30:09.000Z</yt:uploaded><yt:uploaderId>UC20vb-R_px4CguHzzBPhoyQ</yt:uploaderId><yt:videoid>uelHwf8o7_U</yt:videoid></media:group><gd:rating
 average='4.867729' max='5' min='1' numRaters='1446787' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='571281782'/><yt:rating numDislikes='47842' numLikes='1398945'/></entry><entry 
gd:etag='W/&quot;DkAHRX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:Y4MnpzG5Sqc</id><published>2012-03-05T20:13:33.000Z</published><updated>2013-06-27T00:58: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='Nonprofit' label='Nonprofits &amp; 
Activism'/><title>KONY 2012</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/Y4MnpzG5Sqc?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=Y4MnpzG5Sqc&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='applicati
 on/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=Y4MnpzG5Sqc'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/TfiNvrrwuhJjyGuUjH_kEg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc'/><author><name>invisiblechildreninc</name><uri>https://gdata.youtube.com/feeds/api/users/invisiblechildreninc</uri><yt:userId>TfiNvrrwuhJjyGuUjH_kEg</yt:userId></author><yt:accessControl
 action='comment' permission='denied'/><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'/><yt:hd/><media:group><media:category label='Nonprofits &amp; Activism' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Nonprofit</media:category><media:content 
url='https://www.youtube.com/v/Y4MnpzG5Sqc?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='1799' 
yt:format='5'/><media:content 
url='rtsp://v7.cache7.c.youtube.com/CkcLENy73wIaPgmnSrkxpyeDYxMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
type='video/3gpp' medium='video' expression='full' duration='1799' yt:format='1'/><media:content url='rts
 
p://v7.cache7.c.youtube.com/CkcLENy73wIaPgmnSrkxpyeDYxMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='1799' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' 
yt:display='invisiblechildreninc'>invisiblechildreninc</media:credit><media:description type='plain'>To learn 
more about our work: http://spr.ly/pp_5
+< To become a member of Fourth Estate: http://spr.ly/pp_4E5
+< 
+< To see real time reports on LRA activity in the D.R.Congo, Central African Republic and South Sudan visit: 
http://www.lracrisistracker.com/
+< 
+< To learn more about Invisible Children's recovery efforts in the post-conflict regions of northern Uganda 
AND our work with communities currently affected in D.R.Congo, Central African Republic and South Sudan 
visit: http://www.invisiblechildren.com/programs.html
+< 
+< To view our responses to common questions we receive about the KONY 2012 film and campaign visit: 
+< http://invisiblechildren.com/about/q-and-a/
+< 
+< To see our worldwide youth mobilization initiatives:
+< http://invisiblechildren.com/program/international-events/
+< 
+< Learn More:  http://kony2012.com
+< Donate to Invisible Children: https://stayclassy.org/checkout/set-donation?eid=14711
+< 
+< For official MEDIA and artist REPRESENTATION ONLY: pr invisiblechildren com
+< 
+< DIRECTOR: Jason Russell LEAD EDITOR: Kathryn Lang EDITORS: Kevin Trout, Jay Salbert, Jesse Eslinger LEAD 
ANIMATOR: Chad Clendinen ANIMATOR: Jesse Eslinger 3-D MODELING: Victor Soto VISUAL EFFECTS: Chris Hop 
WRITERS: Jason Russell, Jedidiah Jenkins, Kathryn Lang, Danica Russell, Ben Keesey, Azy Groth PRODUCERS: 
Kimmy Vandivort, Heather Longerbeam, Chad Clendinen, Noelle Jouglet ORIGINAL SCORES: Joel P. West SOUND MIX: 
Stephen Grubbs, Mark Friedgen, Smart Post Sound COLOR: Damian Pelphrey, Company 3 CINEMATOGRAPHY: Jason 
Russell, Bobby Bailey, Laren Poole, Gavin Kelly, Chad Clendinen, Kevin Trout, Jay Salbert, Shannon Lynch, 
Mariana Blanco, Laurence Vannicelli PRODUCTION ASSISTANT: Jaime Landsverk LEAD DESIGNER: Tyler Fordham 
DESIGNERS: Chadwick Gantes, Stephen Witmer
+< 
+< MUSIC CREDIT:
+< "02 Ghosts I"
+< Performed by Nine Inch Nails
+< Written by Atticus Ross and Trent Reznor
+< Produced by Alan Moulder, Atticus Ross, and Trent Reznor
+< Nine Inch Nails appear courtesy of The Null Corporation
+< 
+< "Punching in a Dream"
+< Performed by The Naked and Famous
+< Written by Aaron Short, Alisa Xayalith, and Thom Powers
+< Produced by Thom Powers
+< The Naked and Famous appear courtesy of Somewhat Damaged and Universal Republic
+< 
+< "Arrival of the Birds"
+< Performed by The Cinematic Orchestra
+< Written by The Cinematic Orchestra
+< Produced by The Cinematic Orchestra
+< The Cinematic Orchestra appears courtesy of Disney Records
+< 
+< "Roll Away Your Stone"
+< Performed by Mumford and Sons
+< Written by Benjamin Lovett, Edward Dwane, Marcus Mumford, and Winston Marshall
+< Produced by Markus Dravs
+< Mumford and Sons appear courtesy of Glassnote Entertainment Group LLC
+< 
+< "On (Instrumental)"
+< Performed by Bloc Party
+< Written by Bloc Party
+< Produced by Jacknife Lee
+< Bloc Party appears courtesy of Vice Records
+< 
+< "A Dream within a Dream"
+< Performed by The Glitch Mob
+< The Glitch Mob appears courtesy of Glass Air
+< 
+< "I Can't Stop"
+< Performed by Flux Pavilion
+< Flux Pavilion appears courtesy of Circus Records Limited
+< 
+< This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License: 
http://creativecommons.org/licenses/by-nc-nd/3.0/</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=Y4MnpzG5Sqc&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/default.jpg' height='90' width='120' time='00:14:59.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/1.jpg' height='90' width='120' 
time='00:07:29.750' yt:nam
 e='start'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/2.jpg' height='90' width='120' 
time='00:14:59.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/3.jpg' 
height='90' width='120' time='00:22:29.250' yt:name='end'/><media:title type='plain'>KONY 
2012</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='1799'/><yt:uploaded>2012-03-05T20:13:33.000Z</yt:uploaded><yt:uploaderId>UCTfiNvrrwuhJjyGuUjH_kEg</yt:uploaderId><yt:videoid>Y4MnpzG5Sqc</yt:videoid></media:group><gd:rating
 average='4.5237823' max='5' min='1' numRaters='1586358' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='97855234'/><yt:rating numDislikes='188863' numLikes='1397495'/></entry><entry 
gd:etag='W/&quot;DkIMSX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:fLexgOxsZu0</id><published>2011-04-15T22:03:14.000Z</published><updated>2013-06-27T00:56:28.000Z</updated><app:control><yt:state
 name
 ='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>Bruno Mars - 
The Lazy Song [OFFICIAL VIDEO]</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/fLexgOxsZu0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=fLexgOxsZu0&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/vid
 eos/fLexgOxsZu0/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/oUM-UJ7rirJYP8CQ0EIaHA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0'/><author><name>Bruno 
Mars</name><uri>https://gdata.youtube.com/feeds/api/users/ElektraRecords</uri><yt:userId>oUM-UJ7rirJYP8CQ0EIaHA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderated'/><yt:accessControl 
action='rat
 e' 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='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0/comments' 
countHint='524936'/></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='https://www.youtube.com/v/fLexgOxsZu0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='209' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='Bruno Mars' 
yt:type='partner'>elektrarecords</media:credit><media:description type=
 'plain'>Available now on iTunes! http://smarturl.it/Doo-Wops
+< 'Unorthodox Jukebox' available now on iTunes! http://www.smarturl.it/unorthodoxjukebox
+< 
+< © 2011 WMG. The official music video for 'The Lazy Song' by Bruno Mars from doo-wops and hooligans - 
available now on Elektra Records!
+< 
+< Directed by Bruno Mars and Cameron Duddy
+< Choreographed and Performed by Poreotics: http://poreotics.com
+< 
+< http://brunomars.com 
+< http://facebook.com/thatbrunomars
+< http://twitter.com/brunomars
+< 
+< LYRICS
+< Today I don't feel like doing anything
+< I just wanna lay in my bed
+< Don't feel like picking up my phone
+< So leave a message at the tone
+< 'Cause today I swear I'm not doing anything.
+< 
+< Uh!
+< I'm gonna kick my feet up
+< Then stare at the fan
+< Turn the TV on, throw my hand in my pants
+< Nobody's gonna tell me I can't
+< 
+< I'll be lounging on the couch,
+< Just chillin' in my snuggie
+< Click to MTV, so they can teach me how to dougie
+< 'Cause in my castle I'm the freaking man
+< 
+< Oh, yes I said it
+< I said it
+< I said it 'cause I can
+< 
+< Today I don't feel like doing anything
+< I just wanna lay in my bed
+< Don't feel like picking up my phone
+< So leave a message at the tone
+< 'Cause today I swear I'm not doing anything
+< 
+< Nothing at all!
+< Ooh, hoo, ooh, hoo, ooh, ooh-ooh
+< Nothing at all
+< Ooh, hoo, ooh, hoo, ooh, ooh-ooh
+< 
+< Tomorrow I'll wake up, do some P90X
+< Meet a really nice girl, have some really nice sex
+< And she's gonna scream out: 'This is Great' (Oh my God, this is great)
+< Yeah
+< 
+< I might mess around, get my college degree
+< I bet my old man will be so proud of me
+< But sorry pops, you'll just have to wait
+< Haha
+< 
+< Oh, yes I said it
+< I said it
+< I said it 'cause I can
+< 
+< Today I don't feel like doing anything
+< I just wanna lay in my bed
+< Don't feel like picking up my phone
+< So leave a message at the tone
+< 'Cause today I swear I'm not doing anything
+< 
+< No, I ain't gonna comb my hair
+< 'Cause I ain't going anywhere
+< No, no, no, no, no, no, no, no, no
+< I'll just strut in my birthday suit
+< And let everything hang loose
+< Yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah
+< 
+< Ooh
+< Today I don't feel like doing anything
+< I just wanna lay in my bed
+< Don't feel like picking up my phone
+< So leave a message at the tone
+< 'Cause today I swear I'm not doing anything
+< 
+< Nothing at all
+< Nothing at all
+< Nothing at all
+< 
+< Comic Chimp Mask used by permission of Easter Unlimited, Inc. / FunWorld Div. All Rights Reserved. 
Copyright 2009.</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=fLexgOxsZu0&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/fLexgOxsZu0/default.jpg' height='90' width='120' time='00:01:44.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/fLexgOxsZu0/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/fLexgOxsZu0/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/fLexgOxsZu0/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/fLexgOxsZu0/1.jpg' height='90' w
 idth='120' time='00:00:52.250' yt:name='start'/><media:thumbnail 
url='https://i1.ytimg.com/vi/fLexgOxsZu0/2.jpg' height='90' width='120' time='00:01:44.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/fLexgOxsZu0/3.jpg' height='90' width='120' 
time='00:02:36.750' yt:name='end'/><media:title type='plain'>Bruno Mars - The Lazy Song [OFFICIAL 
VIDEO]</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='209'/><yt:uploaded>2011-04-15T22:03:14.000Z</yt:uploaded><yt:uploaderId>UCoUM-UJ7rirJYP8CQ0EIaHA</yt:uploaderId><yt:videoid>fLexgOxsZu0</yt:videoid></media:group><gd:rating
 average='4.8599844' max='5' min='1' numRaters='1341908' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='400267498'/><yt:rating numDislikes='46972' numLikes='1294936'/></entry><entry 
gd:etag='W/&quot;Dk8DRX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:Ys7-6_t7OEQ</id><published>2012-10-12T15:55:06.000Z</published>
 <updated>2013-06-27T01:01:14.000Z</updated><app:control><yt:state name='restricted' 
reasonCode='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>Justin 
Bieber - Beauty And A Beat ft. Nicki Minaj</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/Ys7-6_t7OEQ?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=Ys7-6_t7OEQ&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.rating
 s' type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hkj014U2CQ2Nv0UZeYpE_A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ'/><author><name>JustinBieberVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/JustinBieberVEVO</uri><yt:userId>Hkj014U2CQ2Nv0UZeYpE_A</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' permission='allowed'/><yt:acces
 sControl 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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/comments' 
countHint='583797'/></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='https://www.youtube.com/v/Ys7-6_t7OEQ?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='294' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='J
 ustinBieberVEVO' yt:type='partner'>justinbiebervevo</media:credit><media:description type='plain'>Music 
video by Justin Bieber performing Beauty And A Beat. ©:  The Island Def Jam Music 
Group</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=Ys7-6_t7OEQ&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/default.jpg' height='90' width='120' time='00:02:27' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/sddefault.jpg' height='480' width='640' yt:name='sddefault'/><media
 :thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/1.jpg' height='90' width='120' time='00:01:13.500' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/2.jpg' height='90' width='120' 
time='00:02:27' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/3.jpg' 
height='90' width='120' time='00:03:40.500' yt:name='end'/><media:title type='plain'>Justin Bieber - Beauty 
And A Beat ft. Nicki Minaj</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='294'/><yt:uploaded>2012-10-12T15:55:06.000Z</yt:uploaded><yt:uploaderId>UCHkj014U2CQ2Nv0UZeYpE_A</yt:uploaderId><yt:videoid>Ys7-6_t7OEQ</yt:videoid></media:group><gd:rating
 average='4.1822934' max='5' min='1' numRaters='1541277' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='257637939'/><yt:rating numDislikes='315078' numLikes='1226199'/></entry><entry 
gd:etag='W/&quot;Dk8GRH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com
 
,2008:video:AbPED9bisSc</id><published>2012-09-20T17:04:23.000Z</published><updated>2013-06-27T01:00:25.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>One 
Direction - Live While We're Young</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/AbPED9bisSc?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=AbPED9bisSc&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/responses
 '/><link rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/bW18JZRgko_mOGm5er8Yzg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc'/><author><name>OneDirectionVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/OneDirectionVEVO</uri><yt:userId>bW18JZRgko_mOGm5er8Yzg</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:ac
 cessControl 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='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/comments' 
countHint='651427'/></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='https://www.youtube.com/v/AbPED9bisSc?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='198' 
yt:format='5'/>
 <media:credit role='uploader' scheme='urn:youtube' yt:display='OneDirectionVEVO' 
yt:type='partner'>onedirectionvevo</media:credit><media:description type='plain'>TAKE ME HOME The brand new 
album out now!
+< Featuring Live While We're Young and Little Things.
+< iTunes: http://smarturl.it/takemehome1D
+< Amazon: http://amzn.to/OXqkoD
+< Official Store: http://myplay.me/vxl
+< 
+< 
+< Music video by One Direction performing Live While We're Young. (C) 2012 Simco Limited under exclusive 
license to Sony Music Entertainment UK Limited</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=AbPED9bisSc&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/AbPED9bisSc/default.jpg' height='90' width='120' time='00:01:39' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/AbPED9bisSc/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/AbPED9bisSc/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/AbPED9bisSc/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/A
 bPED9bisSc/1.jpg' height='90' width='120' time='00:00:49.500' yt:name='start'/><media:thumbnail 
url='https://i1.ytimg.com/vi/AbPED9bisSc/2.jpg' height='90' width='120' time='00:01:39' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/AbPED9bisSc/3.jpg' height='90' width='120' 
time='00:02:28.500' yt:name='end'/><media:title type='plain'>One Direction - Live While We're 
Young</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='198'/><yt:uploaded>2012-09-20T17:04:23.000Z</yt:uploaded><yt:uploaderId>UCbW18JZRgko_mOGm5er8Yzg</yt:uploaderId><yt:videoid>AbPED9bisSc</yt:videoid></media:group><gd:rating
 average='4.7382474' max='5' min='1' numRaters='1303368' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='216674543'/><yt:rating numDislikes='85290' numLikes='1218078'/></entry><entry 
gd:etag='W/&quot;Dk8ERH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:t4H_Zoh7G5A</id><published>2011-03-04T01:
 13:27.000Z</published><updated>2013-06-27T01:00:05.000Z</updated><app:control><yt:state name='restricted' 
reasonCode='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>Jennifer 
Lopez - On The Floor ft. Pitbull</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/t4H_Zoh7G5A?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=t4H_Zoh7G5A&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/responses'/><link 
rel='http://gdata.youtube.com/schemas/200
 7#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/x1f1u4XlFFr0YgqF3wB4lQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A'/><author><name>JenniferLopezVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/JenniferLopezVEVO</uri><yt:userId>x1f1u4XlFFr0YgqF3wB4lQ</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' permission='all
 owed'/><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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/comments' 
countHint='549454'/></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='https://www.youtube.com/v/t4H_Zoh7G5A?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='267' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtub
 e' yt:display='JenniferLopezVEVO' yt:type='partner'>jenniferlopezvevo</media:credit><media:description 
type='plain'>Music video by Jennifer Lopez performing On The Floor feat. Pitbull. © 2011 Island Records
+< #VEVOCertified on April 15, 2012. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=t4H_Zoh7G5A&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/default.jpg' height='90' width='120' time='00:02:13.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/1.jpg' height='90' width='120' 
tim
 e='00:01:06.750' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/2.jpg' 
height='90' width='120' time='00:02:13.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/3.jpg' height='90' width='120' time='00:03:20.250' 
yt:name='end'/><media:title type='plain'>Jennifer Lopez - On The Floor ft. 
Pitbull</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='267'/><yt:uploaded>2011-03-04T01:13:27.000Z</yt:uploaded><yt:uploaderId>UCx1f1u4XlFFr0YgqF3wB4lQ</yt:uploaderId><yt:videoid>t4H_Zoh7G5A</yt:videoid></media:group><gd:rating
 average='4.703179' max='5' min='1' numRaters='1294733' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='675859664'/><yt:rating numDislikes='96076' numLikes='1198657'/></entry><entry 
gd:etag='W/&quot;Dk8FQH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:hLQl3WQQoQ0</id><published>2011-09-29T23:56:00.000Z</published><updated>2013-06-
 27T01:00:11.000Z</updated><app:control><yt:state name='restricted' 
reasonCode='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>Adele - 
Someone Like You</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/hLQl3WQQoQ0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=hLQl3WQQoQ0&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='https
 ://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/omP_epzeKzvBX156r6pm1Q'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0'/><author><name>AdeleVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/AdeleVEVO</uri><yt:userId>omP_epzeKzvBX156r6pm1Q</yt:userId></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='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/comments' 
countHint='250006'/></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='https://www.youtube.com/v/hLQl3WQQoQ0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='285' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='AdeleVEVO' 
yt:type='partner'>adelevevo</media:credit><med
 ia:description type='plain'>Music video by Adele performing Someone Like You. (C) 2011 XL Recordings 
Ltd</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=hLQl3WQQoQ0&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/default.jpg' height='90' width='120' time='00:02:22.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/1.jpg' height='90' width='120' 
t
 ime='00:01:11.250' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/2.jpg' 
height='90' width='120' time='00:02:22.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/3.jpg' height='90' width='120' time='00:03:33.750' 
yt:name='end'/><media:title type='plain'>Adele - Someone Like 
You</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='285'/><yt:uploaded>2011-09-29T23:56:00.000Z</yt:uploaded><yt:uploaderId>UComP_epzeKzvBX156r6pm1Q</yt:uploaderId><yt:videoid>hLQl3WQQoQ0</yt:videoid></media:group><gd:rating
 average='4.897775' max='5' min='1' numRaters='1164920' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='280412521'/><yt:rating numDislikes='29771' numLikes='1135149'/></entry><entry 
gd:etag='W/&quot;Dk8CRn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:wcLNteez3c4</id><published>2012-08-14T15:00:06.000Z</published><updated>2013-06-27T01:01:07.000
 Z</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'/><title>PSY (ft. 
HYUNA) 오빤 딱 내 스타일</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/wcLNteez3c4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='http://gdata.youtube.com/schemas/2007#video.in-response-to' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=wcLNteez3c4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='applicati
 on/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=wcLNteez3c4'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/rDkAvwZum-UTjHmzDI2iIw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4'/><author><name>officialpsy</name><uri>https://gdata.youtube.com/feeds/api/users/officialpsy</uri><yt:userId>rDkAvwZum-UTjHmzDI2iIw</yt:userId></author><yt:accessControl
 action='com
 ment' 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='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/comments' 
countHint='423006'/></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='https://www.youtube.com/v/wcLNteez3c4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression=
 'full' duration='227' yt:format='5'/><media:content 
url='rtsp://r12---sn-aiglln7r.c.youtube.com/CkcLENy73wIaPgnO3bPntc3CwRMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='227' yt:format='1'/><media:content 
url='rtsp://r12---sn-aiglln7r.c.youtube.com/CkcLENy73wIaPgnO3bPntc3CwRMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='227' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='officialpsy' 
yt:type='partner'>officialpsy</media:credit><media:description type='plain'>6TH STUDIO ALBUM [PSY 6甲] 
+< ▶ NOW available on iTunes: http://smarturl.it/psy6gap1
+< ▶ Official PSY Online Store US &amp; International : 
+< http://psy.shop.bravadousa.com/
+< ▶ About PSY from YG Ent.: http://smarturl.it/YGfamilyAboutPSY
+< ▶ PSY's Products on eBay: http://stores.ebay.com/ygentertainment
+< ▶ YG-eShop: http://www.ygeshop.com
+< 
+< 
+< Psy's 2nd Version of "GANGNAM STYLE" by Hyuna Released!
+< Gangnam Style - Hyuna Ver. was discussed during the making of the music video for "Gangnam Style." It can 
be perceived as the girl version for "Gangnam Style." The main female for this music video is 4minute's 
Hyuna. "Gangnam Style" is reborn with 'Oppa Is Just My Style' by Hyuna!
+< 
+< '강남스타일' 뮤직비디오 제작 당시 함께 기획됐던 '오빤 딱 내 스타일'은 여성의 관점에서 '강남스타일'을 재해석한 것으로 걸그룹 포미닛의 현아가 주인공으로 출연한 사실이 알려져 화제를 모은 
바 있다. 싸이는 '오빤 딱 내 스타일' 뮤직비디오 공개로 전세계인들과 다시 한 번 즐겁게 이번 '강남 스타일'의 열기를 이어나갈 계획이다!
+< 
+< For More Information @
+< http://www.facebook.com/officialpsy
+< http://twitter.com/psy_oppa
+< http://twitter.com/ygent_official
+< http://me2day.net/psyfive
+< http://www.psypark.com
+< App Store: http://goo.gl/l9TU6
+< Google Play: http://goo.gl/UiEn1</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=wcLNteez3c4&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/wcLNteez3c4/default.jpg' height='90' width='120' time='00:01:53.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/wcLNteez3c4/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/wcLNteez3c4/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/wcLNteez3c4/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/wcLNteez3c4/1.jpg' height='90' width='120' 
time='00:00:56.750' yt:name='start'/><media:thumbnail url='https://i1.y
 timg.com/vi/wcLNteez3c4/2.jpg' height='90' width='120' time='00:01:53.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/wcLNteez3c4/3.jpg' height='90' width='120' 
time='00:02:50.250' yt:name='end'/><media:title type='plain'>PSY (ft. HYUNA) 오빤 딱 내 
스타일</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='227'/><yt:uploaded>2012-08-14T15:00:06.000Z</yt:uploaded><yt:uploaderId>UCrDkAvwZum-UTjHmzDI2iIw</yt:uploaderId><yt:videoid>wcLNteez3c4</yt:videoid></media:group><gd:rating
 average='4.2677226' max='5' min='1' numRaters='1342912' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='381191163'/><yt:rating numDislikes='245846' numLikes='1097066'/></entry><entry 
gd:etag='W/&quot;Dk8GR347eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:lWA2pjMjpBs</id><published>2012-11-09T00:18:50.000Z</published><updated>2013-06-27T01:00:26.000Z</updated><app:control><yt:state
 name='restricted' 
 reasonCode='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>Rihanna - 
Diamonds</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/lWA2pjMjpBs?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=lWA2pjMjpBs&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/ratings'/><link rel='ht
 tp://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/2xskkQVFEpLcGFnNSLQY0A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs'/><author><name>RihannaVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/RihannaVEVO</uri><yt:userId>2xskkQVFEpLcGFnNSLQY0A</yt:userId></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='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/comments' 
countHint='223154'/></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='https://www.youtube.com/v/lWA2pjMjpBs?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='283' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='RihannaVEVO' 
yt:type='partner'>rihannavevo</media:credit><media:description type='plain'>Pre-order new album Unapologetic, 
out
  worldwide Monday, November 19: http://smarturl.it/UnapologeticDlx
+< 
+< 
+< 
+< Music video by Rihanna performing Diamonds. ©:  The Island Def Jam Music 
Group</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=lWA2pjMjpBs&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/lWA2pjMjpBs/default.jpg' height='90' width='120' time='00:02:21.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/lWA2pjMjpBs/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/1.jpg' height='90' width='120' 
time='00:01:10.750' yt:n
 ame='start'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/2.jpg' height='90' width='120' 
time='00:02:21.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/3.jpg' 
height='90' width='120' time='00:03:32.250' yt:name='end'/><media:title type='plain'>Rihanna - 
Diamonds</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='283'/><yt:uploaded>2012-11-09T00:18:50.000Z</yt:uploaded><yt:uploaderId>UC2xskkQVFEpLcGFnNSLQY0A</yt:uploaderId><yt:videoid>lWA2pjMjpBs</yt:videoid></media:group><gd:rating
 average='4.784351' max='5' min='1' numRaters='1139740' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='300067447'/><yt:rating numDislikes='61446' numLikes='1078294'/></entry><entry 
gd:etag='W/&quot;Dk8DQ347eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:4GuqB1BQVr4</id><published>2012-05-03T23:50:06.000Z</published><updated>2013-06-27T01:01:12.000Z</updated><app:control><yt:s
 tate name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>Justin 
Bieber - Boyfriend</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/4GuqB1BQVr4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=4GuqB1BQVr4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB
 1BQVr4/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hkj014U2CQ2Nv0UZeYpE_A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4'/><author><name>JustinBieberVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/JustinBieberVEVO</uri><yt:userId>Hkj014U2CQ2Nv0UZeYpE_A</yt:userId></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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4/comments' 
countHint='835601'/></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='https://www.youtube.com/v/4GuqB1BQVr4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='211' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='JustinBieberVEVO' 
yt:type='partner'>justinbiebervevo</media:credit><media:description 
 type='plain'>Music video by Justin Bieber performing Boyfriend. ©: 2012 The Island Def Jam Music Group
+< #VEVOCertified on July 11, 2012. http://www.youtube.com/vevocertified
+< 
+< Buy It Now!
+< iTunes - http://smarturl.it/boyfriend
+< Amazon - http://smarturl.it/boyfriendamzn</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=4GuqB1BQVr4&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/4GuqB1BQVr4/default.jpg' height='90' width='120' time='00:01:45.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/4GuqB1BQVr4/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/4GuqB1BQVr4/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/4GuqB1BQVr4/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/4GuqB1BQVr4/1.jpg' height='90' width='120' 
time='00:00:52.750' yt:name='start'/><media:thumbnail url='htt
 ps://i1.ytimg.com/vi/4GuqB1BQVr4/2.jpg' height='90' width='120' time='00:01:45.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/4GuqB1BQVr4/3.jpg' height='90' width='120' 
time='00:02:38.250' yt:name='end'/><media:title type='plain'>Justin Bieber - 
Boyfriend</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='211'/><yt:uploaded>2012-05-03T23:50:06.000Z</yt:uploaded><yt:uploaderId>UCHkj014U2CQ2Nv0UZeYpE_A</yt:uploaderId><yt:videoid>4GuqB1BQVr4</yt:videoid></media:group><gd:rating
 average='3.7182097' max='5' min='1' numRaters='1567024' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='250256297'/><yt:rating numDislikes='502149' numLikes='1064875'/></entry><entry 
gd:etag='W/&quot;Dk4FQX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:T4cdfRohhcg</id><published>2013-01-07T19:57:08.000Z</published><updated>2013-06-27T01:01:50.000Z</updated><app:control><yt:state
 name='restricted' reason
 Code='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>One 
Direction - Kiss You (Official)</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/T4cdfRohhcg?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=T4cdfRohhcg&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/ratings'/><l
 ink rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/bW18JZRgko_mOGm5er8Yzg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg'/><author><name>OneDirectionVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/OneDirectionVEVO</uri><yt:userId>bW18JZRgko_mOGm5er8Yzg</yt:userId></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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/comments' 
countHint='545043'/></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='https://www.youtube.com/v/T4cdfRohhcg?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='191' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='OneDirectionVEVO' 
yt:type='partner'>onedirectionvevo</media:credit><media:description type='plain'>Music 
 video by One Direction performing Kiss You. (C) 2013 Simco Limited under exclusive licence to Sony Music 
Entertainment UK Limited
+< #VEVOCertified on March 21, 2013. http://vevo.com/certified 
http://youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=T4cdfRohhcg&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='allow'>SZ SY JP SR SV YT SK JE SI SH SO SN SM SL SC JM SA JO SG SE SD CK CI CH 
CO CN CM CL CC CA CG CF CD CZ CY CX CR CV CU IM ZA IO IN RU RW IE ID RS ZW IQ RE IS IR IT ET BL BM BN BO BH 
BI BJ SJ BD BE BF BG BA BB BY BZ BT BV BW BR BS HK HN HM QA KP SB HR KW HT HU AE AD AG AF AI AM AL AO AQ AS 
AR AU AT AW KZ AX AZ YE KY PR PS OM PW PT PY PA PF PG PE PK PH PN PL PM KG NA NC WS NE NF NG NI FR NL NO NP 
WF FJ FK FM FO LB NZ KI GG GF GE GD GB GA GN GM GL GI GH GW GU GT GS GR GQ GP NR GY ME VI MG MF MA VN MM ML 
MO MN FI VE MK VG MU MT MW MV MQ EH MS MR EE EG MY MX EC MZ KH LR LU DJ VC LS UM DZ LC LA UG UA LK LI LV DO 
 LT DM UY DK VU UZ US LY MC ST ZM VA TN KR TL TM TJ TK TH TF TG TD TC MH TZ ES KE TV TW TT ER TR KN KM MD TO 
NU IL RO MP</media:restriction><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/default.jpg' 
height='90' width='120' time='00:01:35.500' yt:name='default'/><media:thumbnail 
url='https://i1.ytimg.com/vi/T4cdfRohhcg/mqdefault.jpg' height='180' width='320' 
yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/hqdefault.jpg' height='360' 
width='480' yt:name='hqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/sddefault.jpg' 
height='480' width='640' yt:name='sddefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/T4cdfRohhcg/1.jpg' height='90' width='120' time='00:00:47.750' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/2.jpg' height='90' width='120' 
time='00:01:35.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/3.jpg' 
height='90' width='120' time='00:02:23.25
 0' yt:name='end'/><media:title type='plain'>One Direction - Kiss You 
(Official)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='191'/><yt:uploaded>2013-01-07T19:57:08.000Z</yt:uploaded><yt:uploaderId>UCbW18JZRgko_mOGm5er8Yzg</yt:uploaderId><yt:videoid>T4cdfRohhcg</yt:videoid></media:group><gd:rating
 average='4.7716846' max='5' min='1' numRaters='1127091' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='141863959'/><yt:rating numDislikes='64333' numLikes='1062758'/></entry><entry 
gd:etag='W/&quot;Dk4EQX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:_OBlgSz8sSM</id><published>2007-05-22T20:29:24.000Z</published><updated>2013-06-27T01:01:40.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'/><title>Charlie 
bit my finger - agai
 n !</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/_OBlgSz8sSM?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=_OBlgSz8sSM&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/related'/><link rel=
 'http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=_OBlgSz8sSM'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/fHZCZHykS3IQDPyFfnqjWg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM'/><author><name>HDCYT</name><uri>https://gdata.youtube.com/feeds/api/users/HDCYT</uri><yt:userId>fHZCZHykS3IQDPyFfnqjWg</yt:userId></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:c
 omments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/comments' 
countHint='813265'/></gd:comments><media:group><media:category label='Comedy' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Comedy</media:category><media:content 
url='https://www.youtube.com/v/_OBlgSz8sSM?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='56' 
yt:format='5'/><media:content 
url='rtsp://r17---sn-aigllned.c.youtube.com/CkcLENy73wIaPgkjsfwsgWXg_BMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='56' yt:format='1'/><media:content 
url='rtsp://r17---sn-aigllned.c.youtube.com/CkcLENy73wIaPgkjsfwsgWXg_BMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQ
 nGDmDA==/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='56' 
yt:format='6'/><media:credit role='uploader' scheme='urn:youtube' yt:display='HDCYT' 
yt:type='partner'>hdcyt</media:credit><media:description type='plain'>T-Shirts 
http://charliebitme.firebrandstore.com/
+< iPhone  http://itunes.apple.com/gb/app/charlie-bit-me!!!/id494858348?mt=8
+< Android  https://play.google.com/store/apps/details?id=com.viralspiral.charlie 
+< Even had I thought of trying to get my boys to do this I probably couldn't have. Neither were coerced into 
any of this and neither were hurt (for very long anyway).  This was just one of those moments when I had the 
video camera out because the boys were being fun and they provided something really very funny.
+< 
+< FAQ Harry is 8 3/4, Charlie is 6 1/2, Jasper is  4 1/4, Rupert is 1 1/2
+< (November 2012)
+< 
+< Harry and Charlie Blogging - Charlie Bit My Finger Again!
+< http://harryandcharlie.blogspot.com/
+< 
+< Twitter
+< http://twitter.com/harryandcharlie</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=_OBlgSz8sSM&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/_OBlgSz8sSM/default.jpg' height='90' width='120' time='00:00:28' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/_OBlgSz8sSM/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/_OBlgSz8sSM/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/_OBlgSz8sSM/1.jpg' height='90' width='120' time='00:00:14' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/_OBlgSz8sSM/2.jpg' height='90' width='120' 
time='00:00:28' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/_OBlgSz8sSM/3.jpg' 
height='90' width='120' time='00:00:42' yt:name
 ='end'/><media:title type='plain'>Charlie bit my finger - again !</media:title><yt:duration 
seconds='56'/><yt:uploaded>2007-05-22T20:29:24.000Z</yt:uploaded><yt:uploaderId>UCfHZCZHykS3IQDPyFfnqjWg</yt:uploaderId><yt:videoid>_OBlgSz8sSM</yt:videoid></media:group><gd:rating
 average='4.493818' max='5' min='1' numRaters='1205179' 
rel='http://schemas.google.com/g/2005#overall'/><yt:recorded>2007-03-19</yt:recorded><yt:statistics 
favoriteCount='0' viewCount='529927500'/><yt:rating numDislikes='152510' numLikes='1052669'/></entry><entry 
gd:etag='W/&quot;Dk4FRH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:1G4isv_Fylg</id><published>2011-10-19T02:42:54.000Z</published><updated>2013-06-27T01:01:55.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</yt:state></app:control><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='h
 ttp://gdata.youtube.com/schemas/2007/categories.cat' term='Music' label='Music'/><title>Coldplay - 
Paradise</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/1G4isv_Fylg?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=1G4isv_Fylg&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type=
 'application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/DPM_n1atn2ijUwHd0NNRQw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg'/><author><name>ColdplayVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/ColdplayVEVO</uri><yt:userId>DPM_n1atn2ijUwHd0NNRQw</yt:userId></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='denied'/><yt:accessControl action='syndicate' permission='allowed'/><gd:comments><gd
 :feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/comments' 
countHint='228701'/></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='https://www.youtube.com/v/1G4isv_Fylg?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='261' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='ColdplayVEVO' 
yt:type='partner'>coldplayvevo</media:credit><media:description type='plain'>Click here to buy Mylo Xyloto 
http://links.emi.com/coldplayMX 
+< This video was directed by Mat Whitecross in 2011 and was filmed in South Africa and London
+< Music video by Coldplay performing Paradise. (C) 2011 EMI Records Ltd This label copy information is the 
subject of copyright protection. All rights reserved.(C) 2011 EMI Records Ltd 
+< #VEVOCertified on April 19, 2012. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=1G4isv_Fylg&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/1G4isv_Fylg/default.jpg' height='90' width='120' time='00:02:10.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/1G4isv_Fylg/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/1G4isv_Fylg/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/1G4isv_Fylg/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/1G4isv_Fylg/1.jpg' height='90' width='120' 
tim
 e='00:01:05.250' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/1G4isv_Fylg/2.jpg' 
height='90' width='120' time='00:02:10.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/1G4isv_Fylg/3.jpg' height='90' width='120' time='00:03:15.750' 
yt:name='end'/><media:title type='plain'>Coldplay - 
Paradise</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='261'/><yt:uploaded>2011-10-19T02:42:54.000Z</yt:uploaded><yt:uploaderId>UCDPM_n1atn2ijUwHd0NNRQw</yt:uploaderId><yt:videoid>1G4isv_Fylg</yt:videoid></media:group><gd:rating
 average='4.9265857' max='5' min='1' numRaters='1011136' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='213893594'/><yt:rating numDislikes='18558' numLikes='992578'/></entry><entry 
gd:etag='W/&quot;Dk8DRn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:kYtGl1dX5qI</id><published>2012-11-29T02:50:08.000Z</published><updated>2013-06-27T01:01:17.000Z</upda
 ted><app:control><yt:state name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>will.i.am - 
Scream &amp; Shout ft. Britney Spears</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/kYtGl1dX5qI?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=kYtGl1dX5qI&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='ht
 tps://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/_d6W32xuEAyPlf_KmvvwEA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI'/><author><name>williamVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/williamVEVO</uri><yt:userId>_d6W32xuEAyPlf_KmvvwEA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowe
 d'/><yt:accessControl action='rate' permission='allowed'/><yt:accessControl action='embed' 
permission='allowed'/><yt:accessControl action='list' permission='allowed'/><yt:accessControl 
action='autoPlay' permission='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/comments' 
countHint='287454'/></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='https://www.youtube.com/v/kYtGl1dX5qI?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='292' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='williamVEVO' 
yt:type='partner'>williamvevo</media:
 credit><media:description type='plain'>Buy Now!
+< iTunes: http://smarturl.it/ScreamNShout 
+< 
+< 
+< Music video by will.i.am performing Scream &amp; Shout. © 2012 
Interscope</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=kYtGl1dX5qI&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/kYtGl1dX5qI/default.jpg' height='90' width='120' time='00:02:26' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/kYtGl1dX5qI/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/1.jpg' height='90' width='120' 
time='00:01:13' yt:name='start'/>
 <media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/2.jpg' height='90' width='120' time='00:02:26' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/3.jpg' height='90' width='120' 
time='00:03:39' yt:name='end'/><media:title type='plain'>will.i.am - Scream &amp; Shout ft. Britney 
Spears</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='292'/><yt:uploaded>2012-11-29T02:50:08.000Z</yt:uploaded><yt:uploaderId>UC_d6W32xuEAyPlf_KmvvwEA</yt:uploaderId><yt:videoid>kYtGl1dX5qI</yt:videoid></media:group><gd:rating
 average='4.5973263' max='5' min='1' numRaters='1102143' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='250261557'/><yt:rating numDislikes='110951' numLikes='991192'/></entry></feed>
+  
diff --git a/gdata/tests/traces/youtube/query-standard-feed-async 
b/gdata/tests/traces/youtube/query-standard-feed-async
new file mode 100644
index 0000000..5c09b89
--- /dev/null
+++ b/gdata/tests/traces/youtube/query-standard-feed-async
@@ -0,0 +1,454 @@
+> GET /feeds/api/standardfeeds/top_rated HTTP/1.1
+> Soup-Debug-Timestamp: 1372714745
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 15 (0x7fffdc0028b0), SoupSocket 6 (0x7fffe0008e20)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714745
+< Soup-Debug: SoupMessage 15 (0x7fffdc0028b0)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Mon, 01 Jul 2013 21:39:05 GMT
+< Date: Mon, 01 Jul 2013 21:39:05 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: *
+< GData-Version: 2.1
+< ETag: W/"DkAARHk4cSp7I2A9WhFRF0w."
+< Last-Modified: Mon, 01 Jul 2013 21:39:05 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?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:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkAARHk4cSp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:standardfeed:global:top_rated</id><updated>2013-07-01T21:39:05.739Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#video'/><title>Top 
Rated</title><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link rel='alternate' 
type='text/html' href='https://www.youtube.com/channel/HCWKQJPHqP4J0'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/standardfeeds/top_rated'/><link 
rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='h
 ttps://gdata.youtube.com/feeds/api/standardfeeds/top_rated/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/standardfeeds/top_rated?start-index=1&amp;max-results=25'/><link 
rel='service' type='application/atomsvc+xml' 
href='https://gdata.youtube.com/feeds/api/standardfeeds/top_rated?alt=atom-service'/><link rel='next' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/standardfeeds/top_rated?start-index=26&amp;max-results=25'/><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>155</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='W/&quot;Dk4FRX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:9bZkp7q19f0</id><published>2012-07-15T07:46:32.000Z</published><updated>2013-06-27T01:01: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'/><title>PSY - 
GANGNAM STYLE (강남스타일) M/V</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/9bZkp7q19f0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=9bZkp7q19f0&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='appli
 cation/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=9bZkp7q19f0'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/rDkAvwZum-UTjHmzDI2iIw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0'/><author><name>officialpsy</name><uri>https://gdata.youtube.com/feeds/api/users/officialpsy</uri><yt:userId>rDkAvwZum-UTjHmzDI2iIw</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderated'/><yt:acces
 sControl 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='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/comments' 
countHint='6079494'/></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='https://www.youtube.com/v/9bZkp7q19f0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='253' 
yt:format='5'/><media:content 
url='rtsp://v6.cache3.c.youtube.com/CkcLENy73wIaPgn99bW6p2S29RMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0
 D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' 
duration='253' yt:format='1'/><media:content 
url='rtsp://v6.cache3.c.youtube.com/CkcLENy73wIaPgn99bW6p2S29RMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='253' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='officialpsy' 
yt:type='partner'>officialpsy</media:credit><media:description type='plain'>PSY - Gangnam Style (강남스타일) 
+< ▶ NOW available on iTunes: http://Smarturl.it/psygangnam
+< ▶ Official PSY Online Store US &amp; International : http://psy.shop.bravadousa.com/
+< ▶ About PSY from YG Ent.: http://smarturl.it/YGfamilyAboutPSY
+< ▶ PSY's Products on eBay: http://stores.ebay.com/ygentertainment
+< ▶ YG-eShop: http://www.ygeshop.com
+<  
+< ===============================
+< PSY CONCERT "HAPPENING"
+< 2013.4.13. SAT 6:30PM
+< THE SEOUL WORLD CUP STADIUM
+< YouTube LIVE@ http://www.youtube.com/officialpsy
+< Tickets: http://smarturl.it/PsyHappeningKor
+< English Booking: http://smarturl.it/PsyHappeningEng
+< ===============================
+< 
+< For More Information @
+< http://www.facebook.com/officialpsy
+< http://twitter.com/psy_oppa
+< http://twitter.com/ygent_official
+< http://me2day.net/psyfive
+< http://www.psypark.com
+< App Store: http://goo.gl/l9TU6
+< Google Play: http://goo.gl/UiEn1
+< 
+< © YG Entertainment Inc. All rights reserved.</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=9bZkp7q19f0&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/9bZkp7q19f0/default.jpg' height='90' width='120' time='00:02:06.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/9bZkp7q19f0/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/9bZkp7q19f0/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/9bZkp7q19f0/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/9bZkp7q19f0/1.jpg' height='90' width='120' 
time='00:01:03.250' yt:name='start'/><media:thumbnail url=
 'https://i1.ytimg.com/vi/9bZkp7q19f0/2.jpg' height='90' width='120' time='00:02:06.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/9bZkp7q19f0/3.jpg' height='90' width='120' 
time='00:03:09.750' yt:name='end'/><media:title type='plain'>PSY - GANGNAM STYLE (강남스타일) 
M/V</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='253'/><yt:uploaded>2012-07-15T07:46:32.000Z</yt:uploaded><yt:uploaderId>UCrDkAvwZum-UTjHmzDI2iIw</yt:uploaderId><yt:videoid>9bZkp7q19f0</yt:videoid></media:group><gd:rating
 average='4.6144605' max='5' min='1' numRaters='8478117' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='1669725106'/><yt:rating numDislikes='817162' numLikes='7660955'/></entry><entry 
gd:etag='W/&quot;Dk8CQ347eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:ASO_zypdnsQ</id><published>2013-04-13T11:59:04.000Z</published><updated>2013-06-27T01:01:02.000Z</updated><category
 scheme='http://s
 chemas.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'/><title>PSY - 
GENTLEMAN M/V</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/ASO_zypdnsQ?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=ASO_zypdnsQ&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api
 /videos/ASO_zypdnsQ/complaints'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=ASO_zypdnsQ'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/rDkAvwZum-UTjHmzDI2iIw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ'/><author><name>officialpsy</name><uri>https://gdata.youtube.com/feeds/api/users/officialpsy</uri><yt:userId>rDkAvwZum-UTjHmzDI2iIw</yt:userId></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:accessCon
 trol 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='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ/comments' 
countHint='1202763'/></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='https://www.youtube.com/v/ASO_zypdnsQ?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='234' 
yt:format='5'/><media:content 
url='rtsp://v5.cache2.c.youtube.com/CkcLENy73wIaPgnEnl0qz78jARMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3
 gpp' medium='video' expression='full' duration='234' yt:format='1'/><media:content 
url='rtsp://v5.cache2.c.youtube.com/CkcLENy73wIaPgnEnl0qz78jARMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='234' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='officialpsy' 
yt:type='partner'>officialpsy</media:credit><media:description type='plain'>▶ NOW available on iTunes: 
http://smarturl.it/PsyGentlemaniT
+< ▶ Official PSY Online Store US &amp; International : http://psy.shop.bravadousa.com/
+< ▶ About PSY from YG Ent.: http://smarturl.it/YGfamilyAboutPSY
+< ▶ PSY's Products on eBay: http://stores.ebay.com/ygentertainment
+< ▶ YG-eShop: http://www.ygeshop.com
+<  
+< For More Information @
+< http://www.facebook.com/officialpsy
+< http://twitter.com/psy_oppa
+< http://twitter.com/ygent_official
+< http://me2day.net/psyfive
+< http://www.psypark.com
+< App Store: http://goo.gl/l9TU6
+< Google Play: http://goo.gl/UiEn1
+< 
+< © YG Entertainment Inc. All rights reserved.</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=ASO_zypdnsQ&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/ASO_zypdnsQ/default.jpg' height='90' width='120' time='00:01:57' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/ASO_zypdnsQ/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/ASO_zypdnsQ/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/ASO_zypdnsQ/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/ASO_zypdnsQ/1.jpg' height='90' width='120' 
time='00:00:58.500' yt:name='start'/><media:thumbnail url='htt
 ps://i1.ytimg.com/vi/ASO_zypdnsQ/2.jpg' height='90' width='120' time='00:01:57' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/ASO_zypdnsQ/3.jpg' height='90' width='120' 
time='00:02:55.500' yt:name='end'/><media:title type='plain'>PSY - GENTLEMAN 
M/V</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='234'/><yt:uploaded>2013-04-13T11:59:04.000Z</yt:uploaded><yt:uploaderId>UCrDkAvwZum-UTjHmzDI2iIw</yt:uploaderId><yt:videoid>ASO_zypdnsQ</yt:videoid></media:group><gd:rating
 average='4.3725' max='5' min='1' numRaters='2930384' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='447783403'/><yt:rating numDislikes='459704' numLikes='2470680'/></entry><entry 
gd:etag='W/&quot;Dk8CSH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:QK8mJJJvaes</id><published>2012-08-29T15:53:50.000Z</published><updated>2013-06-27T01:01:09.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' ter
 m='http://gdata.youtube.com/schemas/2007#video'/><category 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Music' label='Music'/><title>MACKLEMORE 
&amp; RYAN LEWIS - THRIFT SHOP FEAT. WANZ (OFFICIAL VIDEO)</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/QK8mJJJvaes?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=QK8mJJJvaes&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtu
 be.com/feeds/api/videos/QK8mJJJvaes/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=QK8mJJJvaes'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/XYRdIXDdeZIf816EWAr5zQ'/><link rel='self' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes'/><author><name>Ryan 
Lewis</name><uri>https://gdata.youtube.com/feeds/api/users/RyanLewisProductions</uri><yt:userId>XYRdIXDdeZIf816EWAr5zQ</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes/comments' 
countHint='389709'/></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='https://www.youtube.com/v/QK8mJJJvaes?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='233' 
yt:format='5'/><media:content 
url='rtsp://r1---sn-aig7kned.c.youtube.com/CkcLENy73wIaPgnraW-SJCavQBMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/
 0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='233' 
yt:format='1'/><media:content 
url='rtsp://r1---sn-aig7kned.c.youtube.com/CkcLENy73wIaPgnraW-SJCavQBMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='233' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='Ryan Lewis' 
yt:type='partner'>ryanlewisproductions</media:credit><media:description type='plain'>Thrift Shop on iTunes: 
http://itunes.apple.com/us/album/thrift-shop-feat.-wanz-single/id556955707
+< The Heist physical deluxe edition: http://www.macklemoremerch.com
+< The Heist digital deluxe on iTunes: 
http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=560097651
+< The Heist on Amazon: http://amzn.com/B00908DDZM
+< The Heist in-stores NOW!
+< 
+< Credits:
+< 
+< VIDEO
+< 
+< Directed By Jon Jon Augustavo, Ryan Lewis, Ben Haggerty
+< Produced By Hollis Wong-Wear, Tricia Davis, Zach Quillen
+< Lead Grip: David Herberg
+< Grip Assistants: Josh Marten, Jay Neilson
+< Stylists: Annie Murphy, Alex Nordstrom
+< 
+< MUSIC
+< 
+< Written by Ben Haggerty
+< Produced by Ryan Lewis
+< Featuring Wanz
+< Additional vocals by Brooklyn Grinnell
+< Scratches by DV One
+< 
+< SPECIAL THANKS TO
+< 
+< Goodwill Outlet
+< Value Village Capitol Hill
+< Red Light Vintage
+< Fremont Vintage Mall
+< Unicorn/Narwhal
+< Northwest African American Museum
+< 
+< Sara Stapleton, JR Ewing and Inner City Empire, Faisal Jaswal, Clay Davis
+< 
+< http://www.macklemore.com
+< http://www.twitter.com/macklemore
+< http://www.twitter.com/ryanlewis
+< http://www.facebook.com/macklemore
+< http://www.facebook.com/ryanlewisproductions</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=QK8mJJJvaes&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/QK8mJJJvaes/default.jpg' height='90' width='120' time='00:01:56.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/QK8mJJJvaes/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/QK8mJJJvaes/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/QK8mJJJvaes/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/QK8mJJJvaes/1.jpg' height='90' width='120' 
time='00:00:58.250' yt:name='start'/><media:thumbnail url='
 https://i1.ytimg.com/vi/QK8mJJJvaes/2.jpg' height='90' width='120' time='00:01:56.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/QK8mJJJvaes/3.jpg' height='90' width='120' 
time='00:02:54.750' yt:name='end'/><media:title type='plain'>MACKLEMORE &amp; RYAN LEWIS - THRIFT SHOP FEAT. 
WANZ (OFFICIAL VIDEO)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='233'/><yt:uploaded>2012-08-29T15:53:50.000Z</yt:uploaded><yt:uploaderId>UCXYRdIXDdeZIf816EWAr5zQ</yt:uploaderId><yt:videoid>QK8mJJJvaes</yt:videoid></media:group><gd:rating
 average='4.8576236' max='5' min='1' numRaters='1945239' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='354260538'/><yt:rating numDislikes='69239' numLikes='1876000'/></entry><entry 
gd:etag='W/&quot;Dk8NRH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:8UVNT4wvIGY</id><published>2011-07-05T20:58:17.000Z</published><updated>2013-06-27T01:01: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='Music' label='Music'/><title>Gotye - 
Somebody That I Used To Know (feat. Kimbra) - official video</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/8UVNT4wvIGY?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=8UVNT4wvIGY&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complai
 nts' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=8UVNT4wvIGY'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/FC9LamNMmLioW643VZ40OA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY'/><author><name>gotyemusic</name><uri>https://gdata.youtube.com/feeds/api/users/gotyemusic</uri><yt:userId>FC9LamNMmLioW643VZ40OA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderat
 ed'/><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='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/comments' 
countHint='524835'/></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='https://www.youtube.com/v/8UVNT4wvIGY?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='245' 
yt:format='5'/><media:content 
url='rtsp://v4.cache6.c.youtube.com/CkcLENy73wIaPglmIC-MT01F8RMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB
 _5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' 
duration='245' yt:format='1'/><media:content 
url='rtsp://v4.cache6.c.youtube.com/CkcLENy73wIaPglmIC-MT01F8RMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='245' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='gotyemusic' 
yt:type='partner'>gotyemusic</media:credit><media:description type='plain'>Film clip for the Gotye song 
Somebody That I Used To Know, featuring Kimbra from the album Making Mirrors. 
+< Buy Somebody That I Used To Know here: http://www.smarturl.it/gotyesomebody
+< Buy Making Mirrors here http://www.smarturl.it/gotye 
+< http://www.gotye.com/
+< http://www.facebook.com/gotye/
+< http://www.twitter.com/gotye/
+< 
+< **********************************************
+< Somebody That I Used To Know lyrics
+< 
+< Now and then I think of when we were together
+< Like when you said you felt so happy you could die
+< Told myself that you were right for me
+< But felt so lonely in your company
+< But that was love and it's an ache I still remember
+< 
+< You can get addicted to a certain kind of sadness
+< Like resignation to the end
+< Always the end
+< So when we found that we could not make sense
+< Well you said that we would still be friends
+< But I'll admit that I was glad that it was over
+< 
+< But you didn't have to cut me off
+< Make out like it never happened
+< And that we were nothing
+< And I don't even need your love
+< But you treat me like a stranger
+< And that feels so rough
+< You didn't have to stoop so low
+< Have your friends collect your records
+< And then change your number
+< I guess that I don't need that though
+< Now you're just somebody that I used to know
+< 
+< Now and then I think of all the times you screwed me over
+< But had me believing it was always something that I'd done
+< And I don't wanna live that way
+< Reading into every word you say
+< You said that you could let it go 
+< And I wouldn't catch you hung up on somebody that you used to know...
+< 
+< But you didn't have to cut me off
+< Make out like it never happened
+< And that we were nothing
+< And I don't even need your love
+< But you treat me like a stranger
+< And that feels so rough
+< You didn't have to stoop so low
+< Have your friends collect your records
+< And then change your number
+< I guess that I don't need that though
+< Now you're just somebody that I used to know
+< 
+< I used to know
+< That I used to know
+< 
+< Somebody...
+< *************
+< 
+< Video credits:
+< Directed, produced and edited by Natasha Pincus
+< Body art by Emma Hack
+< Cinematographer and colourist: Warwick Field
+< Scenic artist: Howard Clark
+< Key grip: Rob Hansford
+< Assistants: Rose Cidoni, Claire Leighton, Rob Murray
+< Original artwork by Frank De Backer
+< 
+< Music credits:
+< Produced by Wally De Backer
+< Mixed by Francois Tetaz, assisted by Wally at Moose Mastering, Richmond, VIC
+< Bass recorded by Wally in Lucas Taranto's loungeroom, Melbourne, VIC
+< All other sounds put together by Wally in The Barn, Merricks, VIC
+< 
+< Bass guitar: Lucas Taranto
+< Lead and backing vocals: Kimbra
+< Guitar, flutes, percussion and synth samples, lead and backing vocals: Wally
+< 
+< Contains a sample of the recording Seville as performed by Luiz Bonfa. Courtesy of Geffen Records, under 
license from Universal Music Enterprises.  Used by permission. All rights reserved.  Written by Luiz Bonfa 
and published by Sasqua Music. Used by permission.</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=8UVNT4wvIGY&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/8UVNT4wvIGY/default.jpg' height='90' width='120' time='00:02:02.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/8UVNT4wvIGY/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/8UVNT4wvIGY/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/8UV
 NT4wvIGY/sddefault.jpg' height='480' width='640' yt:name='sddefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/8UVNT4wvIGY/1.jpg' height='90' width='120' time='00:01:01.250' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/8UVNT4wvIGY/2.jpg' height='90' width='120' 
time='00:02:02.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/8UVNT4wvIGY/3.jpg' 
height='90' width='120' time='00:03:03.750' yt:name='end'/><media:title type='plain'>Gotye - Somebody That I 
Used To Know (feat. Kimbra) - official 
video</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='245'/><yt:uploaded>2011-07-05T20:58:17.000Z</yt:uploaded><yt:uploaderId>UCFC9LamNMmLioW643VZ40OA</yt:uploaderId><yt:videoid>8UVNT4wvIGY</yt:videoid></media:group><gd:rating
 average='4.8432045' max='5' min='1' numRaters='1873954' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='412724341'/><yt:rating numDislikes='73457' numLi
 kes='1800497'/></entry><entry 
gd:etag='W/&quot;Dk8MRX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:KQ6zr6kCPj8</id><published>2011-03-09T05:30:54.000Z</published><updated>2013-06-27T01:01:24.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>LMFAO - 
Party Rock Anthem ft. Lauren Bennett, GoonRock</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/KQ6zr6kCPj8?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=KQ6zr6kCPj8&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#v
 ideo.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/k78ZcA6kflEvBR0UrGDH0Q'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8'/><author><name>LMFAOVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/LMFAOVEVO</uri><yt:userId>k78ZcA
 6kflEvBR0UrGDH0Q</yt:userId></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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/comments' 
countHint='748770'/></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='https://www.youtube.com/v/KQ6zr6kCPj8?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application
 /x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='376' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='LMFAOVEVO' 
yt:type='partner'>lmfaovevo</media:credit><media:description type='plain'>Buy now http://glnk.it/6t
+< Music video by LMFAO performing Party Rock Anthem featuring Lauren Bennett and GoonRock. (c) 2011 
Interscope
+< #VEVOCertified on July 1, 2011. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=KQ6zr6kCPj8&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/default.jpg' height='90' width='120' time='00:03:08' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/1.jpg' height='90' width='120' 
time='00:
 01:34' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/2.jpg' height='90' 
width='120' time='00:03:08' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/3.jpg' height='90' width='120' time='00:04:42' 
yt:name='end'/><media:title type='plain'>LMFAO - Party Rock Anthem ft. Lauren Bennett, 
GoonRock</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='376'/><yt:uploaded>2011-03-09T05:30:54.000Z</yt:uploaded><yt:uploaderId>UCk78ZcA6kflEvBR0UrGDH0Q</yt:uploaderId><yt:videoid>KQ6zr6kCPj8</yt:videoid></media:group><gd:rating
 average='4.838746' max='5' min='1' numRaters='1863271' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='549263247'/><yt:rating numDislikes='75115' numLikes='1788156'/></entry><entry 
gd:etag='W/&quot;Dk4GQH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:kffacxfA7G4</id><published>2010-02-19T08:11:38.000Z</published><updated>2013-06-27T01
 :02:01.000Z</updated><app:control><yt:state name='restricted' reasonCode='limitedSyndication'>Syndication of 
this video was restricted.</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='Music' label='Music'/><title>Justin 
Bieber - Baby ft. Ludacris</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/kffacxfA7G4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=kffacxfA7G4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='h
 ttps://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hkj014U2CQ2Nv0UZeYpE_A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4'/><author><name>JustinBieberVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/JustinBieberVEVO</uri><yt:userId>Hkj014U2CQ2Nv0UZeYpE_A</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permiss
 ion='allowed'/><yt:accessControl action='rate' permission='allowed'/><yt:accessControl action='embed' 
permission='allowed'/><yt:accessControl action='list' permission='allowed'/><yt:accessControl 
action='autoPlay' permission='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/comments' 
countHint='9306761'/></gd:comments><media:group><media:category label='Music' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Music</media:category><media:content 
url='https://www.youtube.com/v/kffacxfA7G4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='225' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='JustinBieberVEVO' 
yt:type='partner'>justinbieb
 ervevo</media:credit><media:description type='plain'>Music video by Justin Bieber performing Baby feat. 
Ludacris.
+< #VEVOCertified on April 25, 2010. 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=kffacxfA7G4&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/kffacxfA7G4/default.jpg' height='90' width='120' time='00:01:52.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/kffacxfA7G4/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/1.jpg' height='90' width='120' 
time='00:00:56.250' yt:name='star
 t'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/2.jpg' height='90' width='120' 
time='00:01:52.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/3.jpg' 
height='90' width='120' time='00:02:48.750' yt:name='end'/><media:title type='plain'>Justin Bieber - Baby ft. 
Ludacris</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='225'/><yt:uploaded>2010-02-19T08:11:38.000Z</yt:uploaded><yt:uploaderId>UCHkj014U2CQ2Nv0UZeYpE_A</yt:uploaderId><yt:videoid>kffacxfA7G4</yt:videoid></media:group><gd:rating
 average='2.304344' max='5' min='1' numRaters='5204692' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='868203556'/><yt:rating numDislikes='3507515' numLikes='1697177'/></entry><entry 
gd:etag='W/&quot;Dk8ASX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:fWNaR-rxAic</id><published>2012-03-01T23:21:04.000Z</published><updated>2013-06-27T01:00:48.000Z</updated><app:contr
 ol><yt:state name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>Carly Rae 
Jepsen - Call Me Maybe</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/fWNaR-rxAic?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=fWNaR-rxAic&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/a
 pi/videos/fWNaR-rxAic/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/tKuVNj4wVrZvTfxPxAUHcQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic'/><author><name>CarlyRaeJepsenVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/CarlyRaeJepsenVEVO</uri><yt:userId>tKuVNj4wVrZvTfxPxAUHcQ</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowed'/><yt:accessCon
 trol action='rate' permission='allowed'/><yt:accessControl action='embed' 
permission='allowed'/><yt:accessControl action='list' permission='allowed'/><yt:accessControl 
action='autoPlay' permission='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic/comments' 
countHint='704203'/></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='https://www.youtube.com/v/fWNaR-rxAic?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='200' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='CarlyRaeJepsenVEVO' 
yt:type='partner'>carlyraejepsenvevo</media:cre
 dit><media:description type='plain'>Buy Now!  http://smarturl.it/CallMeMaybe
+< Music video by Carly Rae Jepsen performing Call Me Maybe. (C) 2011 604 Records Inc.
+< #VEVOCertified on June 8, 2012. 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=fWNaR-rxAic&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/fWNaR-rxAic/default.jpg' height='90' width='120' time='00:01:40' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/fWNaR-rxAic/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/1.jpg' height='90' width='120' 
time='00:00:50' yt:name='start'/><media
 :thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/2.jpg' height='90' width='120' time='00:01:40' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/3.jpg' height='90' width='120' 
time='00:02:30' yt:name='end'/><media:title type='plain'>Carly Rae Jepsen - Call Me 
Maybe</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='200'/><yt:uploaded>2012-03-01T23:21:04.000Z</yt:uploaded><yt:uploaderId>UCtKuVNj4wVrZvTfxPxAUHcQ</yt:uploaderId><yt:videoid>fWNaR-rxAic</yt:videoid></media:group><gd:rating
 average='4.712018' max='5' min='1' numRaters='1735538' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='470448119'/><yt:rating numDislikes='124951' numLikes='1610587'/></entry><entry 
gd:etag='W/&quot;Dk8CQn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:QJO3ROT-A4E</id><published>2011-08-19T15:00:00.000Z</published><updated>2013-06-27T01:01:03.000Z</updated><app:control><yt:state
 name='r
 estricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>One 
Direction - What Makes You Beautiful</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/QJO3ROT-A4E?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=QJO3ROT-A4E&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QJ
 O3ROT-A4E/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/bW18JZRgko_mOGm5er8Yzg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E'/><author><name>OneDirectionVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/OneDirectionVEVO</uri><yt:userId>bW18JZRgko_mOGm5er8Yzg</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowed'/><yt:accessControl 
action='rat
 e' permission='allowed'/><yt:accessControl action='embed' permission='allowed'/><yt:accessControl 
action='list' permission='allowed'/><yt:accessControl action='autoPlay' 
permission='denied'/><yt:accessControl action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E/comments' 
countHint='1156223'/></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='https://www.youtube.com/v/QJO3ROT-A4E?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='207' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='OneDirectionVEVO' 
yt:type='partner'>onedirectionvevo</media:credit><media:descript
 ion type='plain'>Click here to purchase the single http://www.smarturl.it/1dwmybitunes
+< 
+< Music video by One Direction performing What Makes You Beautiful. (C) 2011 Simco Limited under exclusive 
license to Sony Music Entertainment UK Limited
+< #VEVOCertified on April 16, 2012. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=QJO3ROT-A4E&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='allow'>SZ SY SX JP SR SV ST SK SJ SI SH SO SN SM SL SC SB SA JO SG SE SD CK CI 
CH CO CN CM CL CC CA CG CF ML CD CZ CY CX CR CW CV CU IM ZA IO IN ZM RW IE ID RS DJ ZW IQ RE IS IR IT BL BM 
BN BO BH BI BJ JE BD BE BF BG BA BB BY BZ BT BV BW BQ BR BS HK HN HM UY QA KP JM HR KW HT HU AE AD AG AF AI 
AM AL AO AQ AS AR AU AT AW KZ AX AZ YE KY PR PS OM PW PT PY PA PF PG PE PK PH PN PL PM TZ NA NC WS NE NF NG 
NI FR NL NO NP WF FJ FK FM FO DZ NZ KI GG GF GE GD GB GA GN GM GL GI GH GW GU GT GS GR GQ GP NR GY ME VI MG 
MF MA MC MM ET MO MN FI MH MK ER MU MT MW MV MQ MP MS MR EE EG MY MX EC MZ DM VA LR VC DK UM YT LB L
 C MD UG UA LK LI LV DO LT LU NU LS VU UZ US LY VN RU TN KR TL TM TJ TK TH TF TG TD TC VE LA KG ES KE TV TW 
TT KH TR KN KM TO IL VG RO EH</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/QJO3ROT-A4E/default.jpg' height='90' width='120' time='00:01:43.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/QJO3ROT-A4E/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/QJO3ROT-A4E/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/QJO3ROT-A4E/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/QJO3ROT-A4E/1.jpg' height='90' width='120' 
time='00:00:51.750' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/QJO3ROT-A4E/2.jpg' 
height='90' width='120' time='00:01:43.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/QJO3ROT-A4E/3.jpg' height='90' width='120' 
 time='00:02:35.250' yt:name='end'/><media:title type='plain'>One Direction - What Makes You 
Beautiful</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='207'/><yt:uploaded>2011-08-19T15:00:00.000Z</yt:uploaded><yt:uploaderId>UCbW18JZRgko_mOGm5er8Yzg</yt:uploaderId><yt:videoid>QJO3ROT-A4E</yt:videoid></media:group><gd:rating
 average='4.569341' max='5' min='1' numRaters='1722226' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='397081262'/><yt:rating numDislikes='185423' numLikes='1536803'/></entry><entry 
gd:etag='W/&quot;Dk8MQn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:rYEDA3JcQqw</id><published>2010-11-30T23:16:19.000Z</published><updated>2013-06-27T01:01:23.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</yt:state></app:control><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.c
 om/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Music' 
label='Music'/><title>Adele - Rolling In The Deep</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/rYEDA3JcQqw?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=rYEDA3JcQqw&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/complaints'/><link rel='http://
 gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/omP_epzeKzvBX156r6pm1Q'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw'/><author><name>AdeleVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/AdeleVEVO</uri><yt:userId>omP_epzeKzvBX156r6pm1Q</yt:userId></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='denied'/><yt:accessControl action='synd
 icate' permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/comments' 
countHint='434025'/></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='https://www.youtube.com/v/rYEDA3JcQqw?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='235' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='AdeleVEVO' 
yt:type='partner'>adelevevo</media:credit><media:description type='plain'>Music video by Adele performing 
Rolling In The Deep. (C) 2010 XL Recordings Ltd.
+< 
+< #VEVOCertified on July 25, 2011. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=rYEDA3JcQqw&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/rYEDA3JcQqw/default.jpg' height='90' width='120' time='00:01:57.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/rYEDA3JcQqw/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/rYEDA3JcQqw/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/rYEDA3JcQqw/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/rYEDA3JcQqw/1.jpg' height='90' width='120' 
time
 ='00:00:58.750' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/rYEDA3JcQqw/2.jpg' 
height='90' width='120' time='00:01:57.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/rYEDA3JcQqw/3.jpg' height='90' width='120' time='00:02:56.250' 
yt:name='end'/><media:title type='plain'>Adele - Rolling In The 
Deep</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='235'/><yt:uploaded>2010-11-30T23:16:19.000Z</yt:uploaded><yt:uploaderId>UComP_epzeKzvBX156r6pm1Q</yt:uploaderId><yt:videoid>rYEDA3JcQqw</yt:videoid></media:group><gd:rating
 average='4.9011893' max='5' min='1' numRaters='1539713' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='412797044'/><yt:rating numDislikes='38035' numLikes='1501678'/></entry><entry 
gd:etag='W/&quot;Dk8NR347eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:j5-yKhDd64s</id><published>2010-06-05T04:41:59.000Z</published><updated>2013-06-27T01:01:36.00
 0Z</updated><app:control><yt:state name='restricted' reasonCode='limitedSyndication'>Syndication of this 
video was restricted.</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='Music' label='Music'/><title>Eminem - Not 
Afraid</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/j5-yKhDd64s?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=j5-yKhDd64s&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.co
 m/feeds/api/videos/j5-yKhDd64s/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/20vb-R_px4CguHzzBPhoyQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s'/><author><name>EminemVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/EminemVEVO</uri><yt:userId>20vb-R_px4CguHzzBPhoyQ</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowed'/><yt:accessControl ac
 tion='rate' permission='allowed'/><yt:accessControl action='embed' permission='allowed'/><yt:accessControl 
action='list' permission='allowed'/><yt:accessControl action='autoPlay' 
permission='denied'/><yt:accessControl action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s/comments' 
countHint='1385502'/></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='https://www.youtube.com/v/j5-yKhDd64s?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='259' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='EminemVEVO' 
yt:type='partner'>eminemvevo</media:credit><media:description
  type='plain'>Music video by Eminem performing Not Afraid. (C) 2010 Aftermath Records
+< #VEVOCertified on September 11, 2010.http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=j5-yKhDd64s&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/j5-yKhDd64s/default.jpg' height='90' width='120' time='00:02:09.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/j5-yKhDd64s/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/j5-yKhDd64s/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/j5-yKhDd64s/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/j5-yKhDd64s/1.jpg' height='90' width='120' 
 time='00:01:04.750' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/j5-yKhDd64s/2.jpg' 
height='90' width='120' time='00:02:09.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/j5-yKhDd64s/3.jpg' height='90' width='120' time='00:03:14.250' 
yt:name='end'/><media:title type='plain'>Eminem - Not 
Afraid</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='259'/><yt:uploaded>2010-06-05T04:41:59.000Z</yt:uploaded><yt:uploaderId>UC20vb-R_px4CguHzzBPhoyQ</yt:uploaderId><yt:videoid>j5-yKhDd64s</yt:videoid></media:group><gd:rating
 average='4.8953757' max='5' min='1' numRaters='1517851' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='417008970'/><yt:rating numDislikes='39701' numLikes='1478150'/></entry><entry 
gd:etag='W/&quot;Dk4ESH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:d9NF2edxy-M</id><published>2012-01-06T06:43:30.000Z</published><updated>2013-06-27T01:01: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='Music' label='Music'/><title>Somebody 
That I Used to Know - Walk off the Earth (Gotye - Cover)</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/d9NF2edxy-M?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='http://gdata.youtube.com/schemas/2007#video.in-response-to' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9DGhAUcr4rQ'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=d9NF2edxy-M&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ra
 tings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=d9NF2edxy-M'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/9PEibgWOqZ-1I1JdxRmr6g'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M'/><author><name>walkofftheearth</name><uri>https://gdata.youtube.com/feeds/api/users/walkofftheearth</uri><yt:userId>9PEibgWOqZ-1I1JdxRmr6g</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/comments' 
countHint='246895'/></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='https://www.youtube.com/v/d9NF2edxy-M?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
type='application/x-shockwave-flash' medium='video
 ' isDefault='true' expression='full' duration='265' yt:format='5'/><media:content 
url='rtsp://v6.cache2.c.youtube.com/CkcLENy73wIaPgnjy3Hn2UXTdxMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='265' yt:format='1'/><media:content 
url='rtsp://v6.cache2.c.youtube.com/CkcLENy73wIaPgnjy3Hn2UXTdxMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='265' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' 
yt:display='walkofftheearth'>walkofftheearth</media:credit><media:description type='plain'>Download our new 
album R.E.V.O. here: http://smarturl.it/revo
+< WOTE merch available here: http://bit.ly/xZolh7
+< 
+< "Somebody That I Used To Know" Mp3 available here: http://bit.ly/xe65hD
+< 
+< WOTE TOUR DATES AND TICKET LINKS:
+< 
+< July 12 -- Vancouver Island, BC http://goo.gl/YzwYN
+< July 13 -- Calgary, AB http://goo.gl/Yaa6R
+< July 17 -- Peterborough, ON http://goo.gl/NJc1o
+< July 21 -- Chicago, IL http://goo.gl/NlfcD
+< August 3 -- Philadelphia, PA http://goo.gl/t9b4Z
+< August 10 -- Boston, MA http://goo.gl/KqkUv
+< August 17 -- Detroit, MI http://goo.gl/EVQMw
+< 
+< Walk off the Earth performs a cover of Gotye's "Somebody That I Used to Know" using five people on one 
guitar. 
+< 
+< We would like to thank Gotye and Kimbra for writing such a beautiful song. If you aren't familiar with 
their music, go and check them out right now!
+< 
+< Please help us share this by posting it on your Facebook and Twitter.
+< We will love you for eva and eva!
+< 
+< If you enjoyed this video then....
+< 
+< Hit the "Like" button
+< Add it to your Favorites
+< and of course subscribe to our channel if you haven't already!
+< 
+< Check out WOTE on Facebook: http://www.facebook.com/walkofftheearth
+< 
+< Follow us on Twitter: http://www.twitter.com/walkofftheearth
+< 
+< Subscribe to Gianni and Sarah's blog/music Channel: http://www.youtube.com/gianniandsarahmusic
+< 
+< Special thanks to Guilly for helping us with this video.
+< 
+< Performers from left to right:
+< Joel Cassady 
+< Sarah Blackwood
+< Gianni Luminati
+< Marshall
+< Taylor
+< 
+< Extra Tags:
+< Walk off the earth
+< wote
+< 2 guys 1 guitar
+< 3 guys 1 guitar
+< 4 guys 1 guitar
+< 5 guys 1 guitar
+< gianni luminati
+< gianni nicassio
+< sarah blackwood
+< gianni and sarah
+< marshall
+< walk off the earth</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=d9NF2edxy-M&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/d9NF2edxy-M/default.jpg' height='90' width='120' time='00:02:12.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/d9NF2edxy-M/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/d9NF2edxy-M/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/d9NF2edxy-M/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/d9NF2edxy-M/1.jpg' height='90' width='120' 
time='00:01:06.250' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/d9
 NF2edxy-M/2.jpg' height='90' width='120' time='00:02:12.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/d9NF2edxy-M/3.jpg' height='90' width='120' time='00:03:18.750' 
yt:name='end'/><media:title type='plain'>Somebody That I Used to Know - Walk off the Earth (Gotye - 
Cover)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='265'/><yt:uploaded>2012-01-06T06:43:30.000Z</yt:uploaded><yt:uploaderId>UC9PEibgWOqZ-1I1JdxRmr6g</yt:uploaderId><yt:videoid>d9NF2edxy-M</yt:videoid></media:group><gd:rating
 average='4.9550476' max='5' min='1' numRaters='1420885' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='151407628'/><yt:rating numDislikes='15968' numLikes='1404917'/></entry><entry 
gd:etag='W/&quot;Dk8BQn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:uelHwf8o7_U</id><published>2010-08-05T18:30:09.000Z</published><updated>2013-06-27T01:00:53.000Z</updated><app:control><yt:state
 name='re
 stricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>Eminem - 
Love The Way You Lie ft. Rihanna</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/uelHwf8o7_U?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=uelHwf8o7_U&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/ue
 lHwf8o7_U/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/20vb-R_px4CguHzzBPhoyQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U'/><author><name>EminemVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/EminemVEVO</uri><yt:userId>20vb-R_px4CguHzzBPhoyQ</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowed'/><yt:accessControl 
action='rate' permissio
 n='allowed'/><yt:accessControl action='embed' permission='allowed'/><yt:accessControl action='list' 
permission='allowed'/><yt:accessControl action='autoPlay' permission='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U/comments' 
countHint='761663'/></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='https://www.youtube.com/v/uelHwf8o7_U?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='268' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='EminemVEVO' 
yt:type='partner'>eminemvevo</media:credit><media:description type='plain'>Music vi
 deo by Eminem performing Love The Way You Lie. © 2010 Aftermath Records
+< #VEVOCertified on September 13, 2011. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=uelHwf8o7_U&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/uelHwf8o7_U/default.jpg' height='90' width='120' time='00:02:14' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/uelHwf8o7_U/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/uelHwf8o7_U/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/uelHwf8o7_U/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/uelHwf8o7_U/1.jpg' height='90' width='120' 
tim
 e='00:01:07' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/uelHwf8o7_U/2.jpg' height='90' 
width='120' time='00:02:14' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/uelHwf8o7_U/3.jpg' height='90' width='120' time='00:03:21' 
yt:name='end'/><media:title type='plain'>Eminem - Love The Way You Lie ft. 
Rihanna</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='268'/><yt:uploaded>2010-08-05T18:30:09.000Z</yt:uploaded><yt:uploaderId>UC20vb-R_px4CguHzzBPhoyQ</yt:uploaderId><yt:videoid>uelHwf8o7_U</yt:videoid></media:group><gd:rating
 average='4.867729' max='5' min='1' numRaters='1446787' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='571281782'/><yt:rating numDislikes='47842' numLikes='1398945'/></entry><entry 
gd:etag='W/&quot;DkAHRX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:Y4MnpzG5Sqc</id><published>2012-03-05T20:13:33.000Z</published><updated>2013-06-27T00:58: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='Nonprofit' label='Nonprofits &amp; 
Activism'/><title>KONY 2012</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/Y4MnpzG5Sqc?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=Y4MnpzG5Sqc&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='applicati
 on/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=Y4MnpzG5Sqc'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/TfiNvrrwuhJjyGuUjH_kEg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc'/><author><name>invisiblechildreninc</name><uri>https://gdata.youtube.com/feeds/api/users/invisiblechildreninc</uri><yt:userId>TfiNvrrwuhJjyGuUjH_kEg</yt:userId></author><yt:accessControl
 action='comment' permission='denied'/><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'/><yt:hd/><media:group><media:category label='Nonprofits &amp; Activism' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Nonprofit</media:category><media:content 
url='https://www.youtube.com/v/Y4MnpzG5Sqc?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='1799' 
yt:format='5'/><media:content 
url='rtsp://v7.cache7.c.youtube.com/CkcLENy73wIaPgmnSrkxpyeDYxMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
type='video/3gpp' medium='video' expression='full' duration='1799' yt:format='1'/><media:content url='rts
 
p://v7.cache7.c.youtube.com/CkcLENy73wIaPgmnSrkxpyeDYxMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='1799' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' 
yt:display='invisiblechildreninc'>invisiblechildreninc</media:credit><media:description type='plain'>To learn 
more about our work: http://spr.ly/pp_5
+< To become a member of Fourth Estate: http://spr.ly/pp_4E5
+< 
+< To see real time reports on LRA activity in the D.R.Congo, Central African Republic and South Sudan visit: 
http://www.lracrisistracker.com/
+< 
+< To learn more about Invisible Children's recovery efforts in the post-conflict regions of northern Uganda 
AND our work with communities currently affected in D.R.Congo, Central African Republic and South Sudan 
visit: http://www.invisiblechildren.com/programs.html
+< 
+< To view our responses to common questions we receive about the KONY 2012 film and campaign visit: 
+< http://invisiblechildren.com/about/q-and-a/
+< 
+< To see our worldwide youth mobilization initiatives:
+< http://invisiblechildren.com/program/international-events/
+< 
+< Learn More:  http://kony2012.com
+< Donate to Invisible Children: https://stayclassy.org/checkout/set-donation?eid=14711
+< 
+< For official MEDIA and artist REPRESENTATION ONLY: pr invisiblechildren com
+< 
+< DIRECTOR: Jason Russell LEAD EDITOR: Kathryn Lang EDITORS: Kevin Trout, Jay Salbert, Jesse Eslinger LEAD 
ANIMATOR: Chad Clendinen ANIMATOR: Jesse Eslinger 3-D MODELING: Victor Soto VISUAL EFFECTS: Chris Hop 
WRITERS: Jason Russell, Jedidiah Jenkins, Kathryn Lang, Danica Russell, Ben Keesey, Azy Groth PRODUCERS: 
Kimmy Vandivort, Heather Longerbeam, Chad Clendinen, Noelle Jouglet ORIGINAL SCORES: Joel P. West SOUND MIX: 
Stephen Grubbs, Mark Friedgen, Smart Post Sound COLOR: Damian Pelphrey, Company 3 CINEMATOGRAPHY: Jason 
Russell, Bobby Bailey, Laren Poole, Gavin Kelly, Chad Clendinen, Kevin Trout, Jay Salbert, Shannon Lynch, 
Mariana Blanco, Laurence Vannicelli PRODUCTION ASSISTANT: Jaime Landsverk LEAD DESIGNER: Tyler Fordham 
DESIGNERS: Chadwick Gantes, Stephen Witmer
+< 
+< MUSIC CREDIT:
+< "02 Ghosts I"
+< Performed by Nine Inch Nails
+< Written by Atticus Ross and Trent Reznor
+< Produced by Alan Moulder, Atticus Ross, and Trent Reznor
+< Nine Inch Nails appear courtesy of The Null Corporation
+< 
+< "Punching in a Dream"
+< Performed by The Naked and Famous
+< Written by Aaron Short, Alisa Xayalith, and Thom Powers
+< Produced by Thom Powers
+< The Naked and Famous appear courtesy of Somewhat Damaged and Universal Republic
+< 
+< "Arrival of the Birds"
+< Performed by The Cinematic Orchestra
+< Written by The Cinematic Orchestra
+< Produced by The Cinematic Orchestra
+< The Cinematic Orchestra appears courtesy of Disney Records
+< 
+< "Roll Away Your Stone"
+< Performed by Mumford and Sons
+< Written by Benjamin Lovett, Edward Dwane, Marcus Mumford, and Winston Marshall
+< Produced by Markus Dravs
+< Mumford and Sons appear courtesy of Glassnote Entertainment Group LLC
+< 
+< "On (Instrumental)"
+< Performed by Bloc Party
+< Written by Bloc Party
+< Produced by Jacknife Lee
+< Bloc Party appears courtesy of Vice Records
+< 
+< "A Dream within a Dream"
+< Performed by The Glitch Mob
+< The Glitch Mob appears courtesy of Glass Air
+< 
+< "I Can't Stop"
+< Performed by Flux Pavilion
+< Flux Pavilion appears courtesy of Circus Records Limited
+< 
+< This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License: 
http://creativecommons.org/licenses/by-nc-nd/3.0/</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=Y4MnpzG5Sqc&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/default.jpg' height='90' width='120' time='00:14:59.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/1.jpg' height='90' width='120' 
time='00:07:29.750' yt:nam
 e='start'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/2.jpg' height='90' width='120' 
time='00:14:59.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/3.jpg' 
height='90' width='120' time='00:22:29.250' yt:name='end'/><media:title type='plain'>KONY 
2012</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='1799'/><yt:uploaded>2012-03-05T20:13:33.000Z</yt:uploaded><yt:uploaderId>UCTfiNvrrwuhJjyGuUjH_kEg</yt:uploaderId><yt:videoid>Y4MnpzG5Sqc</yt:videoid></media:group><gd:rating
 average='4.5237823' max='5' min='1' numRaters='1586358' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='97855234'/><yt:rating numDislikes='188863' numLikes='1397495'/></entry><entry 
gd:etag='W/&quot;DkIMSX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:fLexgOxsZu0</id><published>2011-04-15T22:03:14.000Z</published><updated>2013-06-27T00:56:28.000Z</updated><app:control><yt:state
 name
 ='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>Bruno Mars - 
The Lazy Song [OFFICIAL VIDEO]</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/fLexgOxsZu0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=fLexgOxsZu0&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/vid
 eos/fLexgOxsZu0/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/oUM-UJ7rirJYP8CQ0EIaHA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0'/><author><name>Bruno 
Mars</name><uri>https://gdata.youtube.com/feeds/api/users/ElektraRecords</uri><yt:userId>oUM-UJ7rirJYP8CQ0EIaHA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderated'/><yt:accessControl 
action='rat
 e' 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='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0/comments' 
countHint='524936'/></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='https://www.youtube.com/v/fLexgOxsZu0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='209' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='Bruno Mars' 
yt:type='partner'>elektrarecords</media:credit><media:description type=
 'plain'>Available now on iTunes! http://smarturl.it/Doo-Wops
+< 'Unorthodox Jukebox' available now on iTunes! http://www.smarturl.it/unorthodoxjukebox
+< 
+< © 2011 WMG. The official music video for 'The Lazy Song' by Bruno Mars from doo-wops and hooligans - 
available now on Elektra Records!
+< 
+< Directed by Bruno Mars and Cameron Duddy
+< Choreographed and Performed by Poreotics: http://poreotics.com
+< 
+< http://brunomars.com 
+< http://facebook.com/thatbrunomars
+< http://twitter.com/brunomars
+< 
+< LYRICS
+< Today I don't feel like doing anything
+< I just wanna lay in my bed
+< Don't feel like picking up my phone
+< So leave a message at the tone
+< 'Cause today I swear I'm not doing anything.
+< 
+< Uh!
+< I'm gonna kick my feet up
+< Then stare at the fan
+< Turn the TV on, throw my hand in my pants
+< Nobody's gonna tell me I can't
+< 
+< I'll be lounging on the couch,
+< Just chillin' in my snuggie
+< Click to MTV, so they can teach me how to dougie
+< 'Cause in my castle I'm the freaking man
+< 
+< Oh, yes I said it
+< I said it
+< I said it 'cause I can
+< 
+< Today I don't feel like doing anything
+< I just wanna lay in my bed
+< Don't feel like picking up my phone
+< So leave a message at the tone
+< 'Cause today I swear I'm not doing anything
+< 
+< Nothing at all!
+< Ooh, hoo, ooh, hoo, ooh, ooh-ooh
+< Nothing at all
+< Ooh, hoo, ooh, hoo, ooh, ooh-ooh
+< 
+< Tomorrow I'll wake up, do some P90X
+< Meet a really nice girl, have some really nice sex
+< And she's gonna scream out: 'This is Great' (Oh my God, this is great)
+< Yeah
+< 
+< I might mess around, get my college degree
+< I bet my old man will be so proud of me
+< But sorry pops, you'll just have to wait
+< Haha
+< 
+< Oh, yes I said it
+< I said it
+< I said it 'cause I can
+< 
+< Today I don't feel like doing anything
+< I just wanna lay in my bed
+< Don't feel like picking up my phone
+< So leave a message at the tone
+< 'Cause today I swear I'm not doing anything
+< 
+< No, I ain't gonna comb my hair
+< 'Cause I ain't going anywhere
+< No, no, no, no, no, no, no, no, no
+< I'll just strut in my birthday suit
+< And let everything hang loose
+< Yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah
+< 
+< Ooh
+< Today I don't feel like doing anything
+< I just wanna lay in my bed
+< Don't feel like picking up my phone
+< So leave a message at the tone
+< 'Cause today I swear I'm not doing anything
+< 
+< Nothing at all
+< Nothing at all
+< Nothing at all
+< 
+< Comic Chimp Mask used by permission of Easter Unlimited, Inc. / FunWorld Div. All Rights Reserved. 
Copyright 2009.</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=fLexgOxsZu0&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/fLexgOxsZu0/default.jpg' height='90' width='120' time='00:01:44.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/fLexgOxsZu0/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/fLexgOxsZu0/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/fLexgOxsZu0/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/fLexgOxsZu0/1.jpg' height='90' w
 idth='120' time='00:00:52.250' yt:name='start'/><media:thumbnail 
url='https://i1.ytimg.com/vi/fLexgOxsZu0/2.jpg' height='90' width='120' time='00:01:44.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/fLexgOxsZu0/3.jpg' height='90' width='120' 
time='00:02:36.750' yt:name='end'/><media:title type='plain'>Bruno Mars - The Lazy Song [OFFICIAL 
VIDEO]</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='209'/><yt:uploaded>2011-04-15T22:03:14.000Z</yt:uploaded><yt:uploaderId>UCoUM-UJ7rirJYP8CQ0EIaHA</yt:uploaderId><yt:videoid>fLexgOxsZu0</yt:videoid></media:group><gd:rating
 average='4.8599844' max='5' min='1' numRaters='1341908' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='400267498'/><yt:rating numDislikes='46972' numLikes='1294936'/></entry><entry 
gd:etag='W/&quot;Dk8DRX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:Ys7-6_t7OEQ</id><published>2012-10-12T15:55:06.000Z</published>
 <updated>2013-06-27T01:01:14.000Z</updated><app:control><yt:state name='restricted' 
reasonCode='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>Justin 
Bieber - Beauty And A Beat ft. Nicki Minaj</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/Ys7-6_t7OEQ?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=Ys7-6_t7OEQ&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.rating
 s' type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hkj014U2CQ2Nv0UZeYpE_A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ'/><author><name>JustinBieberVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/JustinBieberVEVO</uri><yt:userId>Hkj014U2CQ2Nv0UZeYpE_A</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' permission='allowed'/><yt:acces
 sControl 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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/comments' 
countHint='583797'/></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='https://www.youtube.com/v/Ys7-6_t7OEQ?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='294' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='J
 ustinBieberVEVO' yt:type='partner'>justinbiebervevo</media:credit><media:description type='plain'>Music 
video by Justin Bieber performing Beauty And A Beat. ©:  The Island Def Jam Music 
Group</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=Ys7-6_t7OEQ&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/default.jpg' height='90' width='120' time='00:02:27' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/sddefault.jpg' height='480' width='640' yt:name='sddefault'/><media
 :thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/1.jpg' height='90' width='120' time='00:01:13.500' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/2.jpg' height='90' width='120' 
time='00:02:27' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/3.jpg' 
height='90' width='120' time='00:03:40.500' yt:name='end'/><media:title type='plain'>Justin Bieber - Beauty 
And A Beat ft. Nicki Minaj</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='294'/><yt:uploaded>2012-10-12T15:55:06.000Z</yt:uploaded><yt:uploaderId>UCHkj014U2CQ2Nv0UZeYpE_A</yt:uploaderId><yt:videoid>Ys7-6_t7OEQ</yt:videoid></media:group><gd:rating
 average='4.1822934' max='5' min='1' numRaters='1541277' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='257637939'/><yt:rating numDislikes='315078' numLikes='1226199'/></entry><entry 
gd:etag='W/&quot;Dk8GRH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com
 
,2008:video:AbPED9bisSc</id><published>2012-09-20T17:04:23.000Z</published><updated>2013-06-27T01:00:25.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>One 
Direction - Live While We're Young</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/AbPED9bisSc?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=AbPED9bisSc&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/responses
 '/><link rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/bW18JZRgko_mOGm5er8Yzg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc'/><author><name>OneDirectionVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/OneDirectionVEVO</uri><yt:userId>bW18JZRgko_mOGm5er8Yzg</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:ac
 cessControl 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='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/comments' 
countHint='651427'/></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='https://www.youtube.com/v/AbPED9bisSc?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='198' 
yt:format='5'/>
 <media:credit role='uploader' scheme='urn:youtube' yt:display='OneDirectionVEVO' 
yt:type='partner'>onedirectionvevo</media:credit><media:description type='plain'>TAKE ME HOME The brand new 
album out now!
+< Featuring Live While We're Young and Little Things.
+< iTunes: http://smarturl.it/takemehome1D
+< Amazon: http://amzn.to/OXqkoD
+< Official Store: http://myplay.me/vxl
+< 
+< 
+< Music video by One Direction performing Live While We're Young. (C) 2012 Simco Limited under exclusive 
license to Sony Music Entertainment UK Limited</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=AbPED9bisSc&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/AbPED9bisSc/default.jpg' height='90' width='120' time='00:01:39' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/AbPED9bisSc/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/AbPED9bisSc/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/AbPED9bisSc/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/A
 bPED9bisSc/1.jpg' height='90' width='120' time='00:00:49.500' yt:name='start'/><media:thumbnail 
url='https://i1.ytimg.com/vi/AbPED9bisSc/2.jpg' height='90' width='120' time='00:01:39' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/AbPED9bisSc/3.jpg' height='90' width='120' 
time='00:02:28.500' yt:name='end'/><media:title type='plain'>One Direction - Live While We're 
Young</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='198'/><yt:uploaded>2012-09-20T17:04:23.000Z</yt:uploaded><yt:uploaderId>UCbW18JZRgko_mOGm5er8Yzg</yt:uploaderId><yt:videoid>AbPED9bisSc</yt:videoid></media:group><gd:rating
 average='4.7382474' max='5' min='1' numRaters='1303368' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='216674543'/><yt:rating numDislikes='85290' numLikes='1218078'/></entry><entry 
gd:etag='W/&quot;Dk8ERH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:t4H_Zoh7G5A</id><published>2011-03-04T01:
 13:27.000Z</published><updated>2013-06-27T01:00:05.000Z</updated><app:control><yt:state name='restricted' 
reasonCode='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>Jennifer 
Lopez - On The Floor ft. Pitbull</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/t4H_Zoh7G5A?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=t4H_Zoh7G5A&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/responses'/><link 
rel='http://gdata.youtube.com/schemas/200
 7#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/x1f1u4XlFFr0YgqF3wB4lQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A'/><author><name>JenniferLopezVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/JenniferLopezVEVO</uri><yt:userId>x1f1u4XlFFr0YgqF3wB4lQ</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' permission='all
 owed'/><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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/comments' 
countHint='549454'/></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='https://www.youtube.com/v/t4H_Zoh7G5A?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='267' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtub
 e' yt:display='JenniferLopezVEVO' yt:type='partner'>jenniferlopezvevo</media:credit><media:description 
type='plain'>Music video by Jennifer Lopez performing On The Floor feat. Pitbull. © 2011 Island Records
+< #VEVOCertified on April 15, 2012. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=t4H_Zoh7G5A&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/default.jpg' height='90' width='120' time='00:02:13.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/1.jpg' height='90' width='120' 
tim
 e='00:01:06.750' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/2.jpg' 
height='90' width='120' time='00:02:13.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/3.jpg' height='90' width='120' time='00:03:20.250' 
yt:name='end'/><media:title type='plain'>Jennifer Lopez - On The Floor ft. 
Pitbull</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='267'/><yt:uploaded>2011-03-04T01:13:27.000Z</yt:uploaded><yt:uploaderId>UCx1f1u4XlFFr0YgqF3wB4lQ</yt:uploaderId><yt:videoid>t4H_Zoh7G5A</yt:videoid></media:group><gd:rating
 average='4.703179' max='5' min='1' numRaters='1294733' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='675859664'/><yt:rating numDislikes='96076' numLikes='1198657'/></entry><entry 
gd:etag='W/&quot;Dk8FQH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:hLQl3WQQoQ0</id><published>2011-09-29T23:56:00.000Z</published><updated>2013-06-
 27T01:00:11.000Z</updated><app:control><yt:state name='restricted' 
reasonCode='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>Adele - 
Someone Like You</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/hLQl3WQQoQ0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=hLQl3WQQoQ0&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='https
 ://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/omP_epzeKzvBX156r6pm1Q'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0'/><author><name>AdeleVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/AdeleVEVO</uri><yt:userId>omP_epzeKzvBX156r6pm1Q</yt:userId></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='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/comments' 
countHint='250006'/></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='https://www.youtube.com/v/hLQl3WQQoQ0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='285' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='AdeleVEVO' 
yt:type='partner'>adelevevo</media:credit><med
 ia:description type='plain'>Music video by Adele performing Someone Like You. (C) 2011 XL Recordings 
Ltd</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=hLQl3WQQoQ0&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/default.jpg' height='90' width='120' time='00:02:22.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/1.jpg' height='90' width='120' 
t
 ime='00:01:11.250' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/2.jpg' 
height='90' width='120' time='00:02:22.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/3.jpg' height='90' width='120' time='00:03:33.750' 
yt:name='end'/><media:title type='plain'>Adele - Someone Like 
You</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='285'/><yt:uploaded>2011-09-29T23:56:00.000Z</yt:uploaded><yt:uploaderId>UComP_epzeKzvBX156r6pm1Q</yt:uploaderId><yt:videoid>hLQl3WQQoQ0</yt:videoid></media:group><gd:rating
 average='4.897775' max='5' min='1' numRaters='1164920' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='280412521'/><yt:rating numDislikes='29771' numLikes='1135149'/></entry><entry 
gd:etag='W/&quot;Dk8CRn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:wcLNteez3c4</id><published>2012-08-14T15:00:06.000Z</published><updated>2013-06-27T01:01:07.000
 Z</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'/><title>PSY (ft. 
HYUNA) 오빤 딱 내 스타일</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/wcLNteez3c4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='http://gdata.youtube.com/schemas/2007#video.in-response-to' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=wcLNteez3c4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='applicati
 on/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=wcLNteez3c4'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/rDkAvwZum-UTjHmzDI2iIw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4'/><author><name>officialpsy</name><uri>https://gdata.youtube.com/feeds/api/users/officialpsy</uri><yt:userId>rDkAvwZum-UTjHmzDI2iIw</yt:userId></author><yt:accessControl
 action='com
 ment' 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='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/comments' 
countHint='423006'/></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='https://www.youtube.com/v/wcLNteez3c4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression=
 'full' duration='227' yt:format='5'/><media:content 
url='rtsp://r12---sn-aiglln7r.c.youtube.com/CkcLENy73wIaPgnO3bPntc3CwRMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='227' yt:format='1'/><media:content 
url='rtsp://r12---sn-aiglln7r.c.youtube.com/CkcLENy73wIaPgnO3bPntc3CwRMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='227' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='officialpsy' 
yt:type='partner'>officialpsy</media:credit><media:description type='plain'>6TH STUDIO ALBUM [PSY 6甲] 
+< ▶ NOW available on iTunes: http://smarturl.it/psy6gap1
+< ▶ Official PSY Online Store US &amp; International : 
+< http://psy.shop.bravadousa.com/
+< ▶ About PSY from YG Ent.: http://smarturl.it/YGfamilyAboutPSY
+< ▶ PSY's Products on eBay: http://stores.ebay.com/ygentertainment
+< ▶ YG-eShop: http://www.ygeshop.com
+< 
+< 
+< Psy's 2nd Version of "GANGNAM STYLE" by Hyuna Released!
+< Gangnam Style - Hyuna Ver. was discussed during the making of the music video for "Gangnam Style." It can 
be perceived as the girl version for "Gangnam Style." The main female for this music video is 4minute's 
Hyuna. "Gangnam Style" is reborn with 'Oppa Is Just My Style' by Hyuna!
+< 
+< '강남스타일' 뮤직비디오 제작 당시 함께 기획됐던 '오빤 딱 내 스타일'은 여성의 관점에서 '강남스타일'을 재해석한 것으로 걸그룹 포미닛의 현아가 주인공으로 출연한 사실이 알려져 화제를 모은 
바 있다. 싸이는 '오빤 딱 내 스타일' 뮤직비디오 공개로 전세계인들과 다시 한 번 즐겁게 이번 '강남 스타일'의 열기를 이어나갈 계획이다!
+< 
+< For More Information @
+< http://www.facebook.com/officialpsy
+< http://twitter.com/psy_oppa
+< http://twitter.com/ygent_official
+< http://me2day.net/psyfive
+< http://www.psypark.com
+< App Store: http://goo.gl/l9TU6
+< Google Play: http://goo.gl/UiEn1</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=wcLNteez3c4&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/wcLNteez3c4/default.jpg' height='90' width='120' time='00:01:53.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/wcLNteez3c4/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/wcLNteez3c4/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/wcLNteez3c4/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/wcLNteez3c4/1.jpg' height='90' width='120' 
time='00:00:56.750' yt:name='start'/><media:thumbnail url='https://i1.y
 timg.com/vi/wcLNteez3c4/2.jpg' height='90' width='120' time='00:01:53.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/wcLNteez3c4/3.jpg' height='90' width='120' 
time='00:02:50.250' yt:name='end'/><media:title type='plain'>PSY (ft. HYUNA) 오빤 딱 내 
스타일</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='227'/><yt:uploaded>2012-08-14T15:00:06.000Z</yt:uploaded><yt:uploaderId>UCrDkAvwZum-UTjHmzDI2iIw</yt:uploaderId><yt:videoid>wcLNteez3c4</yt:videoid></media:group><gd:rating
 average='4.2677226' max='5' min='1' numRaters='1342912' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='381191163'/><yt:rating numDislikes='245846' numLikes='1097066'/></entry><entry 
gd:etag='W/&quot;Dk8GR347eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:lWA2pjMjpBs</id><published>2012-11-09T00:18:50.000Z</published><updated>2013-06-27T01:00:26.000Z</updated><app:control><yt:state
 name='restricted' 
 reasonCode='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>Rihanna - 
Diamonds</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/lWA2pjMjpBs?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=lWA2pjMjpBs&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/ratings'/><link rel='ht
 tp://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/2xskkQVFEpLcGFnNSLQY0A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs'/><author><name>RihannaVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/RihannaVEVO</uri><yt:userId>2xskkQVFEpLcGFnNSLQY0A</yt:userId></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='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/comments' 
countHint='223154'/></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='https://www.youtube.com/v/lWA2pjMjpBs?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='283' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='RihannaVEVO' 
yt:type='partner'>rihannavevo</media:credit><media:description type='plain'>Pre-order new album Unapologetic, 
out
  worldwide Monday, November 19: http://smarturl.it/UnapologeticDlx
+< 
+< 
+< 
+< Music video by Rihanna performing Diamonds. ©:  The Island Def Jam Music 
Group</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=lWA2pjMjpBs&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/lWA2pjMjpBs/default.jpg' height='90' width='120' time='00:02:21.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/lWA2pjMjpBs/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/1.jpg' height='90' width='120' 
time='00:01:10.750' yt:n
 ame='start'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/2.jpg' height='90' width='120' 
time='00:02:21.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/3.jpg' 
height='90' width='120' time='00:03:32.250' yt:name='end'/><media:title type='plain'>Rihanna - 
Diamonds</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='283'/><yt:uploaded>2012-11-09T00:18:50.000Z</yt:uploaded><yt:uploaderId>UC2xskkQVFEpLcGFnNSLQY0A</yt:uploaderId><yt:videoid>lWA2pjMjpBs</yt:videoid></media:group><gd:rating
 average='4.784351' max='5' min='1' numRaters='1139740' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='300067447'/><yt:rating numDislikes='61446' numLikes='1078294'/></entry><entry 
gd:etag='W/&quot;Dk8DQ347eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:4GuqB1BQVr4</id><published>2012-05-03T23:50:06.000Z</published><updated>2013-06-27T01:01:12.000Z</updated><app:control><yt:s
 tate name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>Justin 
Bieber - Boyfriend</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/4GuqB1BQVr4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=4GuqB1BQVr4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB
 1BQVr4/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hkj014U2CQ2Nv0UZeYpE_A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4'/><author><name>JustinBieberVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/JustinBieberVEVO</uri><yt:userId>Hkj014U2CQ2Nv0UZeYpE_A</yt:userId></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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4/comments' 
countHint='835601'/></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='https://www.youtube.com/v/4GuqB1BQVr4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='211' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='JustinBieberVEVO' 
yt:type='partner'>justinbiebervevo</media:credit><media:description 
 type='plain'>Music video by Justin Bieber performing Boyfriend. ©: 2012 The Island Def Jam Music Group
+< #VEVOCertified on July 11, 2012. http://www.youtube.com/vevocertified
+< 
+< Buy It Now!
+< iTunes - http://smarturl.it/boyfriend
+< Amazon - http://smarturl.it/boyfriendamzn</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=4GuqB1BQVr4&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/4GuqB1BQVr4/default.jpg' height='90' width='120' time='00:01:45.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/4GuqB1BQVr4/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/4GuqB1BQVr4/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/4GuqB1BQVr4/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/4GuqB1BQVr4/1.jpg' height='90' width='120' 
time='00:00:52.750' yt:name='start'/><media:thumbnail url='htt
 ps://i1.ytimg.com/vi/4GuqB1BQVr4/2.jpg' height='90' width='120' time='00:01:45.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/4GuqB1BQVr4/3.jpg' height='90' width='120' 
time='00:02:38.250' yt:name='end'/><media:title type='plain'>Justin Bieber - 
Boyfriend</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='211'/><yt:uploaded>2012-05-03T23:50:06.000Z</yt:uploaded><yt:uploaderId>UCHkj014U2CQ2Nv0UZeYpE_A</yt:uploaderId><yt:videoid>4GuqB1BQVr4</yt:videoid></media:group><gd:rating
 average='3.7182097' max='5' min='1' numRaters='1567024' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='250256297'/><yt:rating numDislikes='502149' numLikes='1064875'/></entry><entry 
gd:etag='W/&quot;Dk4FQX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:T4cdfRohhcg</id><published>2013-01-07T19:57:08.000Z</published><updated>2013-06-27T01:01:50.000Z</updated><app:control><yt:state
 name='restricted' reason
 Code='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>One 
Direction - Kiss You (Official)</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/T4cdfRohhcg?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=T4cdfRohhcg&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/ratings'/><l
 ink rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/bW18JZRgko_mOGm5er8Yzg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg'/><author><name>OneDirectionVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/OneDirectionVEVO</uri><yt:userId>bW18JZRgko_mOGm5er8Yzg</yt:userId></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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/comments' 
countHint='545043'/></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='https://www.youtube.com/v/T4cdfRohhcg?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='191' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='OneDirectionVEVO' 
yt:type='partner'>onedirectionvevo</media:credit><media:description type='plain'>Music 
 video by One Direction performing Kiss You. (C) 2013 Simco Limited under exclusive licence to Sony Music 
Entertainment UK Limited
+< #VEVOCertified on March 21, 2013. http://vevo.com/certified 
http://youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=T4cdfRohhcg&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='allow'>SZ SY JP SR SV YT SK JE SI SH SO SN SM SL SC JM SA JO SG SE SD CK CI CH 
CO CN CM CL CC CA CG CF CD CZ CY CX CR CV CU IM ZA IO IN RU RW IE ID RS ZW IQ RE IS IR IT ET BL BM BN BO BH 
BI BJ SJ BD BE BF BG BA BB BY BZ BT BV BW BR BS HK HN HM QA KP SB HR KW HT HU AE AD AG AF AI AM AL AO AQ AS 
AR AU AT AW KZ AX AZ YE KY PR PS OM PW PT PY PA PF PG PE PK PH PN PL PM KG NA NC WS NE NF NG NI FR NL NO NP 
WF FJ FK FM FO LB NZ KI GG GF GE GD GB GA GN GM GL GI GH GW GU GT GS GR GQ GP NR GY ME VI MG MF MA VN MM ML 
MO MN FI VE MK VG MU MT MW MV MQ EH MS MR EE EG MY MX EC MZ KH LR LU DJ VC LS UM DZ LC LA UG UA LK LI LV DO 
 LT DM UY DK VU UZ US LY MC ST ZM VA TN KR TL TM TJ TK TH TF TG TD TC MH TZ ES KE TV TW TT ER TR KN KM MD TO 
NU IL RO MP</media:restriction><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/default.jpg' 
height='90' width='120' time='00:01:35.500' yt:name='default'/><media:thumbnail 
url='https://i1.ytimg.com/vi/T4cdfRohhcg/mqdefault.jpg' height='180' width='320' 
yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/hqdefault.jpg' height='360' 
width='480' yt:name='hqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/sddefault.jpg' 
height='480' width='640' yt:name='sddefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/T4cdfRohhcg/1.jpg' height='90' width='120' time='00:00:47.750' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/2.jpg' height='90' width='120' 
time='00:01:35.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/3.jpg' 
height='90' width='120' time='00:02:23.25
 0' yt:name='end'/><media:title type='plain'>One Direction - Kiss You 
(Official)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='191'/><yt:uploaded>2013-01-07T19:57:08.000Z</yt:uploaded><yt:uploaderId>UCbW18JZRgko_mOGm5er8Yzg</yt:uploaderId><yt:videoid>T4cdfRohhcg</yt:videoid></media:group><gd:rating
 average='4.7716846' max='5' min='1' numRaters='1127091' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='141863959'/><yt:rating numDislikes='64333' numLikes='1062758'/></entry><entry 
gd:etag='W/&quot;Dk4EQX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:_OBlgSz8sSM</id><published>2007-05-22T20:29:24.000Z</published><updated>2013-06-27T01:01:40.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'/><title>Charlie 
bit my finger - agai
 n !</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/_OBlgSz8sSM?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=_OBlgSz8sSM&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/related'/><link rel=
 'http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=_OBlgSz8sSM'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/fHZCZHykS3IQDPyFfnqjWg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM'/><author><name>HDCYT</name><uri>https://gdata.youtube.com/feeds/api/users/HDCYT</uri><yt:userId>fHZCZHykS3IQDPyFfnqjWg</yt:userId></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:c
 omments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/comments' 
countHint='813265'/></gd:comments><media:group><media:category label='Comedy' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Comedy</media:category><media:content 
url='https://www.youtube.com/v/_OBlgSz8sSM?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='56' 
yt:format='5'/><media:content 
url='rtsp://r17---sn-aigllned.c.youtube.com/CkcLENy73wIaPgkjsfwsgWXg_BMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='56' yt:format='1'/><media:content 
url='rtsp://r17---sn-aigllned.c.youtube.com/CkcLENy73wIaPgkjsfwsgWXg_BMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQ
 nGDmDA==/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='56' 
yt:format='6'/><media:credit role='uploader' scheme='urn:youtube' yt:display='HDCYT' 
yt:type='partner'>hdcyt</media:credit><media:description type='plain'>T-Shirts 
http://charliebitme.firebrandstore.com/
+< iPhone  http://itunes.apple.com/gb/app/charlie-bit-me!!!/id494858348?mt=8
+< Android  https://play.google.com/store/apps/details?id=com.viralspiral.charlie 
+< Even had I thought of trying to get my boys to do this I probably couldn't have. Neither were coerced into 
any of this and neither were hurt (for very long anyway).  This was just one of those moments when I had the 
video camera out because the boys were being fun and they provided something really very funny.
+< 
+< FAQ Harry is 8 3/4, Charlie is 6 1/2, Jasper is  4 1/4, Rupert is 1 1/2
+< (November 2012)
+< 
+< Harry and Charlie Blogging - Charlie Bit My Finger Again!
+< http://harryandcharlie.blogspot.com/
+< 
+< Twitter
+< http://twitter.com/harryandcharlie</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=_OBlgSz8sSM&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/_OBlgSz8sSM/default.jpg' height='90' width='120' time='00:00:28' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/_OBlgSz8sSM/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/_OBlgSz8sSM/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/_OBlgSz8sSM/1.jpg' height='90' width='120' time='00:00:14' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/_OBlgSz8sSM/2.jpg' height='90' width='120' 
time='00:00:28' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/_OBlgSz8sSM/3.jpg' 
height='90' width='120' time='00:00:42' yt:name
 ='end'/><media:title type='plain'>Charlie bit my finger - again !</media:title><yt:duration 
seconds='56'/><yt:uploaded>2007-05-22T20:29:24.000Z</yt:uploaded><yt:uploaderId>UCfHZCZHykS3IQDPyFfnqjWg</yt:uploaderId><yt:videoid>_OBlgSz8sSM</yt:videoid></media:group><gd:rating
 average='4.493818' max='5' min='1' numRaters='1205179' 
rel='http://schemas.google.com/g/2005#overall'/><yt:recorded>2007-03-19</yt:recorded><yt:statistics 
favoriteCount='0' viewCount='529927500'/><yt:rating numDislikes='152510' numLikes='1052669'/></entry><entry 
gd:etag='W/&quot;Dk4FRH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:1G4isv_Fylg</id><published>2011-10-19T02:42:54.000Z</published><updated>2013-06-27T01:01:55.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</yt:state></app:control><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='h
 ttp://gdata.youtube.com/schemas/2007/categories.cat' term='Music' label='Music'/><title>Coldplay - 
Paradise</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/1G4isv_Fylg?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=1G4isv_Fylg&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type=
 'application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/DPM_n1atn2ijUwHd0NNRQw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg'/><author><name>ColdplayVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/ColdplayVEVO</uri><yt:userId>DPM_n1atn2ijUwHd0NNRQw</yt:userId></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='denied'/><yt:accessControl action='syndicate' permission='allowed'/><gd:comments><gd
 :feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/comments' 
countHint='228701'/></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='https://www.youtube.com/v/1G4isv_Fylg?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='261' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='ColdplayVEVO' 
yt:type='partner'>coldplayvevo</media:credit><media:description type='plain'>Click here to buy Mylo Xyloto 
http://links.emi.com/coldplayMX 
+< This video was directed by Mat Whitecross in 2011 and was filmed in South Africa and London
+< Music video by Coldplay performing Paradise. (C) 2011 EMI Records Ltd This label copy information is the 
subject of copyright protection. All rights reserved.(C) 2011 EMI Records Ltd 
+< #VEVOCertified on April 19, 2012. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=1G4isv_Fylg&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/1G4isv_Fylg/default.jpg' height='90' width='120' time='00:02:10.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/1G4isv_Fylg/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/1G4isv_Fylg/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/1G4isv_Fylg/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/1G4isv_Fylg/1.jpg' height='90' width='120' 
tim
 e='00:01:05.250' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/1G4isv_Fylg/2.jpg' 
height='90' width='120' time='00:02:10.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/1G4isv_Fylg/3.jpg' height='90' width='120' time='00:03:15.750' 
yt:name='end'/><media:title type='plain'>Coldplay - 
Paradise</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='261'/><yt:uploaded>2011-10-19T02:42:54.000Z</yt:uploaded><yt:uploaderId>UCDPM_n1atn2ijUwHd0NNRQw</yt:uploaderId><yt:videoid>1G4isv_Fylg</yt:videoid></media:group><gd:rating
 average='4.9265857' max='5' min='1' numRaters='1011136' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='213893594'/><yt:rating numDislikes='18558' numLikes='992578'/></entry><entry 
gd:etag='W/&quot;Dk8DRn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:kYtGl1dX5qI</id><published>2012-11-29T02:50:08.000Z</published><updated>2013-06-27T01:01:17.000Z</upda
 ted><app:control><yt:state name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>will.i.am - 
Scream &amp; Shout ft. Britney Spears</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/kYtGl1dX5qI?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=kYtGl1dX5qI&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='ht
 tps://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/_d6W32xuEAyPlf_KmvvwEA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI'/><author><name>williamVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/williamVEVO</uri><yt:userId>_d6W32xuEAyPlf_KmvvwEA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowe
 d'/><yt:accessControl action='rate' permission='allowed'/><yt:accessControl action='embed' 
permission='allowed'/><yt:accessControl action='list' permission='allowed'/><yt:accessControl 
action='autoPlay' permission='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/comments' 
countHint='287454'/></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='https://www.youtube.com/v/kYtGl1dX5qI?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='292' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='williamVEVO' 
yt:type='partner'>williamvevo</media:
 credit><media:description type='plain'>Buy Now!
+< iTunes: http://smarturl.it/ScreamNShout 
+< 
+< 
+< Music video by will.i.am performing Scream &amp; Shout. © 2012 
Interscope</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=kYtGl1dX5qI&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/kYtGl1dX5qI/default.jpg' height='90' width='120' time='00:02:26' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/kYtGl1dX5qI/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/1.jpg' height='90' width='120' 
time='00:01:13' yt:name='start'/>
 <media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/2.jpg' height='90' width='120' time='00:02:26' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/3.jpg' height='90' width='120' 
time='00:03:39' yt:name='end'/><media:title type='plain'>will.i.am - Scream &amp; Shout ft. Britney 
Spears</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='292'/><yt:uploaded>2012-11-29T02:50:08.000Z</yt:uploaded><yt:uploaderId>UC_d6W32xuEAyPlf_KmvvwEA</yt:uploaderId><yt:videoid>kYtGl1dX5qI</yt:videoid></media:group><gd:rating
 average='4.5973263' max='5' min='1' numRaters='1102143' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='250261557'/><yt:rating numDislikes='110951' numLikes='991192'/></entry></feed>
+  
diff --git a/gdata/tests/traces/youtube/query-standard-feed-async-progress-closure 
b/gdata/tests/traces/youtube/query-standard-feed-async-progress-closure
new file mode 100644
index 0000000..c6483e6
--- /dev/null
+++ b/gdata/tests/traces/youtube/query-standard-feed-async-progress-closure
@@ -0,0 +1,454 @@
+> GET /feeds/api/standardfeeds/top_rated HTTP/1.1
+> Soup-Debug-Timestamp: 1372714742
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 11 (0x7fffdc0028b0), SoupSocket 3 (0x84d5e0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714742
+< Soup-Debug: SoupMessage 11 (0x7fffdc0028b0)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=feed
+< Expires: Mon, 01 Jul 2013 21:39:02 GMT
+< Date: Mon, 01 Jul 2013 21:39:02 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: *
+< GData-Version: 2.1
+< ETag: W/"DkAAQ3o6fSp7I2A9WhFRF0w."
+< Last-Modified: Mon, 01 Jul 2013 21:39:02 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?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:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkAAQ3o6fSp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:standardfeed:global:top_rated</id><updated>2013-07-01T21:39:02.415Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#video'/><title>Top 
Rated</title><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link rel='alternate' 
type='text/html' href='https://www.youtube.com/channel/HCWKQJPHqP4J0'/><link 
rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/standardfeeds/top_rated'/><link 
rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='h
 ttps://gdata.youtube.com/feeds/api/standardfeeds/top_rated/batch'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/standardfeeds/top_rated?start-index=1&amp;max-results=25'/><link 
rel='service' type='application/atomsvc+xml' 
href='https://gdata.youtube.com/feeds/api/standardfeeds/top_rated?alt=atom-service'/><link rel='next' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/standardfeeds/top_rated?start-index=26&amp;max-results=25'/><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>155</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry
 
gd:etag='W/&quot;Dk4FRX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:9bZkp7q19f0</id><published>2012-07-15T07:46:32.000Z</published><updated>2013-06-27T01:01: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'/><title>PSY - 
GANGNAM STYLE (강남스타일) M/V</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/9bZkp7q19f0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=9bZkp7q19f0&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='appli
 cation/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=9bZkp7q19f0'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/rDkAvwZum-UTjHmzDI2iIw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0'/><author><name>officialpsy</name><uri>https://gdata.youtube.com/feeds/api/users/officialpsy</uri><yt:userId>rDkAvwZum-UTjHmzDI2iIw</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderated'/><yt:acces
 sControl 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='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0/comments' 
countHint='6079494'/></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='https://www.youtube.com/v/9bZkp7q19f0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='253' 
yt:format='5'/><media:content 
url='rtsp://v6.cache3.c.youtube.com/CkcLENy73wIaPgn99bW6p2S29RMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0
 D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' 
duration='253' yt:format='1'/><media:content 
url='rtsp://v6.cache3.c.youtube.com/CkcLENy73wIaPgn99bW6p2S29RMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='253' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='officialpsy' 
yt:type='partner'>officialpsy</media:credit><media:description type='plain'>PSY - Gangnam Style (강남스타일) 
+< ▶ NOW available on iTunes: http://Smarturl.it/psygangnam
+< ▶ Official PSY Online Store US &amp; International : http://psy.shop.bravadousa.com/
+< ▶ About PSY from YG Ent.: http://smarturl.it/YGfamilyAboutPSY
+< ▶ PSY's Products on eBay: http://stores.ebay.com/ygentertainment
+< ▶ YG-eShop: http://www.ygeshop.com
+<  
+< ===============================
+< PSY CONCERT "HAPPENING"
+< 2013.4.13. SAT 6:30PM
+< THE SEOUL WORLD CUP STADIUM
+< YouTube LIVE@ http://www.youtube.com/officialpsy
+< Tickets: http://smarturl.it/PsyHappeningKor
+< English Booking: http://smarturl.it/PsyHappeningEng
+< ===============================
+< 
+< For More Information @
+< http://www.facebook.com/officialpsy
+< http://twitter.com/psy_oppa
+< http://twitter.com/ygent_official
+< http://me2day.net/psyfive
+< http://www.psypark.com
+< App Store: http://goo.gl/l9TU6
+< Google Play: http://goo.gl/UiEn1
+< 
+< © YG Entertainment Inc. All rights reserved.</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=9bZkp7q19f0&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/9bZkp7q19f0/default.jpg' height='90' width='120' time='00:02:06.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/9bZkp7q19f0/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/9bZkp7q19f0/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/9bZkp7q19f0/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/9bZkp7q19f0/1.jpg' height='90' width='120' 
time='00:01:03.250' yt:name='start'/><media:thumbnail url=
 'https://i1.ytimg.com/vi/9bZkp7q19f0/2.jpg' height='90' width='120' time='00:02:06.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/9bZkp7q19f0/3.jpg' height='90' width='120' 
time='00:03:09.750' yt:name='end'/><media:title type='plain'>PSY - GANGNAM STYLE (강남스타일) 
M/V</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='253'/><yt:uploaded>2012-07-15T07:46:32.000Z</yt:uploaded><yt:uploaderId>UCrDkAvwZum-UTjHmzDI2iIw</yt:uploaderId><yt:videoid>9bZkp7q19f0</yt:videoid></media:group><gd:rating
 average='4.6144605' max='5' min='1' numRaters='8478117' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='1669725106'/><yt:rating numDislikes='817162' numLikes='7660955'/></entry><entry 
gd:etag='W/&quot;Dk8CQ347eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:ASO_zypdnsQ</id><published>2013-04-13T11:59:04.000Z</published><updated>2013-06-27T01:01:02.000Z</updated><category
 scheme='http://s
 chemas.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'/><title>PSY - 
GENTLEMAN M/V</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/ASO_zypdnsQ?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=ASO_zypdnsQ&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api
 /videos/ASO_zypdnsQ/complaints'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=ASO_zypdnsQ'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/rDkAvwZum-UTjHmzDI2iIw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ'/><author><name>officialpsy</name><uri>https://gdata.youtube.com/feeds/api/users/officialpsy</uri><yt:userId>rDkAvwZum-UTjHmzDI2iIw</yt:userId></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:accessCon
 trol 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='https://gdata.youtube.com/feeds/api/videos/ASO_zypdnsQ/comments' 
countHint='1202763'/></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='https://www.youtube.com/v/ASO_zypdnsQ?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='234' 
yt:format='5'/><media:content 
url='rtsp://v5.cache2.c.youtube.com/CkcLENy73wIaPgnEnl0qz78jARMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3
 gpp' medium='video' expression='full' duration='234' yt:format='1'/><media:content 
url='rtsp://v5.cache2.c.youtube.com/CkcLENy73wIaPgnEnl0qz78jARMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='234' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='officialpsy' 
yt:type='partner'>officialpsy</media:credit><media:description type='plain'>▶ NOW available on iTunes: 
http://smarturl.it/PsyGentlemaniT
+< ▶ Official PSY Online Store US &amp; International : http://psy.shop.bravadousa.com/
+< ▶ About PSY from YG Ent.: http://smarturl.it/YGfamilyAboutPSY
+< ▶ PSY's Products on eBay: http://stores.ebay.com/ygentertainment
+< ▶ YG-eShop: http://www.ygeshop.com
+<  
+< For More Information @
+< http://www.facebook.com/officialpsy
+< http://twitter.com/psy_oppa
+< http://twitter.com/ygent_official
+< http://me2day.net/psyfive
+< http://www.psypark.com
+< App Store: http://goo.gl/l9TU6
+< Google Play: http://goo.gl/UiEn1
+< 
+< © YG Entertainment Inc. All rights reserved.</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=ASO_zypdnsQ&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/ASO_zypdnsQ/default.jpg' height='90' width='120' time='00:01:57' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/ASO_zypdnsQ/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/ASO_zypdnsQ/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/ASO_zypdnsQ/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/ASO_zypdnsQ/1.jpg' height='90' width='120' 
time='00:00:58.500' yt:name='start'/><media:thumbnail url='htt
 ps://i1.ytimg.com/vi/ASO_zypdnsQ/2.jpg' height='90' width='120' time='00:01:57' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/ASO_zypdnsQ/3.jpg' height='90' width='120' 
time='00:02:55.500' yt:name='end'/><media:title type='plain'>PSY - GENTLEMAN 
M/V</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='234'/><yt:uploaded>2013-04-13T11:59:04.000Z</yt:uploaded><yt:uploaderId>UCrDkAvwZum-UTjHmzDI2iIw</yt:uploaderId><yt:videoid>ASO_zypdnsQ</yt:videoid></media:group><gd:rating
 average='4.3725' max='5' min='1' numRaters='2930384' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='447783403'/><yt:rating numDislikes='459704' numLikes='2470680'/></entry><entry 
gd:etag='W/&quot;Dk8CSH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:QK8mJJJvaes</id><published>2012-08-29T15:53:50.000Z</published><updated>2013-06-27T01:01:09.000Z</updated><category
 scheme='http://schemas.google.com/g/2005#kind' ter
 m='http://gdata.youtube.com/schemas/2007#video'/><category 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Music' label='Music'/><title>MACKLEMORE 
&amp; RYAN LEWIS - THRIFT SHOP FEAT. WANZ (OFFICIAL VIDEO)</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/QK8mJJJvaes?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=QK8mJJJvaes&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtu
 be.com/feeds/api/videos/QK8mJJJvaes/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=QK8mJJJvaes'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/XYRdIXDdeZIf816EWAr5zQ'/><link rel='self' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes'/><author><name>Ryan 
Lewis</name><uri>https://gdata.youtube.com/feeds/api/users/RyanLewisProductions</uri><yt:userId>XYRdIXDdeZIf816EWAr5zQ</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/QK8mJJJvaes/comments' 
countHint='389709'/></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='https://www.youtube.com/v/QK8mJJJvaes?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='233' 
yt:format='5'/><media:content 
url='rtsp://r1---sn-aig7kned.c.youtube.com/CkcLENy73wIaPgnraW-SJCavQBMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/
 0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='233' 
yt:format='1'/><media:content 
url='rtsp://r1---sn-aig7kned.c.youtube.com/CkcLENy73wIaPgnraW-SJCavQBMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='233' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='Ryan Lewis' 
yt:type='partner'>ryanlewisproductions</media:credit><media:description type='plain'>Thrift Shop on iTunes: 
http://itunes.apple.com/us/album/thrift-shop-feat.-wanz-single/id556955707
+< The Heist physical deluxe edition: http://www.macklemoremerch.com
+< The Heist digital deluxe on iTunes: 
http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=560097651
+< The Heist on Amazon: http://amzn.com/B00908DDZM
+< The Heist in-stores NOW!
+< 
+< Credits:
+< 
+< VIDEO
+< 
+< Directed By Jon Jon Augustavo, Ryan Lewis, Ben Haggerty
+< Produced By Hollis Wong-Wear, Tricia Davis, Zach Quillen
+< Lead Grip: David Herberg
+< Grip Assistants: Josh Marten, Jay Neilson
+< Stylists: Annie Murphy, Alex Nordstrom
+< 
+< MUSIC
+< 
+< Written by Ben Haggerty
+< Produced by Ryan Lewis
+< Featuring Wanz
+< Additional vocals by Brooklyn Grinnell
+< Scratches by DV One
+< 
+< SPECIAL THANKS TO
+< 
+< Goodwill Outlet
+< Value Village Capitol Hill
+< Red Light Vintage
+< Fremont Vintage Mall
+< Unicorn/Narwhal
+< Northwest African American Museum
+< 
+< Sara Stapleton, JR Ewing and Inner City Empire, Faisal Jaswal, Clay Davis
+< 
+< http://www.macklemore.com
+< http://www.twitter.com/macklemore
+< http://www.twitter.com/ryanlewis
+< http://www.facebook.com/macklemore
+< http://www.facebook.com/ryanlewisproductions</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=QK8mJJJvaes&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/QK8mJJJvaes/default.jpg' height='90' width='120' time='00:01:56.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/QK8mJJJvaes/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/QK8mJJJvaes/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/QK8mJJJvaes/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/QK8mJJJvaes/1.jpg' height='90' width='120' 
time='00:00:58.250' yt:name='start'/><media:thumbnail url='
 https://i1.ytimg.com/vi/QK8mJJJvaes/2.jpg' height='90' width='120' time='00:01:56.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/QK8mJJJvaes/3.jpg' height='90' width='120' 
time='00:02:54.750' yt:name='end'/><media:title type='plain'>MACKLEMORE &amp; RYAN LEWIS - THRIFT SHOP FEAT. 
WANZ (OFFICIAL VIDEO)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='233'/><yt:uploaded>2012-08-29T15:53:50.000Z</yt:uploaded><yt:uploaderId>UCXYRdIXDdeZIf816EWAr5zQ</yt:uploaderId><yt:videoid>QK8mJJJvaes</yt:videoid></media:group><gd:rating
 average='4.8576236' max='5' min='1' numRaters='1945239' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='354260538'/><yt:rating numDislikes='69239' numLikes='1876000'/></entry><entry 
gd:etag='W/&quot;Dk8NRH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:8UVNT4wvIGY</id><published>2011-07-05T20:58:17.000Z</published><updated>2013-06-27T01:01: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='Music' label='Music'/><title>Gotye - 
Somebody That I Used To Know (feat. Kimbra) - official video</title><content 
type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/8UVNT4wvIGY?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=8UVNT4wvIGY&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complai
 nts' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=8UVNT4wvIGY'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/FC9LamNMmLioW643VZ40OA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY'/><author><name>gotyemusic</name><uri>https://gdata.youtube.com/feeds/api/users/gotyemusic</uri><yt:userId>FC9LamNMmLioW643VZ40OA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderat
 ed'/><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='https://gdata.youtube.com/feeds/api/videos/8UVNT4wvIGY/comments' 
countHint='524835'/></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='https://www.youtube.com/v/8UVNT4wvIGY?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='245' 
yt:format='5'/><media:content 
url='rtsp://v4.cache6.c.youtube.com/CkcLENy73wIaPglmIC-MT01F8RMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB
 _5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' 
duration='245' yt:format='1'/><media:content 
url='rtsp://v4.cache6.c.youtube.com/CkcLENy73wIaPglmIC-MT01F8RMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='245' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='gotyemusic' 
yt:type='partner'>gotyemusic</media:credit><media:description type='plain'>Film clip for the Gotye song 
Somebody That I Used To Know, featuring Kimbra from the album Making Mirrors. 
+< Buy Somebody That I Used To Know here: http://www.smarturl.it/gotyesomebody
+< Buy Making Mirrors here http://www.smarturl.it/gotye 
+< http://www.gotye.com/
+< http://www.facebook.com/gotye/
+< http://www.twitter.com/gotye/
+< 
+< **********************************************
+< Somebody That I Used To Know lyrics
+< 
+< Now and then I think of when we were together
+< Like when you said you felt so happy you could die
+< Told myself that you were right for me
+< But felt so lonely in your company
+< But that was love and it's an ache I still remember
+< 
+< You can get addicted to a certain kind of sadness
+< Like resignation to the end
+< Always the end
+< So when we found that we could not make sense
+< Well you said that we would still be friends
+< But I'll admit that I was glad that it was over
+< 
+< But you didn't have to cut me off
+< Make out like it never happened
+< And that we were nothing
+< And I don't even need your love
+< But you treat me like a stranger
+< And that feels so rough
+< You didn't have to stoop so low
+< Have your friends collect your records
+< And then change your number
+< I guess that I don't need that though
+< Now you're just somebody that I used to know
+< 
+< Now and then I think of all the times you screwed me over
+< But had me believing it was always something that I'd done
+< And I don't wanna live that way
+< Reading into every word you say
+< You said that you could let it go 
+< And I wouldn't catch you hung up on somebody that you used to know...
+< 
+< But you didn't have to cut me off
+< Make out like it never happened
+< And that we were nothing
+< And I don't even need your love
+< But you treat me like a stranger
+< And that feels so rough
+< You didn't have to stoop so low
+< Have your friends collect your records
+< And then change your number
+< I guess that I don't need that though
+< Now you're just somebody that I used to know
+< 
+< I used to know
+< That I used to know
+< 
+< Somebody...
+< *************
+< 
+< Video credits:
+< Directed, produced and edited by Natasha Pincus
+< Body art by Emma Hack
+< Cinematographer and colourist: Warwick Field
+< Scenic artist: Howard Clark
+< Key grip: Rob Hansford
+< Assistants: Rose Cidoni, Claire Leighton, Rob Murray
+< Original artwork by Frank De Backer
+< 
+< Music credits:
+< Produced by Wally De Backer
+< Mixed by Francois Tetaz, assisted by Wally at Moose Mastering, Richmond, VIC
+< Bass recorded by Wally in Lucas Taranto's loungeroom, Melbourne, VIC
+< All other sounds put together by Wally in The Barn, Merricks, VIC
+< 
+< Bass guitar: Lucas Taranto
+< Lead and backing vocals: Kimbra
+< Guitar, flutes, percussion and synth samples, lead and backing vocals: Wally
+< 
+< Contains a sample of the recording Seville as performed by Luiz Bonfa. Courtesy of Geffen Records, under 
license from Universal Music Enterprises.  Used by permission. All rights reserved.  Written by Luiz Bonfa 
and published by Sasqua Music. Used by permission.</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=8UVNT4wvIGY&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/8UVNT4wvIGY/default.jpg' height='90' width='120' time='00:02:02.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/8UVNT4wvIGY/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/8UVNT4wvIGY/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/8UV
 NT4wvIGY/sddefault.jpg' height='480' width='640' yt:name='sddefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/8UVNT4wvIGY/1.jpg' height='90' width='120' time='00:01:01.250' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/8UVNT4wvIGY/2.jpg' height='90' width='120' 
time='00:02:02.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/8UVNT4wvIGY/3.jpg' 
height='90' width='120' time='00:03:03.750' yt:name='end'/><media:title type='plain'>Gotye - Somebody That I 
Used To Know (feat. Kimbra) - official 
video</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='245'/><yt:uploaded>2011-07-05T20:58:17.000Z</yt:uploaded><yt:uploaderId>UCFC9LamNMmLioW643VZ40OA</yt:uploaderId><yt:videoid>8UVNT4wvIGY</yt:videoid></media:group><gd:rating
 average='4.8432045' max='5' min='1' numRaters='1873954' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='412724341'/><yt:rating numDislikes='73457' numLi
 kes='1800497'/></entry><entry 
gd:etag='W/&quot;Dk8MRX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:KQ6zr6kCPj8</id><published>2011-03-09T05:30:54.000Z</published><updated>2013-06-27T01:01:24.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>LMFAO - 
Party Rock Anthem ft. Lauren Bennett, GoonRock</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/KQ6zr6kCPj8?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=KQ6zr6kCPj8&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#v
 ideo.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/k78ZcA6kflEvBR0UrGDH0Q'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8'/><author><name>LMFAOVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/LMFAOVEVO</uri><yt:userId>k78ZcA
 6kflEvBR0UrGDH0Q</yt:userId></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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/KQ6zr6kCPj8/comments' 
countHint='748770'/></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='https://www.youtube.com/v/KQ6zr6kCPj8?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application
 /x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='376' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='LMFAOVEVO' 
yt:type='partner'>lmfaovevo</media:credit><media:description type='plain'>Buy now http://glnk.it/6t
+< Music video by LMFAO performing Party Rock Anthem featuring Lauren Bennett and GoonRock. (c) 2011 
Interscope
+< #VEVOCertified on July 1, 2011. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=KQ6zr6kCPj8&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/default.jpg' height='90' width='120' time='00:03:08' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/1.jpg' height='90' width='120' 
time='00:
 01:34' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/2.jpg' height='90' 
width='120' time='00:03:08' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/KQ6zr6kCPj8/3.jpg' height='90' width='120' time='00:04:42' 
yt:name='end'/><media:title type='plain'>LMFAO - Party Rock Anthem ft. Lauren Bennett, 
GoonRock</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='376'/><yt:uploaded>2011-03-09T05:30:54.000Z</yt:uploaded><yt:uploaderId>UCk78ZcA6kflEvBR0UrGDH0Q</yt:uploaderId><yt:videoid>KQ6zr6kCPj8</yt:videoid></media:group><gd:rating
 average='4.838746' max='5' min='1' numRaters='1863271' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='549263247'/><yt:rating numDislikes='75115' numLikes='1788156'/></entry><entry 
gd:etag='W/&quot;Dk4GQH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:kffacxfA7G4</id><published>2010-02-19T08:11:38.000Z</published><updated>2013-06-27T01
 :02:01.000Z</updated><app:control><yt:state name='restricted' reasonCode='limitedSyndication'>Syndication of 
this video was restricted.</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='Music' label='Music'/><title>Justin 
Bieber - Baby ft. Ludacris</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/kffacxfA7G4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=kffacxfA7G4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='h
 ttps://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hkj014U2CQ2Nv0UZeYpE_A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4'/><author><name>JustinBieberVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/JustinBieberVEVO</uri><yt:userId>Hkj014U2CQ2Nv0UZeYpE_A</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permiss
 ion='allowed'/><yt:accessControl action='rate' permission='allowed'/><yt:accessControl action='embed' 
permission='allowed'/><yt:accessControl action='list' permission='allowed'/><yt:accessControl 
action='autoPlay' permission='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/kffacxfA7G4/comments' 
countHint='9306761'/></gd:comments><media:group><media:category label='Music' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Music</media:category><media:content 
url='https://www.youtube.com/v/kffacxfA7G4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='225' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='JustinBieberVEVO' 
yt:type='partner'>justinbieb
 ervevo</media:credit><media:description type='plain'>Music video by Justin Bieber performing Baby feat. 
Ludacris.
+< #VEVOCertified on April 25, 2010. 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=kffacxfA7G4&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/kffacxfA7G4/default.jpg' height='90' width='120' time='00:01:52.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/kffacxfA7G4/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/1.jpg' height='90' width='120' 
time='00:00:56.250' yt:name='star
 t'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/2.jpg' height='90' width='120' 
time='00:01:52.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/kffacxfA7G4/3.jpg' 
height='90' width='120' time='00:02:48.750' yt:name='end'/><media:title type='plain'>Justin Bieber - Baby ft. 
Ludacris</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='225'/><yt:uploaded>2010-02-19T08:11:38.000Z</yt:uploaded><yt:uploaderId>UCHkj014U2CQ2Nv0UZeYpE_A</yt:uploaderId><yt:videoid>kffacxfA7G4</yt:videoid></media:group><gd:rating
 average='2.304344' max='5' min='1' numRaters='5204692' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='868203556'/><yt:rating numDislikes='3507515' numLikes='1697177'/></entry><entry 
gd:etag='W/&quot;Dk8ASX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:fWNaR-rxAic</id><published>2012-03-01T23:21:04.000Z</published><updated>2013-06-27T01:00:48.000Z</updated><app:contr
 ol><yt:state name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>Carly Rae 
Jepsen - Call Me Maybe</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/fWNaR-rxAic?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=fWNaR-rxAic&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/a
 pi/videos/fWNaR-rxAic/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/tKuVNj4wVrZvTfxPxAUHcQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic'/><author><name>CarlyRaeJepsenVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/CarlyRaeJepsenVEVO</uri><yt:userId>tKuVNj4wVrZvTfxPxAUHcQ</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowed'/><yt:accessCon
 trol action='rate' permission='allowed'/><yt:accessControl action='embed' 
permission='allowed'/><yt:accessControl action='list' permission='allowed'/><yt:accessControl 
action='autoPlay' permission='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/fWNaR-rxAic/comments' 
countHint='704203'/></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='https://www.youtube.com/v/fWNaR-rxAic?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='200' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='CarlyRaeJepsenVEVO' 
yt:type='partner'>carlyraejepsenvevo</media:cre
 dit><media:description type='plain'>Buy Now!  http://smarturl.it/CallMeMaybe
+< Music video by Carly Rae Jepsen performing Call Me Maybe. (C) 2011 604 Records Inc.
+< #VEVOCertified on June 8, 2012. 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=fWNaR-rxAic&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/fWNaR-rxAic/default.jpg' height='90' width='120' time='00:01:40' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/fWNaR-rxAic/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/1.jpg' height='90' width='120' 
time='00:00:50' yt:name='start'/><media
 :thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/2.jpg' height='90' width='120' time='00:01:40' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/fWNaR-rxAic/3.jpg' height='90' width='120' 
time='00:02:30' yt:name='end'/><media:title type='plain'>Carly Rae Jepsen - Call Me 
Maybe</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='200'/><yt:uploaded>2012-03-01T23:21:04.000Z</yt:uploaded><yt:uploaderId>UCtKuVNj4wVrZvTfxPxAUHcQ</yt:uploaderId><yt:videoid>fWNaR-rxAic</yt:videoid></media:group><gd:rating
 average='4.712018' max='5' min='1' numRaters='1735538' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='470448119'/><yt:rating numDislikes='124951' numLikes='1610587'/></entry><entry 
gd:etag='W/&quot;Dk8CQn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:QJO3ROT-A4E</id><published>2011-08-19T15:00:00.000Z</published><updated>2013-06-27T01:01:03.000Z</updated><app:control><yt:state
 name='r
 estricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>One 
Direction - What Makes You Beautiful</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/QJO3ROT-A4E?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=QJO3ROT-A4E&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QJ
 O3ROT-A4E/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/bW18JZRgko_mOGm5er8Yzg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E'/><author><name>OneDirectionVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/OneDirectionVEVO</uri><yt:userId>bW18JZRgko_mOGm5er8Yzg</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowed'/><yt:accessControl 
action='rat
 e' permission='allowed'/><yt:accessControl action='embed' permission='allowed'/><yt:accessControl 
action='list' permission='allowed'/><yt:accessControl action='autoPlay' 
permission='denied'/><yt:accessControl action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/QJO3ROT-A4E/comments' 
countHint='1156223'/></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='https://www.youtube.com/v/QJO3ROT-A4E?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='207' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='OneDirectionVEVO' 
yt:type='partner'>onedirectionvevo</media:credit><media:descript
 ion type='plain'>Click here to purchase the single http://www.smarturl.it/1dwmybitunes
+< 
+< Music video by One Direction performing What Makes You Beautiful. (C) 2011 Simco Limited under exclusive 
license to Sony Music Entertainment UK Limited
+< #VEVOCertified on April 16, 2012. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=QJO3ROT-A4E&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='allow'>SZ SY SX JP SR SV ST SK SJ SI SH SO SN SM SL SC SB SA JO SG SE SD CK CI 
CH CO CN CM CL CC CA CG CF ML CD CZ CY CX CR CW CV CU IM ZA IO IN ZM RW IE ID RS DJ ZW IQ RE IS IR IT BL BM 
BN BO BH BI BJ JE BD BE BF BG BA BB BY BZ BT BV BW BQ BR BS HK HN HM UY QA KP JM HR KW HT HU AE AD AG AF AI 
AM AL AO AQ AS AR AU AT AW KZ AX AZ YE KY PR PS OM PW PT PY PA PF PG PE PK PH PN PL PM TZ NA NC WS NE NF NG 
NI FR NL NO NP WF FJ FK FM FO DZ NZ KI GG GF GE GD GB GA GN GM GL GI GH GW GU GT GS GR GQ GP NR GY ME VI MG 
MF MA MC MM ET MO MN FI MH MK ER MU MT MW MV MQ MP MS MR EE EG MY MX EC MZ DM VA LR VC DK UM YT LB L
 C MD UG UA LK LI LV DO LT LU NU LS VU UZ US LY VN RU TN KR TL TM TJ TK TH TF TG TD TC VE LA KG ES KE TV TW 
TT KH TR KN KM TO IL VG RO EH</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/QJO3ROT-A4E/default.jpg' height='90' width='120' time='00:01:43.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/QJO3ROT-A4E/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/QJO3ROT-A4E/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/QJO3ROT-A4E/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/QJO3ROT-A4E/1.jpg' height='90' width='120' 
time='00:00:51.750' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/QJO3ROT-A4E/2.jpg' 
height='90' width='120' time='00:01:43.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/QJO3ROT-A4E/3.jpg' height='90' width='120' 
 time='00:02:35.250' yt:name='end'/><media:title type='plain'>One Direction - What Makes You 
Beautiful</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='207'/><yt:uploaded>2011-08-19T15:00:00.000Z</yt:uploaded><yt:uploaderId>UCbW18JZRgko_mOGm5er8Yzg</yt:uploaderId><yt:videoid>QJO3ROT-A4E</yt:videoid></media:group><gd:rating
 average='4.569341' max='5' min='1' numRaters='1722226' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='397081262'/><yt:rating numDislikes='185423' numLikes='1536803'/></entry><entry 
gd:etag='W/&quot;Dk8MQn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:rYEDA3JcQqw</id><published>2010-11-30T23:16:19.000Z</published><updated>2013-06-27T01:01:23.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</yt:state></app:control><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.c
 om/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Music' 
label='Music'/><title>Adele - Rolling In The Deep</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/rYEDA3JcQqw?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=rYEDA3JcQqw&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/complaints'/><link rel='http://
 gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/omP_epzeKzvBX156r6pm1Q'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw'/><author><name>AdeleVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/AdeleVEVO</uri><yt:userId>omP_epzeKzvBX156r6pm1Q</yt:userId></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='denied'/><yt:accessControl action='synd
 icate' permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/rYEDA3JcQqw/comments' 
countHint='434025'/></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='https://www.youtube.com/v/rYEDA3JcQqw?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='235' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='AdeleVEVO' 
yt:type='partner'>adelevevo</media:credit><media:description type='plain'>Music video by Adele performing 
Rolling In The Deep. (C) 2010 XL Recordings Ltd.
+< 
+< #VEVOCertified on July 25, 2011. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=rYEDA3JcQqw&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/rYEDA3JcQqw/default.jpg' height='90' width='120' time='00:01:57.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/rYEDA3JcQqw/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/rYEDA3JcQqw/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/rYEDA3JcQqw/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/rYEDA3JcQqw/1.jpg' height='90' width='120' 
time
 ='00:00:58.750' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/rYEDA3JcQqw/2.jpg' 
height='90' width='120' time='00:01:57.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/rYEDA3JcQqw/3.jpg' height='90' width='120' time='00:02:56.250' 
yt:name='end'/><media:title type='plain'>Adele - Rolling In The 
Deep</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='235'/><yt:uploaded>2010-11-30T23:16:19.000Z</yt:uploaded><yt:uploaderId>UComP_epzeKzvBX156r6pm1Q</yt:uploaderId><yt:videoid>rYEDA3JcQqw</yt:videoid></media:group><gd:rating
 average='4.9011893' max='5' min='1' numRaters='1539713' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='412797044'/><yt:rating numDislikes='38035' numLikes='1501678'/></entry><entry 
gd:etag='W/&quot;Dk8NR347eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:j5-yKhDd64s</id><published>2010-06-05T04:41:59.000Z</published><updated>2013-06-27T01:01:36.00
 0Z</updated><app:control><yt:state name='restricted' reasonCode='limitedSyndication'>Syndication of this 
video was restricted.</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='Music' label='Music'/><title>Eminem - Not 
Afraid</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/j5-yKhDd64s?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=j5-yKhDd64s&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.co
 m/feeds/api/videos/j5-yKhDd64s/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/20vb-R_px4CguHzzBPhoyQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s'/><author><name>EminemVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/EminemVEVO</uri><yt:userId>20vb-R_px4CguHzzBPhoyQ</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowed'/><yt:accessControl ac
 tion='rate' permission='allowed'/><yt:accessControl action='embed' permission='allowed'/><yt:accessControl 
action='list' permission='allowed'/><yt:accessControl action='autoPlay' 
permission='denied'/><yt:accessControl action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/j5-yKhDd64s/comments' 
countHint='1385502'/></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='https://www.youtube.com/v/j5-yKhDd64s?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='259' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='EminemVEVO' 
yt:type='partner'>eminemvevo</media:credit><media:description
  type='plain'>Music video by Eminem performing Not Afraid. (C) 2010 Aftermath Records
+< #VEVOCertified on September 11, 2010.http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=j5-yKhDd64s&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/j5-yKhDd64s/default.jpg' height='90' width='120' time='00:02:09.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/j5-yKhDd64s/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/j5-yKhDd64s/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/j5-yKhDd64s/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/j5-yKhDd64s/1.jpg' height='90' width='120' 
 time='00:01:04.750' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/j5-yKhDd64s/2.jpg' 
height='90' width='120' time='00:02:09.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/j5-yKhDd64s/3.jpg' height='90' width='120' time='00:03:14.250' 
yt:name='end'/><media:title type='plain'>Eminem - Not 
Afraid</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='259'/><yt:uploaded>2010-06-05T04:41:59.000Z</yt:uploaded><yt:uploaderId>UC20vb-R_px4CguHzzBPhoyQ</yt:uploaderId><yt:videoid>j5-yKhDd64s</yt:videoid></media:group><gd:rating
 average='4.8953757' max='5' min='1' numRaters='1517851' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='417008970'/><yt:rating numDislikes='39701' numLikes='1478150'/></entry><entry 
gd:etag='W/&quot;Dk4ESH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:d9NF2edxy-M</id><published>2012-01-06T06:43:30.000Z</published><updated>2013-06-27T01:01: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='Music' label='Music'/><title>Somebody 
That I Used to Know - Walk off the Earth (Gotye - Cover)</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/d9NF2edxy-M?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='http://gdata.youtube.com/schemas/2007#video.in-response-to' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9DGhAUcr4rQ'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=d9NF2edxy-M&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ra
 tings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=d9NF2edxy-M'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/9PEibgWOqZ-1I1JdxRmr6g'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M'/><author><name>walkofftheearth</name><uri>https://gdata.youtube.com/feeds/api/users/walkofftheearth</uri><yt:userId>9PEibgWOqZ-1I1JdxRmr6g</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/d9NF2edxy-M/comments' 
countHint='246895'/></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='https://www.youtube.com/v/d9NF2edxy-M?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
type='application/x-shockwave-flash' medium='video
 ' isDefault='true' expression='full' duration='265' yt:format='5'/><media:content 
url='rtsp://v6.cache2.c.youtube.com/CkcLENy73wIaPgnjy3Hn2UXTdxMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='265' yt:format='1'/><media:content 
url='rtsp://v6.cache2.c.youtube.com/CkcLENy73wIaPgnjy3Hn2UXTdxMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='265' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' 
yt:display='walkofftheearth'>walkofftheearth</media:credit><media:description type='plain'>Download our new 
album R.E.V.O. here: http://smarturl.it/revo
+< WOTE merch available here: http://bit.ly/xZolh7
+< 
+< "Somebody That I Used To Know" Mp3 available here: http://bit.ly/xe65hD
+< 
+< WOTE TOUR DATES AND TICKET LINKS:
+< 
+< July 12 -- Vancouver Island, BC http://goo.gl/YzwYN
+< July 13 -- Calgary, AB http://goo.gl/Yaa6R
+< July 17 -- Peterborough, ON http://goo.gl/NJc1o
+< July 21 -- Chicago, IL http://goo.gl/NlfcD
+< August 3 -- Philadelphia, PA http://goo.gl/t9b4Z
+< August 10 -- Boston, MA http://goo.gl/KqkUv
+< August 17 -- Detroit, MI http://goo.gl/EVQMw
+< 
+< Walk off the Earth performs a cover of Gotye's "Somebody That I Used to Know" using five people on one 
guitar. 
+< 
+< We would like to thank Gotye and Kimbra for writing such a beautiful song. If you aren't familiar with 
their music, go and check them out right now!
+< 
+< Please help us share this by posting it on your Facebook and Twitter.
+< We will love you for eva and eva!
+< 
+< If you enjoyed this video then....
+< 
+< Hit the "Like" button
+< Add it to your Favorites
+< and of course subscribe to our channel if you haven't already!
+< 
+< Check out WOTE on Facebook: http://www.facebook.com/walkofftheearth
+< 
+< Follow us on Twitter: http://www.twitter.com/walkofftheearth
+< 
+< Subscribe to Gianni and Sarah's blog/music Channel: http://www.youtube.com/gianniandsarahmusic
+< 
+< Special thanks to Guilly for helping us with this video.
+< 
+< Performers from left to right:
+< Joel Cassady 
+< Sarah Blackwood
+< Gianni Luminati
+< Marshall
+< Taylor
+< 
+< Extra Tags:
+< Walk off the earth
+< wote
+< 2 guys 1 guitar
+< 3 guys 1 guitar
+< 4 guys 1 guitar
+< 5 guys 1 guitar
+< gianni luminati
+< gianni nicassio
+< sarah blackwood
+< gianni and sarah
+< marshall
+< walk off the earth</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=d9NF2edxy-M&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/d9NF2edxy-M/default.jpg' height='90' width='120' time='00:02:12.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/d9NF2edxy-M/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/d9NF2edxy-M/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/d9NF2edxy-M/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/d9NF2edxy-M/1.jpg' height='90' width='120' 
time='00:01:06.250' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/d9
 NF2edxy-M/2.jpg' height='90' width='120' time='00:02:12.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/d9NF2edxy-M/3.jpg' height='90' width='120' time='00:03:18.750' 
yt:name='end'/><media:title type='plain'>Somebody That I Used to Know - Walk off the Earth (Gotye - 
Cover)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='265'/><yt:uploaded>2012-01-06T06:43:30.000Z</yt:uploaded><yt:uploaderId>UC9PEibgWOqZ-1I1JdxRmr6g</yt:uploaderId><yt:videoid>d9NF2edxy-M</yt:videoid></media:group><gd:rating
 average='4.9550476' max='5' min='1' numRaters='1420885' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='151407628'/><yt:rating numDislikes='15968' numLikes='1404917'/></entry><entry 
gd:etag='W/&quot;Dk8BQn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:uelHwf8o7_U</id><published>2010-08-05T18:30:09.000Z</published><updated>2013-06-27T01:00:53.000Z</updated><app:control><yt:state
 name='re
 stricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>Eminem - 
Love The Way You Lie ft. Rihanna</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/uelHwf8o7_U?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=uelHwf8o7_U&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/ue
 lHwf8o7_U/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/20vb-R_px4CguHzzBPhoyQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U'/><author><name>EminemVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/EminemVEVO</uri><yt:userId>20vb-R_px4CguHzzBPhoyQ</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowed'/><yt:accessControl 
action='rate' permissio
 n='allowed'/><yt:accessControl action='embed' permission='allowed'/><yt:accessControl action='list' 
permission='allowed'/><yt:accessControl action='autoPlay' permission='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/uelHwf8o7_U/comments' 
countHint='761663'/></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='https://www.youtube.com/v/uelHwf8o7_U?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='268' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='EminemVEVO' 
yt:type='partner'>eminemvevo</media:credit><media:description type='plain'>Music vi
 deo by Eminem performing Love The Way You Lie. © 2010 Aftermath Records
+< #VEVOCertified on September 13, 2011. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=uelHwf8o7_U&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/uelHwf8o7_U/default.jpg' height='90' width='120' time='00:02:14' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/uelHwf8o7_U/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/uelHwf8o7_U/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/uelHwf8o7_U/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/uelHwf8o7_U/1.jpg' height='90' width='120' 
tim
 e='00:01:07' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/uelHwf8o7_U/2.jpg' height='90' 
width='120' time='00:02:14' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/uelHwf8o7_U/3.jpg' height='90' width='120' time='00:03:21' 
yt:name='end'/><media:title type='plain'>Eminem - Love The Way You Lie ft. 
Rihanna</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='268'/><yt:uploaded>2010-08-05T18:30:09.000Z</yt:uploaded><yt:uploaderId>UC20vb-R_px4CguHzzBPhoyQ</yt:uploaderId><yt:videoid>uelHwf8o7_U</yt:videoid></media:group><gd:rating
 average='4.867729' max='5' min='1' numRaters='1446787' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='571281782'/><yt:rating numDislikes='47842' numLikes='1398945'/></entry><entry 
gd:etag='W/&quot;DkAHRX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:Y4MnpzG5Sqc</id><published>2012-03-05T20:13:33.000Z</published><updated>2013-06-27T00:58: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='Nonprofit' label='Nonprofits &amp; 
Activism'/><title>KONY 2012</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/Y4MnpzG5Sqc?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=Y4MnpzG5Sqc&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='applicati
 on/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=Y4MnpzG5Sqc'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/TfiNvrrwuhJjyGuUjH_kEg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Y4MnpzG5Sqc'/><author><name>invisiblechildreninc</name><uri>https://gdata.youtube.com/feeds/api/users/invisiblechildreninc</uri><yt:userId>TfiNvrrwuhJjyGuUjH_kEg</yt:userId></author><yt:accessControl
 action='comment' permission='denied'/><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'/><yt:hd/><media:group><media:category label='Nonprofits &amp; Activism' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Nonprofit</media:category><media:content 
url='https://www.youtube.com/v/Y4MnpzG5Sqc?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='1799' 
yt:format='5'/><media:content 
url='rtsp://v7.cache7.c.youtube.com/CkcLENy73wIaPgmnSrkxpyeDYxMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
type='video/3gpp' medium='video' expression='full' duration='1799' yt:format='1'/><media:content url='rts
 
p://v7.cache7.c.youtube.com/CkcLENy73wIaPgmnSrkxpyeDYxMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='1799' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' 
yt:display='invisiblechildreninc'>invisiblechildreninc</media:credit><media:description type='plain'>To learn 
more about our work: http://spr.ly/pp_5
+< To become a member of Fourth Estate: http://spr.ly/pp_4E5
+< 
+< To see real time reports on LRA activity in the D.R.Congo, Central African Republic and South Sudan visit: 
http://www.lracrisistracker.com/
+< 
+< To learn more about Invisible Children's recovery efforts in the post-conflict regions of northern Uganda 
AND our work with communities currently affected in D.R.Congo, Central African Republic and South Sudan 
visit: http://www.invisiblechildren.com/programs.html
+< 
+< To view our responses to common questions we receive about the KONY 2012 film and campaign visit: 
+< http://invisiblechildren.com/about/q-and-a/
+< 
+< To see our worldwide youth mobilization initiatives:
+< http://invisiblechildren.com/program/international-events/
+< 
+< Learn More:  http://kony2012.com
+< Donate to Invisible Children: https://stayclassy.org/checkout/set-donation?eid=14711
+< 
+< For official MEDIA and artist REPRESENTATION ONLY: pr invisiblechildren com
+< 
+< DIRECTOR: Jason Russell LEAD EDITOR: Kathryn Lang EDITORS: Kevin Trout, Jay Salbert, Jesse Eslinger LEAD 
ANIMATOR: Chad Clendinen ANIMATOR: Jesse Eslinger 3-D MODELING: Victor Soto VISUAL EFFECTS: Chris Hop 
WRITERS: Jason Russell, Jedidiah Jenkins, Kathryn Lang, Danica Russell, Ben Keesey, Azy Groth PRODUCERS: 
Kimmy Vandivort, Heather Longerbeam, Chad Clendinen, Noelle Jouglet ORIGINAL SCORES: Joel P. West SOUND MIX: 
Stephen Grubbs, Mark Friedgen, Smart Post Sound COLOR: Damian Pelphrey, Company 3 CINEMATOGRAPHY: Jason 
Russell, Bobby Bailey, Laren Poole, Gavin Kelly, Chad Clendinen, Kevin Trout, Jay Salbert, Shannon Lynch, 
Mariana Blanco, Laurence Vannicelli PRODUCTION ASSISTANT: Jaime Landsverk LEAD DESIGNER: Tyler Fordham 
DESIGNERS: Chadwick Gantes, Stephen Witmer
+< 
+< MUSIC CREDIT:
+< "02 Ghosts I"
+< Performed by Nine Inch Nails
+< Written by Atticus Ross and Trent Reznor
+< Produced by Alan Moulder, Atticus Ross, and Trent Reznor
+< Nine Inch Nails appear courtesy of The Null Corporation
+< 
+< "Punching in a Dream"
+< Performed by The Naked and Famous
+< Written by Aaron Short, Alisa Xayalith, and Thom Powers
+< Produced by Thom Powers
+< The Naked and Famous appear courtesy of Somewhat Damaged and Universal Republic
+< 
+< "Arrival of the Birds"
+< Performed by The Cinematic Orchestra
+< Written by The Cinematic Orchestra
+< Produced by The Cinematic Orchestra
+< The Cinematic Orchestra appears courtesy of Disney Records
+< 
+< "Roll Away Your Stone"
+< Performed by Mumford and Sons
+< Written by Benjamin Lovett, Edward Dwane, Marcus Mumford, and Winston Marshall
+< Produced by Markus Dravs
+< Mumford and Sons appear courtesy of Glassnote Entertainment Group LLC
+< 
+< "On (Instrumental)"
+< Performed by Bloc Party
+< Written by Bloc Party
+< Produced by Jacknife Lee
+< Bloc Party appears courtesy of Vice Records
+< 
+< "A Dream within a Dream"
+< Performed by The Glitch Mob
+< The Glitch Mob appears courtesy of Glass Air
+< 
+< "I Can't Stop"
+< Performed by Flux Pavilion
+< Flux Pavilion appears courtesy of Circus Records Limited
+< 
+< This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License: 
http://creativecommons.org/licenses/by-nc-nd/3.0/</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=Y4MnpzG5Sqc&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/default.jpg' height='90' width='120' time='00:14:59.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/1.jpg' height='90' width='120' 
time='00:07:29.750' yt:nam
 e='start'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/2.jpg' height='90' width='120' 
time='00:14:59.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/Y4MnpzG5Sqc/3.jpg' 
height='90' width='120' time='00:22:29.250' yt:name='end'/><media:title type='plain'>KONY 
2012</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='1799'/><yt:uploaded>2012-03-05T20:13:33.000Z</yt:uploaded><yt:uploaderId>UCTfiNvrrwuhJjyGuUjH_kEg</yt:uploaderId><yt:videoid>Y4MnpzG5Sqc</yt:videoid></media:group><gd:rating
 average='4.5237823' max='5' min='1' numRaters='1586358' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='97855234'/><yt:rating numDislikes='188863' numLikes='1397495'/></entry><entry 
gd:etag='W/&quot;DkIMSX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:fLexgOxsZu0</id><published>2011-04-15T22:03:14.000Z</published><updated>2013-06-27T00:56:28.000Z</updated><app:control><yt:state
 name
 ='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>Bruno Mars - 
The Lazy Song [OFFICIAL VIDEO]</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/fLexgOxsZu0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=fLexgOxsZu0&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/vid
 eos/fLexgOxsZu0/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/oUM-UJ7rirJYP8CQ0EIaHA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0'/><author><name>Bruno 
Mars</name><uri>https://gdata.youtube.com/feeds/api/users/ElektraRecords</uri><yt:userId>oUM-UJ7rirJYP8CQ0EIaHA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderated'/><yt:accessControl 
action='rat
 e' 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='https://gdata.youtube.com/feeds/api/videos/fLexgOxsZu0/comments' 
countHint='524936'/></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='https://www.youtube.com/v/fLexgOxsZu0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='209' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='Bruno Mars' 
yt:type='partner'>elektrarecords</media:credit><media:description type=
 'plain'>Available now on iTunes! http://smarturl.it/Doo-Wops
+< 'Unorthodox Jukebox' available now on iTunes! http://www.smarturl.it/unorthodoxjukebox
+< 
+< © 2011 WMG. The official music video for 'The Lazy Song' by Bruno Mars from doo-wops and hooligans - 
available now on Elektra Records!
+< 
+< Directed by Bruno Mars and Cameron Duddy
+< Choreographed and Performed by Poreotics: http://poreotics.com
+< 
+< http://brunomars.com 
+< http://facebook.com/thatbrunomars
+< http://twitter.com/brunomars
+< 
+< LYRICS
+< Today I don't feel like doing anything
+< I just wanna lay in my bed
+< Don't feel like picking up my phone
+< So leave a message at the tone
+< 'Cause today I swear I'm not doing anything.
+< 
+< Uh!
+< I'm gonna kick my feet up
+< Then stare at the fan
+< Turn the TV on, throw my hand in my pants
+< Nobody's gonna tell me I can't
+< 
+< I'll be lounging on the couch,
+< Just chillin' in my snuggie
+< Click to MTV, so they can teach me how to dougie
+< 'Cause in my castle I'm the freaking man
+< 
+< Oh, yes I said it
+< I said it
+< I said it 'cause I can
+< 
+< Today I don't feel like doing anything
+< I just wanna lay in my bed
+< Don't feel like picking up my phone
+< So leave a message at the tone
+< 'Cause today I swear I'm not doing anything
+< 
+< Nothing at all!
+< Ooh, hoo, ooh, hoo, ooh, ooh-ooh
+< Nothing at all
+< Ooh, hoo, ooh, hoo, ooh, ooh-ooh
+< 
+< Tomorrow I'll wake up, do some P90X
+< Meet a really nice girl, have some really nice sex
+< And she's gonna scream out: 'This is Great' (Oh my God, this is great)
+< Yeah
+< 
+< I might mess around, get my college degree
+< I bet my old man will be so proud of me
+< But sorry pops, you'll just have to wait
+< Haha
+< 
+< Oh, yes I said it
+< I said it
+< I said it 'cause I can
+< 
+< Today I don't feel like doing anything
+< I just wanna lay in my bed
+< Don't feel like picking up my phone
+< So leave a message at the tone
+< 'Cause today I swear I'm not doing anything
+< 
+< No, I ain't gonna comb my hair
+< 'Cause I ain't going anywhere
+< No, no, no, no, no, no, no, no, no
+< I'll just strut in my birthday suit
+< And let everything hang loose
+< Yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah, yeah
+< 
+< Ooh
+< Today I don't feel like doing anything
+< I just wanna lay in my bed
+< Don't feel like picking up my phone
+< So leave a message at the tone
+< 'Cause today I swear I'm not doing anything
+< 
+< Nothing at all
+< Nothing at all
+< Nothing at all
+< 
+< Comic Chimp Mask used by permission of Easter Unlimited, Inc. / FunWorld Div. All Rights Reserved. 
Copyright 2009.</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=fLexgOxsZu0&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/fLexgOxsZu0/default.jpg' height='90' width='120' time='00:01:44.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/fLexgOxsZu0/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/fLexgOxsZu0/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/fLexgOxsZu0/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/fLexgOxsZu0/1.jpg' height='90' w
 idth='120' time='00:00:52.250' yt:name='start'/><media:thumbnail 
url='https://i1.ytimg.com/vi/fLexgOxsZu0/2.jpg' height='90' width='120' time='00:01:44.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/fLexgOxsZu0/3.jpg' height='90' width='120' 
time='00:02:36.750' yt:name='end'/><media:title type='plain'>Bruno Mars - The Lazy Song [OFFICIAL 
VIDEO]</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='209'/><yt:uploaded>2011-04-15T22:03:14.000Z</yt:uploaded><yt:uploaderId>UCoUM-UJ7rirJYP8CQ0EIaHA</yt:uploaderId><yt:videoid>fLexgOxsZu0</yt:videoid></media:group><gd:rating
 average='4.8599844' max='5' min='1' numRaters='1341908' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='400267498'/><yt:rating numDislikes='46972' numLikes='1294936'/></entry><entry 
gd:etag='W/&quot;Dk8DRX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:Ys7-6_t7OEQ</id><published>2012-10-12T15:55:06.000Z</published>
 <updated>2013-06-27T01:01:14.000Z</updated><app:control><yt:state name='restricted' 
reasonCode='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>Justin 
Bieber - Beauty And A Beat ft. Nicki Minaj</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/Ys7-6_t7OEQ?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=Ys7-6_t7OEQ&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.rating
 s' type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hkj014U2CQ2Nv0UZeYpE_A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ'/><author><name>JustinBieberVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/JustinBieberVEVO</uri><yt:userId>Hkj014U2CQ2Nv0UZeYpE_A</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' permission='allowed'/><yt:acces
 sControl 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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/Ys7-6_t7OEQ/comments' 
countHint='583797'/></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='https://www.youtube.com/v/Ys7-6_t7OEQ?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='294' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='J
 ustinBieberVEVO' yt:type='partner'>justinbiebervevo</media:credit><media:description type='plain'>Music 
video by Justin Bieber performing Beauty And A Beat. ©:  The Island Def Jam Music 
Group</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=Ys7-6_t7OEQ&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/default.jpg' height='90' width='120' time='00:02:27' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/sddefault.jpg' height='480' width='640' yt:name='sddefault'/><media
 :thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/1.jpg' height='90' width='120' time='00:01:13.500' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/2.jpg' height='90' width='120' 
time='00:02:27' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/Ys7-6_t7OEQ/3.jpg' 
height='90' width='120' time='00:03:40.500' yt:name='end'/><media:title type='plain'>Justin Bieber - Beauty 
And A Beat ft. Nicki Minaj</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='294'/><yt:uploaded>2012-10-12T15:55:06.000Z</yt:uploaded><yt:uploaderId>UCHkj014U2CQ2Nv0UZeYpE_A</yt:uploaderId><yt:videoid>Ys7-6_t7OEQ</yt:videoid></media:group><gd:rating
 average='4.1822934' max='5' min='1' numRaters='1541277' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='257637939'/><yt:rating numDislikes='315078' numLikes='1226199'/></entry><entry 
gd:etag='W/&quot;Dk8GRH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com
 
,2008:video:AbPED9bisSc</id><published>2012-09-20T17:04:23.000Z</published><updated>2013-06-27T01:00:25.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>One 
Direction - Live While We're Young</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/AbPED9bisSc?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=AbPED9bisSc&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/responses
 '/><link rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/bW18JZRgko_mOGm5er8Yzg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc'/><author><name>OneDirectionVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/OneDirectionVEVO</uri><yt:userId>bW18JZRgko_mOGm5er8Yzg</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:ac
 cessControl 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='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/AbPED9bisSc/comments' 
countHint='651427'/></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='https://www.youtube.com/v/AbPED9bisSc?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='198' 
yt:format='5'/>
 <media:credit role='uploader' scheme='urn:youtube' yt:display='OneDirectionVEVO' 
yt:type='partner'>onedirectionvevo</media:credit><media:description type='plain'>TAKE ME HOME The brand new 
album out now!
+< Featuring Live While We're Young and Little Things.
+< iTunes: http://smarturl.it/takemehome1D
+< Amazon: http://amzn.to/OXqkoD
+< Official Store: http://myplay.me/vxl
+< 
+< 
+< Music video by One Direction performing Live While We're Young. (C) 2012 Simco Limited under exclusive 
license to Sony Music Entertainment UK Limited</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=AbPED9bisSc&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/AbPED9bisSc/default.jpg' height='90' width='120' time='00:01:39' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/AbPED9bisSc/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/AbPED9bisSc/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/AbPED9bisSc/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/A
 bPED9bisSc/1.jpg' height='90' width='120' time='00:00:49.500' yt:name='start'/><media:thumbnail 
url='https://i1.ytimg.com/vi/AbPED9bisSc/2.jpg' height='90' width='120' time='00:01:39' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/AbPED9bisSc/3.jpg' height='90' width='120' 
time='00:02:28.500' yt:name='end'/><media:title type='plain'>One Direction - Live While We're 
Young</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='198'/><yt:uploaded>2012-09-20T17:04:23.000Z</yt:uploaded><yt:uploaderId>UCbW18JZRgko_mOGm5er8Yzg</yt:uploaderId><yt:videoid>AbPED9bisSc</yt:videoid></media:group><gd:rating
 average='4.7382474' max='5' min='1' numRaters='1303368' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='216674543'/><yt:rating numDislikes='85290' numLikes='1218078'/></entry><entry 
gd:etag='W/&quot;Dk8ERH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:t4H_Zoh7G5A</id><published>2011-03-04T01:
 13:27.000Z</published><updated>2013-06-27T01:00:05.000Z</updated><app:control><yt:state name='restricted' 
reasonCode='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>Jennifer 
Lopez - On The Floor ft. Pitbull</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/t4H_Zoh7G5A?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=t4H_Zoh7G5A&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/responses'/><link 
rel='http://gdata.youtube.com/schemas/200
 7#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/x1f1u4XlFFr0YgqF3wB4lQ'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A'/><author><name>JenniferLopezVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/JenniferLopezVEVO</uri><yt:userId>x1f1u4XlFFr0YgqF3wB4lQ</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' permission='all
 owed'/><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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/t4H_Zoh7G5A/comments' 
countHint='549454'/></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='https://www.youtube.com/v/t4H_Zoh7G5A?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='267' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtub
 e' yt:display='JenniferLopezVEVO' yt:type='partner'>jenniferlopezvevo</media:credit><media:description 
type='plain'>Music video by Jennifer Lopez performing On The Floor feat. Pitbull. © 2011 Island Records
+< #VEVOCertified on April 15, 2012. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=t4H_Zoh7G5A&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/default.jpg' height='90' width='120' time='00:02:13.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/1.jpg' height='90' width='120' 
tim
 e='00:01:06.750' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/2.jpg' 
height='90' width='120' time='00:02:13.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/t4H_Zoh7G5A/3.jpg' height='90' width='120' time='00:03:20.250' 
yt:name='end'/><media:title type='plain'>Jennifer Lopez - On The Floor ft. 
Pitbull</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='267'/><yt:uploaded>2011-03-04T01:13:27.000Z</yt:uploaded><yt:uploaderId>UCx1f1u4XlFFr0YgqF3wB4lQ</yt:uploaderId><yt:videoid>t4H_Zoh7G5A</yt:videoid></media:group><gd:rating
 average='4.703179' max='5' min='1' numRaters='1294733' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='675859664'/><yt:rating numDislikes='96076' numLikes='1198657'/></entry><entry 
gd:etag='W/&quot;Dk8FQH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:hLQl3WQQoQ0</id><published>2011-09-29T23:56:00.000Z</published><updated>2013-06-
 27T01:00:11.000Z</updated><app:control><yt:state name='restricted' 
reasonCode='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>Adele - 
Someone Like You</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/hLQl3WQQoQ0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=hLQl3WQQoQ0&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='https
 ://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/omP_epzeKzvBX156r6pm1Q'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0'/><author><name>AdeleVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/AdeleVEVO</uri><yt:userId>omP_epzeKzvBX156r6pm1Q</yt:userId></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='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/hLQl3WQQoQ0/comments' 
countHint='250006'/></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='https://www.youtube.com/v/hLQl3WQQoQ0?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='285' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='AdeleVEVO' 
yt:type='partner'>adelevevo</media:credit><med
 ia:description type='plain'>Music video by Adele performing Someone Like You. (C) 2011 XL Recordings 
Ltd</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=hLQl3WQQoQ0&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/default.jpg' height='90' width='120' time='00:02:22.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/1.jpg' height='90' width='120' 
t
 ime='00:01:11.250' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/2.jpg' 
height='90' width='120' time='00:02:22.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/hLQl3WQQoQ0/3.jpg' height='90' width='120' time='00:03:33.750' 
yt:name='end'/><media:title type='plain'>Adele - Someone Like 
You</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='285'/><yt:uploaded>2011-09-29T23:56:00.000Z</yt:uploaded><yt:uploaderId>UComP_epzeKzvBX156r6pm1Q</yt:uploaderId><yt:videoid>hLQl3WQQoQ0</yt:videoid></media:group><gd:rating
 average='4.897775' max='5' min='1' numRaters='1164920' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='280412521'/><yt:rating numDislikes='29771' numLikes='1135149'/></entry><entry 
gd:etag='W/&quot;Dk8CRn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:wcLNteez3c4</id><published>2012-08-14T15:00:06.000Z</published><updated>2013-06-27T01:01:07.000
 Z</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'/><title>PSY (ft. 
HYUNA) 오빤 딱 내 스타일</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/wcLNteez3c4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='http://gdata.youtube.com/schemas/2007#video.in-response-to' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/9bZkp7q19f0'/><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=wcLNteez3c4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='applicati
 on/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=wcLNteez3c4'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/rDkAvwZum-UTjHmzDI2iIw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4'/><author><name>officialpsy</name><uri>https://gdata.youtube.com/feeds/api/users/officialpsy</uri><yt:userId>rDkAvwZum-UTjHmzDI2iIw</yt:userId></author><yt:accessControl
 action='com
 ment' 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='https://gdata.youtube.com/feeds/api/videos/wcLNteez3c4/comments' 
countHint='423006'/></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='https://www.youtube.com/v/wcLNteez3c4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression=
 'full' duration='227' yt:format='5'/><media:content 
url='rtsp://r12---sn-aiglln7r.c.youtube.com/CkcLENy73wIaPgnO3bPntc3CwRMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='227' yt:format='1'/><media:content 
url='rtsp://r12---sn-aiglln7r.c.youtube.com/CkcLENy73wIaPgnO3bPntc3CwRMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='227' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='officialpsy' 
yt:type='partner'>officialpsy</media:credit><media:description type='plain'>6TH STUDIO ALBUM [PSY 6甲] 
+< ▶ NOW available on iTunes: http://smarturl.it/psy6gap1
+< ▶ Official PSY Online Store US &amp; International : 
+< http://psy.shop.bravadousa.com/
+< ▶ About PSY from YG Ent.: http://smarturl.it/YGfamilyAboutPSY
+< ▶ PSY's Products on eBay: http://stores.ebay.com/ygentertainment
+< ▶ YG-eShop: http://www.ygeshop.com
+< 
+< 
+< Psy's 2nd Version of "GANGNAM STYLE" by Hyuna Released!
+< Gangnam Style - Hyuna Ver. was discussed during the making of the music video for "Gangnam Style." It can 
be perceived as the girl version for "Gangnam Style." The main female for this music video is 4minute's 
Hyuna. "Gangnam Style" is reborn with 'Oppa Is Just My Style' by Hyuna!
+< 
+< '강남스타일' 뮤직비디오 제작 당시 함께 기획됐던 '오빤 딱 내 스타일'은 여성의 관점에서 '강남스타일'을 재해석한 것으로 걸그룹 포미닛의 현아가 주인공으로 출연한 사실이 알려져 화제를 모은 
바 있다. 싸이는 '오빤 딱 내 스타일' 뮤직비디오 공개로 전세계인들과 다시 한 번 즐겁게 이번 '강남 스타일'의 열기를 이어나갈 계획이다!
+< 
+< For More Information @
+< http://www.facebook.com/officialpsy
+< http://twitter.com/psy_oppa
+< http://twitter.com/ygent_official
+< http://me2day.net/psyfive
+< http://www.psypark.com
+< App Store: http://goo.gl/l9TU6
+< Google Play: http://goo.gl/UiEn1</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=wcLNteez3c4&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/wcLNteez3c4/default.jpg' height='90' width='120' time='00:01:53.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/wcLNteez3c4/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/wcLNteez3c4/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/wcLNteez3c4/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/wcLNteez3c4/1.jpg' height='90' width='120' 
time='00:00:56.750' yt:name='start'/><media:thumbnail url='https://i1.y
 timg.com/vi/wcLNteez3c4/2.jpg' height='90' width='120' time='00:01:53.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/wcLNteez3c4/3.jpg' height='90' width='120' 
time='00:02:50.250' yt:name='end'/><media:title type='plain'>PSY (ft. HYUNA) 오빤 딱 내 
스타일</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='227'/><yt:uploaded>2012-08-14T15:00:06.000Z</yt:uploaded><yt:uploaderId>UCrDkAvwZum-UTjHmzDI2iIw</yt:uploaderId><yt:videoid>wcLNteez3c4</yt:videoid></media:group><gd:rating
 average='4.2677226' max='5' min='1' numRaters='1342912' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='381191163'/><yt:rating numDislikes='245846' numLikes='1097066'/></entry><entry 
gd:etag='W/&quot;Dk8GR347eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:lWA2pjMjpBs</id><published>2012-11-09T00:18:50.000Z</published><updated>2013-06-27T01:00:26.000Z</updated><app:control><yt:state
 name='restricted' 
 reasonCode='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>Rihanna - 
Diamonds</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/lWA2pjMjpBs?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=lWA2pjMjpBs&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/ratings'/><link rel='ht
 tp://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/2xskkQVFEpLcGFnNSLQY0A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs'/><author><name>RihannaVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/RihannaVEVO</uri><yt:userId>2xskkQVFEpLcGFnNSLQY0A</yt:userId></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='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/lWA2pjMjpBs/comments' 
countHint='223154'/></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='https://www.youtube.com/v/lWA2pjMjpBs?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='283' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='RihannaVEVO' 
yt:type='partner'>rihannavevo</media:credit><media:description type='plain'>Pre-order new album Unapologetic, 
out
  worldwide Monday, November 19: http://smarturl.it/UnapologeticDlx
+< 
+< 
+< 
+< Music video by Rihanna performing Diamonds. ©:  The Island Def Jam Music 
Group</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=lWA2pjMjpBs&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/lWA2pjMjpBs/default.jpg' height='90' width='120' time='00:02:21.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/lWA2pjMjpBs/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/1.jpg' height='90' width='120' 
time='00:01:10.750' yt:n
 ame='start'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/2.jpg' height='90' width='120' 
time='00:02:21.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/lWA2pjMjpBs/3.jpg' 
height='90' width='120' time='00:03:32.250' yt:name='end'/><media:title type='plain'>Rihanna - 
Diamonds</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='283'/><yt:uploaded>2012-11-09T00:18:50.000Z</yt:uploaded><yt:uploaderId>UC2xskkQVFEpLcGFnNSLQY0A</yt:uploaderId><yt:videoid>lWA2pjMjpBs</yt:videoid></media:group><gd:rating
 average='4.784351' max='5' min='1' numRaters='1139740' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='300067447'/><yt:rating numDislikes='61446' numLikes='1078294'/></entry><entry 
gd:etag='W/&quot;Dk8DQ347eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:4GuqB1BQVr4</id><published>2012-05-03T23:50:06.000Z</published><updated>2013-06-27T01:01:12.000Z</updated><app:control><yt:s
 tate name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>Justin 
Bieber - Boyfriend</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/4GuqB1BQVr4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=4GuqB1BQVr4&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB
 1BQVr4/ratings'/><link rel='http://gdata.youtube.com/schemas/2007#video.complaints' 
type='application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hkj014U2CQ2Nv0UZeYpE_A'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4'/><author><name>JustinBieberVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/JustinBieberVEVO</uri><yt:userId>Hkj014U2CQ2Nv0UZeYpE_A</yt:userId></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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/4GuqB1BQVr4/comments' 
countHint='835601'/></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='https://www.youtube.com/v/4GuqB1BQVr4?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='211' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='JustinBieberVEVO' 
yt:type='partner'>justinbiebervevo</media:credit><media:description 
 type='plain'>Music video by Justin Bieber performing Boyfriend. ©: 2012 The Island Def Jam Music Group
+< #VEVOCertified on July 11, 2012. http://www.youtube.com/vevocertified
+< 
+< Buy It Now!
+< iTunes - http://smarturl.it/boyfriend
+< Amazon - http://smarturl.it/boyfriendamzn</media:description><media:keywords/><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=4GuqB1BQVr4&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/4GuqB1BQVr4/default.jpg' height='90' width='120' time='00:01:45.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/4GuqB1BQVr4/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/4GuqB1BQVr4/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/4GuqB1BQVr4/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/4GuqB1BQVr4/1.jpg' height='90' width='120' 
time='00:00:52.750' yt:name='start'/><media:thumbnail url='htt
 ps://i1.ytimg.com/vi/4GuqB1BQVr4/2.jpg' height='90' width='120' time='00:01:45.500' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/4GuqB1BQVr4/3.jpg' height='90' width='120' 
time='00:02:38.250' yt:name='end'/><media:title type='plain'>Justin Bieber - 
Boyfriend</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='211'/><yt:uploaded>2012-05-03T23:50:06.000Z</yt:uploaded><yt:uploaderId>UCHkj014U2CQ2Nv0UZeYpE_A</yt:uploaderId><yt:videoid>4GuqB1BQVr4</yt:videoid></media:group><gd:rating
 average='3.7182097' max='5' min='1' numRaters='1567024' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='250256297'/><yt:rating numDislikes='502149' numLikes='1064875'/></entry><entry 
gd:etag='W/&quot;Dk4FQX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:T4cdfRohhcg</id><published>2013-01-07T19:57:08.000Z</published><updated>2013-06-27T01:01:50.000Z</updated><app:control><yt:state
 name='restricted' reason
 Code='limitedSyndication'>Syndication of this video was restricted.</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='Music' label='Music'/><title>One 
Direction - Kiss You (Official)</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/T4cdfRohhcg?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=T4cdfRohhcg&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/ratings'/><l
 ink rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/bW18JZRgko_mOGm5er8Yzg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg'/><author><name>OneDirectionVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/OneDirectionVEVO</uri><yt:userId>bW18JZRgko_mOGm5er8Yzg</yt:userId></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='denied'/><yt:accessControl 
action='syndicate' permission='allowed'/><gd:comments><gd:feedLink 
rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/T4cdfRohhcg/comments' 
countHint='545043'/></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='https://www.youtube.com/v/T4cdfRohhcg?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='191' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='OneDirectionVEVO' 
yt:type='partner'>onedirectionvevo</media:credit><media:description type='plain'>Music 
 video by One Direction performing Kiss You. (C) 2013 Simco Limited under exclusive licence to Sony Music 
Entertainment UK Limited
+< #VEVOCertified on March 21, 2013. http://vevo.com/certified 
http://youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=T4cdfRohhcg&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='allow'>SZ SY JP SR SV YT SK JE SI SH SO SN SM SL SC JM SA JO SG SE SD CK CI CH 
CO CN CM CL CC CA CG CF CD CZ CY CX CR CV CU IM ZA IO IN RU RW IE ID RS ZW IQ RE IS IR IT ET BL BM BN BO BH 
BI BJ SJ BD BE BF BG BA BB BY BZ BT BV BW BR BS HK HN HM QA KP SB HR KW HT HU AE AD AG AF AI AM AL AO AQ AS 
AR AU AT AW KZ AX AZ YE KY PR PS OM PW PT PY PA PF PG PE PK PH PN PL PM KG NA NC WS NE NF NG NI FR NL NO NP 
WF FJ FK FM FO LB NZ KI GG GF GE GD GB GA GN GM GL GI GH GW GU GT GS GR GQ GP NR GY ME VI MG MF MA VN MM ML 
MO MN FI VE MK VG MU MT MW MV MQ EH MS MR EE EG MY MX EC MZ KH LR LU DJ VC LS UM DZ LC LA UG UA LK LI LV DO 
 LT DM UY DK VU UZ US LY MC ST ZM VA TN KR TL TM TJ TK TH TF TG TD TC MH TZ ES KE TV TW TT ER TR KN KM MD TO 
NU IL RO MP</media:restriction><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/default.jpg' 
height='90' width='120' time='00:01:35.500' yt:name='default'/><media:thumbnail 
url='https://i1.ytimg.com/vi/T4cdfRohhcg/mqdefault.jpg' height='180' width='320' 
yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/hqdefault.jpg' height='360' 
width='480' yt:name='hqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/sddefault.jpg' 
height='480' width='640' yt:name='sddefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/T4cdfRohhcg/1.jpg' height='90' width='120' time='00:00:47.750' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/2.jpg' height='90' width='120' 
time='00:01:35.500' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/T4cdfRohhcg/3.jpg' 
height='90' width='120' time='00:02:23.25
 0' yt:name='end'/><media:title type='plain'>One Direction - Kiss You 
(Official)</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='191'/><yt:uploaded>2013-01-07T19:57:08.000Z</yt:uploaded><yt:uploaderId>UCbW18JZRgko_mOGm5er8Yzg</yt:uploaderId><yt:videoid>T4cdfRohhcg</yt:videoid></media:group><gd:rating
 average='4.7716846' max='5' min='1' numRaters='1127091' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='141863959'/><yt:rating numDislikes='64333' numLikes='1062758'/></entry><entry 
gd:etag='W/&quot;Dk4EQX47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:_OBlgSz8sSM</id><published>2007-05-22T20:29:24.000Z</published><updated>2013-06-27T01:01:40.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'/><title>Charlie 
bit my finger - agai
 n !</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/_OBlgSz8sSM?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=_OBlgSz8sSM&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/related'/><link rel=
 'http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=_OBlgSz8sSM'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/fHZCZHykS3IQDPyFfnqjWg'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM'/><author><name>HDCYT</name><uri>https://gdata.youtube.com/feeds/api/users/HDCYT</uri><yt:userId>fHZCZHykS3IQDPyFfnqjWg</yt:userId></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:c
 omments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/_OBlgSz8sSM/comments' 
countHint='813265'/></gd:comments><media:group><media:category label='Comedy' 
scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Comedy</media:category><media:content 
url='https://www.youtube.com/v/_OBlgSz8sSM?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='56' 
yt:format='5'/><media:content 
url='rtsp://r17---sn-aigllned.c.youtube.com/CkcLENy73wIaPgkjsfwsgWXg_BMYDSANFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDmDA==/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='56' yt:format='1'/><media:content 
url='rtsp://r17---sn-aigllned.c.youtube.com/CkcLENy73wIaPgkjsfwsgWXg_BMYESARFEgGUghzdGFuZGFyZHIhARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQ
 nGDmDA==/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='56' 
yt:format='6'/><media:credit role='uploader' scheme='urn:youtube' yt:display='HDCYT' 
yt:type='partner'>hdcyt</media:credit><media:description type='plain'>T-Shirts 
http://charliebitme.firebrandstore.com/
+< iPhone  http://itunes.apple.com/gb/app/charlie-bit-me!!!/id494858348?mt=8
+< Android  https://play.google.com/store/apps/details?id=com.viralspiral.charlie 
+< Even had I thought of trying to get my boys to do this I probably couldn't have. Neither were coerced into 
any of this and neither were hurt (for very long anyway).  This was just one of those moments when I had the 
video camera out because the boys were being fun and they provided something really very funny.
+< 
+< FAQ Harry is 8 3/4, Charlie is 6 1/2, Jasper is  4 1/4, Rupert is 1 1/2
+< (November 2012)
+< 
+< Harry and Charlie Blogging - Charlie Bit My Finger Again!
+< http://harryandcharlie.blogspot.com/
+< 
+< Twitter
+< http://twitter.com/harryandcharlie</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=_OBlgSz8sSM&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/_OBlgSz8sSM/default.jpg' height='90' width='120' time='00:00:28' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/_OBlgSz8sSM/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/_OBlgSz8sSM/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/_OBlgSz8sSM/1.jpg' height='90' width='120' time='00:00:14' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/_OBlgSz8sSM/2.jpg' height='90' width='120' 
time='00:00:28' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/_OBlgSz8sSM/3.jpg' 
height='90' width='120' time='00:00:42' yt:name
 ='end'/><media:title type='plain'>Charlie bit my finger - again !</media:title><yt:duration 
seconds='56'/><yt:uploaded>2007-05-22T20:29:24.000Z</yt:uploaded><yt:uploaderId>UCfHZCZHykS3IQDPyFfnqjWg</yt:uploaderId><yt:videoid>_OBlgSz8sSM</yt:videoid></media:group><gd:rating
 average='4.493818' max='5' min='1' numRaters='1205179' 
rel='http://schemas.google.com/g/2005#overall'/><yt:recorded>2007-03-19</yt:recorded><yt:statistics 
favoriteCount='0' viewCount='529927500'/><yt:rating numDislikes='152510' numLikes='1052669'/></entry><entry 
gd:etag='W/&quot;Dk4FRH47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:1G4isv_Fylg</id><published>2011-10-19T02:42:54.000Z</published><updated>2013-06-27T01:01:55.000Z</updated><app:control><yt:state
 name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</yt:state></app:control><category scheme='http://schemas.google.com/g/2005#kind' 
term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='h
 ttp://gdata.youtube.com/schemas/2007/categories.cat' term='Music' label='Music'/><title>Coldplay - 
Paradise</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/1G4isv_Fylg?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=1G4isv_Fylg&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type=
 'application/atom+xml' href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/DPM_n1atn2ijUwHd0NNRQw'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg'/><author><name>ColdplayVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/ColdplayVEVO</uri><yt:userId>DPM_n1atn2ijUwHd0NNRQw</yt:userId></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='denied'/><yt:accessControl action='syndicate' permission='allowed'/><gd:comments><gd
 :feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/1G4isv_Fylg/comments' 
countHint='228701'/></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='https://www.youtube.com/v/1G4isv_Fylg?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='261' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='ColdplayVEVO' 
yt:type='partner'>coldplayvevo</media:credit><media:description type='plain'>Click here to buy Mylo Xyloto 
http://links.emi.com/coldplayMX 
+< This video was directed by Mat Whitecross in 2011 and was filmed in South Africa and London
+< Music video by Coldplay performing Paradise. (C) 2011 EMI Records Ltd This label copy information is the 
subject of copyright protection. All rights reserved.(C) 2011 EMI Records Ltd 
+< #VEVOCertified on April 19, 2012. http://www.vevo.com/certified 
http://www.youtube.com/vevocertified</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=1G4isv_Fylg&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/1G4isv_Fylg/default.jpg' height='90' width='120' time='00:02:10.500' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/1G4isv_Fylg/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/1G4isv_Fylg/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/1G4isv_Fylg/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/1G4isv_Fylg/1.jpg' height='90' width='120' 
tim
 e='00:01:05.250' yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/1G4isv_Fylg/2.jpg' 
height='90' width='120' time='00:02:10.500' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/1G4isv_Fylg/3.jpg' height='90' width='120' time='00:03:15.750' 
yt:name='end'/><media:title type='plain'>Coldplay - 
Paradise</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='261'/><yt:uploaded>2011-10-19T02:42:54.000Z</yt:uploaded><yt:uploaderId>UCDPM_n1atn2ijUwHd0NNRQw</yt:uploaderId><yt:videoid>1G4isv_Fylg</yt:videoid></media:group><gd:rating
 average='4.9265857' max='5' min='1' numRaters='1011136' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='213893594'/><yt:rating numDislikes='18558' numLikes='992578'/></entry><entry 
gd:etag='W/&quot;Dk8DRn47eCp7I2A9WhFREkQ.&quot;'><id>tag:youtube.com,2008:video:kYtGl1dX5qI</id><published>2012-11-29T02:50:08.000Z</published><updated>2013-06-27T01:01:17.000Z</upda
 ted><app:control><yt:state name='restricted' reasonCode='limitedSyndication'>Syndication of this video was 
restricted.</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='Music' label='Music'/><title>will.i.am - 
Scream &amp; Shout ft. Britney Spears</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/kYtGl1dX5qI?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=kYtGl1dX5qI&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' href='ht
 tps://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/_d6W32xuEAyPlf_KmvvwEA'/><link rel='self' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI'/><author><name>williamVEVO</name><uri>https://gdata.youtube.com/feeds/api/users/williamVEVO</uri><yt:userId>_d6W32xuEAyPlf_KmvvwEA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='allowe
 d'/><yt:accessControl action='rate' permission='allowed'/><yt:accessControl action='embed' 
permission='allowed'/><yt:accessControl action='list' permission='allowed'/><yt:accessControl 
action='autoPlay' permission='denied'/><yt:accessControl action='syndicate' 
permission='allowed'/><gd:comments><gd:feedLink rel='http://gdata.youtube.com/schemas/2007#comments' 
href='https://gdata.youtube.com/feeds/api/videos/kYtGl1dX5qI/comments' 
countHint='287454'/></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='https://www.youtube.com/v/kYtGl1dX5qI?version=3&amp;f=standard&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='292' 
yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' yt:display='williamVEVO' 
yt:type='partner'>williamvevo</media:
 credit><media:description type='plain'>Buy Now!
+< iTunes: http://smarturl.it/ScreamNShout 
+< 
+< 
+< Music video by will.i.am performing Scream &amp; Shout. © 2012 
Interscope</media:description><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=kYtGl1dX5qI&amp;feature=youtube_gdata_player'/><media:restriction 
type='country' relationship='deny'>DE</media:restriction><media:thumbnail 
url='https://i1.ytimg.com/vi/kYtGl1dX5qI/default.jpg' height='90' width='120' time='00:02:26' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/kYtGl1dX5qI/sddefault.jpg' height='480' width='640' 
yt:name='sddefault'/><media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/1.jpg' height='90' width='120' 
time='00:01:13' yt:name='start'/>
 <media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/2.jpg' height='90' width='120' time='00:02:26' 
yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/kYtGl1dX5qI/3.jpg' height='90' width='120' 
time='00:03:39' yt:name='end'/><media:title type='plain'>will.i.am - Scream &amp; Shout ft. Britney 
Spears</media:title><yt:aspectRatio>widescreen</yt:aspectRatio><yt:duration 
seconds='292'/><yt:uploaded>2012-11-29T02:50:08.000Z</yt:uploaded><yt:uploaderId>UC_d6W32xuEAyPlf_KmvvwEA</yt:uploaderId><yt:videoid>kYtGl1dX5qI</yt:videoid></media:group><gd:rating
 average='4.5973263' max='5' min='1' numRaters='1102143' 
rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' 
viewCount='250261557'/><yt:rating numDislikes='110951' numLikes='991192'/></entry></feed>
+  
diff --git a/gdata/tests/traces/youtube/setup-batch b/gdata/tests/traces/youtube/setup-batch
new file mode 100644
index 0000000..ec1e7bd
--- /dev/null
+++ b/gdata/tests/traces/youtube/setup-batch
@@ -0,0 +1,58 @@
+> GET /feeds/api/videos/RzR2k8yo4NY HTTP/1.1
+> Soup-Debug-Timestamp: 1372714780
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 65 (0x8c2ba0), SoupSocket 29 (0x7fffe401ca30)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714780
+< Soup-Debug: SoupMessage 65 (0x8c2ba0)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Mon, 01 Jul 2013 21:39:40 GMT
+< Date: Mon, 01 Jul 2013 21:39:40 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: *
+< GData-Version: 2.1
+< ETag: W/"DkEBR347eCp7I2A9WhFRF0w."
+< Last-Modified: Mon, 01 Jul 2013 21:37:36 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkEBR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY</id><published>2010-08-02T19:52:59.000Z</published><updated>2013-07-01T21:37:36.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'/><title>Fooish Bar</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/RzR2k8yo4NY?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube
 .com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.captionTracks' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/captions' yt:hasEntries='false'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=RzR2k8yo4NY'/><link rel='http://gdata.youtube.com/sche
 mas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hdu7S-LbC8V98jsR_tu6GA'/><link 
rel='http://gdata.youtube.com/schemas/2007#insight.views' type='text/html' 
href='https://insight.youtube.com/video-analytics-partner/gwt/csv-zip?token=ChUKAggEEg8IABILUnpSMms4eW80Tlk&amp;sig=MC0CFDLIvnZb8XjGDnQgLlxEphzs9DJjAhUAh5SLtXZVBHr2f63vByVjCn3I7gc&amp;user_starttime=1371945600000&amp;user_endtime=1372550400000&amp;exp=1372718380217&amp;devKey=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm'/><link
 rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderated'/><yt:accessControl 
action='ra
 te' 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='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments' 
countHint='450'/></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='https://www.youtube.com/v/RzR2k8yo4NY?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='12' 
yt:format='5'/><media:content 
url='rtsp://v5.cache8.c.youtube.com/CkULENy73wIaPAnW4KjMk3Y0RxMYDSANFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5
 gw=/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='12' 
yt:format='1'/><media:content 
url='rtsp://v5.cache8.c.youtube.com/CkULENy73wIaPAnW4KjMk3Y0RxMYESARFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='12' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='GDataTest'>gdatatest</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=RzR2k8yo4NY&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/RzR2k8yo4NY/default.jpg' height='90' width='120' time='00:00:06' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4
 NY/hqdefault.jpg' height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/RzR2k8yo4NY/1.jpg' height='90' width='120' time='00:00:03' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/2.jpg' height='90' width='120' 
time='00:00:06' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/3.jpg' 
height='90' width='120' time='00:00:09' yt:name='end'/><media:title type='plain'>Fooish 
Bar</media:title><yt:duration 
seconds='12'/><yt:uploaded>2010-08-02T19:52:59.000Z</yt:uploaded><yt:uploaderId>UCHdu7S-LbC8V98jsR_tu6GA</yt:uploaderId><yt:videoid>RzR2k8yo4NY</yt:videoid></media:group><yt:statistics
 favoriteCount='0' viewCount='9'/></entry>
+  
+> GET /feeds/api/videos/VppEcVz8qaI HTTP/1.1
+> Soup-Debug-Timestamp: 1372714780
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 66 (0x8c2c90), SoupSocket 29 (0x7fffe401ca30)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714780
+< Soup-Debug: SoupMessage 66 (0x8c2c90)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Mon, 01 Jul 2013 21:39:40 GMT
+< Date: Mon, 01 Jul 2013 21:39:40 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: *
+< GData-Version: 2.1
+< ETag: W/"Ak4HQ347eCp7I2A9Wx5TF0o."
+< Last-Modified: Mon, 02 Aug 2010 19:55:32 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;Ak4HQ347eCp7I2A9Wx5TF0o.&quot;'><id>tag:youtube.com,2008:video:VppEcVz8qaI</id><published>2010-08-02T19:53:00.000Z</published><updated>2010-08-02T19:55: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='People' label='People &amp; 
Blogs'/><title>Fooish Bar 2</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/VppEcVz8qaI?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=VppEcVz8qaI&amp;feature=youtube_gdata'/><link rel='http://gdata.youtu
 be.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.captionTracks' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI/captions' yt:hasEntries='false'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=VppEcVz8qaI'/><link rel='http://gdata.youtube.com/sc
 hemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hdu7S-LbC8V98jsR_tu6GA'/><link 
rel='http://gdata.youtube.com/schemas/2007#insight.views' type='text/html' 
href='https://insight.youtube.com/video-analytics-partner/gwt/csv-zip?token=ChUKAggEEg8IABILVnBwRWNWejhxYUk&amp;sig=MC0CFQDT-TRdvZrRxH-MbstY7qHnJtxEtAIUWs1lLVlKs1kszFj0Iz7eSO2dfCw&amp;user_starttime=1371945600000&amp;user_endtime=1372550400000&amp;exp=1372718380717&amp;devKey=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm'/><link
 rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/VppEcVz8qaI/comments' 
countHint='0'/></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='https://www.youtube.com/v/VppEcVz8qaI?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='12' 
yt:format='5'/><media:content 
url='rtsp://v1.cache8.c.youtube.com/CkULENy73wIaPAmiqfxccUSaVhMYDSANFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5
 gw=/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='12' 
yt:format='1'/><media:content 
url='rtsp://v1.cache8.c.youtube.com/CkULENy73wIaPAmiqfxccUSaVhMYESARFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='12' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='GDataTest'>gdatatest</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=VppEcVz8qaI&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/VppEcVz8qaI/default.jpg' height='90' width='120' time='00:00:06' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/VppEcVz8qaI/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/VppEcVz8q
 aI/hqdefault.jpg' height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/VppEcVz8qaI/1.jpg' height='90' width='120' time='00:00:03' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/VppEcVz8qaI/2.jpg' height='90' width='120' 
time='00:00:06' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/VppEcVz8qaI/3.jpg' 
height='90' width='120' time='00:00:09' yt:name='end'/><media:title type='plain'>Fooish Bar 
2</media:title><yt:duration 
seconds='12'/><yt:uploaded>2010-08-02T19:53:00.000Z</yt:uploaded><yt:uploaderId>UCHdu7S-LbC8V98jsR_tu6GA</yt:uploaderId><yt:videoid>VppEcVz8qaI</yt:videoid></media:group></entry>
+  
diff --git a/gdata/tests/traces/youtube/setup-comment b/gdata/tests/traces/youtube/setup-comment
new file mode 100644
index 0000000..d9c5c36
--- /dev/null
+++ b/gdata/tests/traces/youtube/setup-comment
@@ -0,0 +1,29 @@
+> GET /feeds/api/videos/RzR2k8yo4NY HTTP/1.1
+> Soup-Debug-Timestamp: 1372714777
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 57 (0x8c2d80), SoupSocket 26 (0x84d6a0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 200 OK
+< Soup-Debug-Timestamp: 1372714777
+< Soup-Debug: SoupMessage 57 (0x8c2d80)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Mon, 01 Jul 2013 21:39:37 GMT
+< Date: Mon, 01 Jul 2013 21:39:37 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: *
+< GData-Version: 2.1
+< ETag: W/"DkEBR347eCp7I2A9WhFRF0w."
+< Last-Modified: Mon, 01 Jul 2013 21:37:36 GMT
+< Transfer-Encoding: chunked
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:media='http://search.yahoo.com/mrss/' xmlns:gd='http://schemas.google.com/g/2005' 
xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkEBR347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:RzR2k8yo4NY</id><published>2010-08-02T19:52:59.000Z</published><updated>2013-07-01T21:37:36.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'/><title>Fooish Bar</title><content type='application/x-shockwave-flash' 
src='https://www.youtube.com/v/RzR2k8yo4NY?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'/><link
 rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=RzR2k8yo4NY&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube
 .com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.captionTracks' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/captions' yt:hasEntries='false'/><link 
rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' 
href='https://m.youtube.com/details?v=RzR2k8yo4NY'/><link rel='http://gdata.youtube.com/sche
 mas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hdu7S-LbC8V98jsR_tu6GA'/><link 
rel='http://gdata.youtube.com/schemas/2007#insight.views' type='text/html' 
href='https://insight.youtube.com/video-analytics-partner/gwt/csv-zip?token=ChUKAggEEg8IABILUnpSMms4eW80Tlk&amp;sig=MC4CFQC2ZU_svterHEsZLyPG1MNxW6TffwIVAKCUa0_-XttBUpTbceSQa8b9C3C3&amp;user_starttime=1371945600000&amp;user_endtime=1372550400000&amp;exp=1372718377424&amp;devKey=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm'/><link
 rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></author><yt:accessControl
 action='comment' permission='allowed'/><yt:accessControl action='commentVote' 
permission='allowed'/><yt:accessControl action='videoRespond' permission='moderated'/><yt:accessControl 
action='r
 ate' 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='https://gdata.youtube.com/feeds/api/videos/RzR2k8yo4NY/comments' 
countHint='450'/></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='https://www.youtube.com/v/RzR2k8yo4NY?version=3&amp;f=videos&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='12' 
yt:format='5'/><media:content 
url='rtsp://v5.cache8.c.youtube.com/CkULENy73wIaPAnW4KjMk3Y0RxMYDSANFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg
 5gw=/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='12' 
yt:format='1'/><media:content 
url='rtsp://v5.cache8.c.youtube.com/CkULENy73wIaPAnW4KjMk3Y0RxMYESARFEgGUgZ2aWRlb3NyIQESu_0sgf-YikLxr8LJPtA-DvPB7EI6RNWvHdRsUJxg5gw=/0/0/0/video.3gp'
 type='video/3gpp' medium='video' expression='full' duration='12' yt:format='6'/><media:credit 
role='uploader' scheme='urn:youtube' yt:display='GDataTest'>gdatatest</media:credit><media:description 
type='plain'/><media:keywords/><media:license type='text/html' 
href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=RzR2k8yo4NY&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/RzR2k8yo4NY/default.jpg' height='90' width='120' time='00:00:06' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo
 4NY/hqdefault.jpg' height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/RzR2k8yo4NY/1.jpg' height='90' width='120' time='00:00:03' 
yt:name='start'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/2.jpg' height='90' width='120' 
time='00:00:06' yt:name='middle'/><media:thumbnail url='https://i1.ytimg.com/vi/RzR2k8yo4NY/3.jpg' 
height='90' width='120' time='00:00:09' yt:name='end'/><media:title type='plain'>Fooish 
Bar</media:title><yt:duration 
seconds='12'/><yt:uploaded>2010-08-02T19:52:59.000Z</yt:uploaded><yt:uploaderId>UCHdu7S-LbC8V98jsR_tu6GA</yt:uploaderId><yt:videoid>RzR2k8yo4NY</yt:videoid></media:group><yt:statistics
 favoriteCount='0' viewCount='9'/></entry>
+  
diff --git a/gdata/tests/traces/youtube/setup-insert-comment b/gdata/tests/traces/youtube/setup-insert-comment
new file mode 100644
index 0000000..e69de29
diff --git a/gdata/tests/traces/youtube/teardown-insert-comment 
b/gdata/tests/traces/youtube/teardown-insert-comment
new file mode 100644
index 0000000..e69de29
diff --git a/gdata/tests/traces/youtube/teardown-upload b/gdata/tests/traces/youtube/teardown-upload
new file mode 100644
index 0000000..0b96c52
--- /dev/null
+++ b/gdata/tests/traces/youtube/teardown-upload
@@ -0,0 +1,26 @@
+> DELETE /feeds/api/users/gdatatest/uploads/-1OFaq-ITPk HTTP/1.1
+> Soup-Debug-Timestamp: 1372769338
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 33 (0x8c28d0), SoupSocket 18 (0x84d6a0)
+> Host: gdata.youtube.com
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM4AAADqH8lo9PPwuw0698JF76xDlWmWyEsyRRNN8S5ISwYu47Iok-qgJi7fAtOFsBYoKc-Ayt58aGeAvydDLedsmABUfgRDW1YKfY1ZzQvFclwhXQ3HlYMQ04AU7CXDF_3BBZNR_hUhyHRvM7Jqiyn7qHddBEjnp-XTzch5ImTCbPXawpNKZeRg1nySsOHhIXxTlLOWsPYiTdAuD5Z28sfTtXJTdT8XmZ-IwKG2nuF2ptMnH2wMokEQ7PB2lEeiZKOZ59VWKjx43fVidQExxB1PhHXN
+> GData-Version: 2
+> If-Match: W/"A0QHRH47eCp7I2A9WhFRF0s."
+> Connection: Keep-Alive
+  
+< HTTP/1.1 412 Precondition Failed
+< Soup-Debug-Timestamp: 1372769338
+< Soup-Debug: SoupMessage 33 (0x8c28d0)
+< X-GData-User-Country: GB
+< Content-Type: application/vnd.google.gdata.error+xml
+< Transfer-Encoding: chunked
+< Date: Tue, 02 Jul 2013 12:48:58 GMT
+< Expires: Tue, 02 Jul 2013 12:48:58 GMT
+< Cache-control: private, max-age=0
+< X-Content-Type-Options: nosniff
+< X-Frame-Options: SAMEORIGIN
+< X-XSS-Protection: 1; mode=block
+< Server: GSE
+< 
+< <errors 
xmlns='http://schemas.google.com/g/2005'><error><domain>GData</domain><code>etagsUnsupported</code><internalReason>Resource
 does not support Etags</internalReason></error></errors>
+  
diff --git a/gdata/tests/traces/youtube/upload-async b/gdata/tests/traces/youtube/upload-async
new file mode 100644
index 0000000..0ccb3e6
--- /dev/null
+++ b/gdata/tests/traces/youtube/upload-async
@@ -0,0 +1,31 @@
+> POST /feeds/api/users/default/uploads HTTP/1.1
+> Soup-Debug-Timestamp: 1372714763
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 33 (0x8c29c0), SoupSocket 17 (0x7fffe401ceb0)
+> Host: uploads.gdata.youtube.com
+> Slug: sample.ogg
+> Transfer-Encoding: chunked
+> Content-Type: multipart/related; boundary=0003Z5W789deadbeefRTE456KlemsnoZV
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1372714766
+< Soup-Debug: SoupMessage 33 (0x8c29c0)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Mon, 01 Jul 2013 21:39:23 GMT
+< Date: Mon, 01 Jul 2013 21:39:23 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.1
+< ETag: W/"DkACQn47eCp7I2A9WhFRF0w."
+< Location: https://gdata.youtube.com/feeds/api/users/gdatatest/uploads/mA3Fl9_DdEI
+< Content-Location: https://gdata.youtube.com/feeds/api/users/gdatatest/uploads/mA3Fl9_DdEI
+< X-GUploader-UploadID: 
AEnB2Ur6geyKhZJM1OEpvbuiPDsj_H2xF-W35iSjzwoaFj8PikpFTH2HAnMYN5F9TZ4aN1j20oA-r8Q8UtKIVj8LGcyeInCnaw
+< Content-Length: 5399
+< Server: HTTP Upload Server Built on Jun 25 2013 11:32:14 (1372185134)
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkACQn47eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:mA3Fl9_DdEI</id><published>2013-07-01T21:39:23.000Z</published><updated>2013-07-01T21:39:23.000Z</updated><app:edited>2013-07-01T21:39:23.000Z</app:edited><app:control><app:draft>yes</app:draft><yt:state
 name='processing'/></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='People' label='People &amp; 
Blogs'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='toast'/><category 
scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='wedding'/><title>Bad Wedding T
 oast</title><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=mA3Fl9_DdEI&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/mA3Fl9_DdEI/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/mA3Fl9_DdEI/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/mA3Fl9_DdEI/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/mA3Fl9_DdEI/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.captionTracks' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/mA3Fl9_DdEI/captions' yt:hasEntries='false'/><link 
 rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hdu7S-LbC8V98jsR_tu6GA'/><link 
rel='http://gdata.youtube.com/schemas/2007#insight.views' type='text/html' 
href='https://insight.youtube.com/video-analytics-partner/gwt/csv-zip?token=ChUKAggEEg8IABILbUEzRmw5X0RkRUk&amp;sig=MC0CFFUqsog2SkgugWR7fnps4ly-VIOZAhUAnZCyfJjppyEtxJxfC6U38AtKvHM&amp;user_starttime=1371945600000&amp;user_endtime=1372550400000&amp;exp=1372718363821&amp;devKey=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm'/><link
 rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/gdatatest/uploads/mA3Fl9_DdEI'/><link rel='edit' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/gdatatest/uploads/mA3Fl9_DdEI'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/mA3Fl9_DdEI/comments' 
countHint='0'/></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='https://www.youtube.com/v/mA3Fl9_DdEI?version=3&amp;f=user_uploads&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression=
 'full' duration='0' yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' 
yt:display='GDataTest'>gdatatest</media:credit><media:description type='plain'>I gave a bad toast at my 
friend's wedding.</media:description><media:keywords>toast, wedding</media:keywords><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=mA3Fl9_DdEI&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/mA3Fl9_DdEI/default.jpg' height='90' width='120' time='00:00:00' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/mA3Fl9_DdEI/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/mA3Fl9_DdEI/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/mA3Fl9_DdEI/1.jpg' height='90' width='120' time='00:00:00' 
yt:name='start'/><media:thumbnail url='https://i1.y
 timg.com/vi/mA3Fl9_DdEI/2.jpg' height='90' width='120' time='00:00:00' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/mA3Fl9_DdEI/3.jpg' height='90' width='120' time='00:00:00' 
yt:name='end'/><media:title type='plain'>Bad Wedding Toast</media:title><yt:duration 
seconds='0'/><yt:uploaded>2013-07-01T21:39:23.000Z</yt:uploaded><yt:uploaderId>UCHdu7S-LbC8V98jsR_tu6GA</yt:uploaderId><yt:videoid>mA3Fl9_DdEI</yt:videoid></media:group></entry>
+  
diff --git a/gdata/tests/traces/youtube/upload-simple b/gdata/tests/traces/youtube/upload-simple
new file mode 100644
index 0000000..8827c49
--- /dev/null
+++ b/gdata/tests/traces/youtube/upload-simple
@@ -0,0 +1,31 @@
+> POST /feeds/api/users/default/uploads HTTP/1.1
+> Soup-Debug-Timestamp: 1372714751
+> Soup-Debug: SoupSessionSync 1 (0x646230), SoupMessage 26 (0x8c28d0), SoupSocket 12 (0x7fffe0008e20)
+> Host: uploads.gdata.youtube.com
+> Slug: sample.ogg
+> Transfer-Encoding: chunked
+> Content-Type: multipart/related; boundary=0003Z5W789deadbeefRTE456KlemsnoZV
+> X-GData-Key: 
key=AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw
+> Authorization: GoogleLogin 
auth=DQAAAM8AAAAYmh7xKlPw2OKEqyYGQmZfH5SXnGS-doCmhs_CNPp2cmIz2jPqMQZP3hgvCmKdtyHuvgGzg8qllkFDu8k5mDUc_u-yrOfCSUzP9S3LhgE7xUn1P-FQxtkHV9vSNsEFRvXk3zQfriVwv2HZLtn44SX-32BY4qF7xJKMznoP8c-ysiRZOduun0Jd9xVq7pQbD42NiNyCT-zJQGWDnIvDkiAbwKx9cwdefdoyKi7TmM60-g49t-1AyuSeQ3cg5wVztlAgK6UP0L7k_GMf7yiSINe8
+> GData-Version: 2
+> Connection: Keep-Alive
+  
+< HTTP/1.1 201 Created
+< Soup-Debug-Timestamp: 1372714755
+< Soup-Debug: SoupMessage 26 (0x8c28d0)
+< X-GData-User-Country: GB
+< Content-Type: application/atom+xml; charset=UTF-8; type=entry
+< Expires: Mon, 01 Jul 2013 21:39:12 GMT
+< Date: Mon, 01 Jul 2013 21:39:12 GMT
+< Cache-control: private, max-age=0, must-revalidate, no-transform
+< Vary: Accept, X-GData-Authorization, GData-Version
+< GData-Version: 2.1
+< ETag: W/"DkABQ347eCp7I2A9WhFRF0w."
+< Location: https://gdata.youtube.com/feeds/api/users/gdatatest/uploads/Enl9pv5Dq6M
+< Content-Location: https://gdata.youtube.com/feeds/api/users/gdatatest/uploads/Enl9pv5Dq6M
+< X-GUploader-UploadID: 
AEnB2Uq_LG-qvKEi1Y3i25fE--fbX-gmX5S605gvEsV53XO081ZS_BSK7zjPBBNJowVGQPYK3DGfo_-Bd0Ii9nVHkd_j8I5koQ
+< Content-Length: 5398
+< Server: HTTP Upload Server Built on Jun 25 2013 11:32:14 (1372185134)
+< 
+< <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' 
xmlns:app='http://www.w3.org/2007/app' xmlns:media='http://search.yahoo.com/mrss/' 
xmlns:gd='http://schemas.google.com/g/2005' xmlns:yt='http://gdata.youtube.com/schemas/2007' 
gd:etag='W/&quot;DkABQ347eCp7I2A9WhFRF0w.&quot;'><id>tag:youtube.com,2008:video:Enl9pv5Dq6M</id><published>2013-07-01T21:39:12.000Z</published><updated>2013-07-01T21:39:12.000Z</updated><app:edited>2013-07-01T21:39:12.000Z</app:edited><app:control><app:draft>yes</app:draft><yt:state
 name='processing'/></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='People' label='People &amp; 
Blogs'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='toast'/><category 
scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='wedding'/><title>Bad Wedding T
 oast</title><link rel='alternate' type='text/html' 
href='https://www.youtube.com/watch?v=Enl9pv5Dq6M&amp;feature=youtube_gdata'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Enl9pv5Dq6M/responses'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.ratings' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Enl9pv5Dq6M/ratings'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.complaints' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Enl9pv5Dq6M/complaints'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Enl9pv5Dq6M/related'/><link 
rel='http://gdata.youtube.com/schemas/2007#video.captionTracks' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/videos/Enl9pv5Dq6M/captions' yt:hasEntries='false'/><link 
 rel='http://gdata.youtube.com/schemas/2007#uploader' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/Hdu7S-LbC8V98jsR_tu6GA'/><link 
rel='http://gdata.youtube.com/schemas/2007#insight.views' type='text/html' 
href='https://insight.youtube.com/video-analytics-partner/gwt/csv-zip?token=ChUKAggEEg8IABILRW5sOXB2NURxNk0&amp;sig=MCwCFA2XHTL7StaDxBIrqm_QH8jqHJ0MAhQYMzlR5bS-FSSBwenD8q35DMS1_w&amp;user_starttime=1371945600000&amp;user_endtime=1372550400000&amp;exp=1372718352614&amp;devKey=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm'/><link
 rel='self' type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/gdatatest/uploads/Enl9pv5Dq6M'/><link rel='edit' 
type='application/atom+xml' 
href='https://gdata.youtube.com/feeds/api/users/gdatatest/uploads/Enl9pv5Dq6M'/><author><name>GDataTest</name><uri>https://gdata.youtube.com/feeds/api/users/GDataTest</uri><yt:userId>Hdu7S-LbC8V98jsR_tu6GA</yt:userId></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='https://gdata.youtube.com/feeds/api/videos/Enl9pv5Dq6M/comments' 
countHint='0'/></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='https://www.youtube.com/v/Enl9pv5Dq6M?version=3&amp;f=user_uploads&amp;d=ARK7_SyB_5iKQvGvwsk-0D4O88HsQjpE1a8d1GxQnGDm&amp;app=youtube_gdata'
 type='application/x-shockwave-flash' medium='video' isDefault='true' expression='
 full' duration='0' yt:format='5'/><media:credit role='uploader' scheme='urn:youtube' 
yt:display='GDataTest'>gdatatest</media:credit><media:description type='plain'>I gave a bad toast at my 
friend's wedding.</media:description><media:keywords>toast, wedding</media:keywords><media:license 
type='text/html' href='http://www.youtube.com/t/terms'>youtube</media:license><media:player 
url='https://www.youtube.com/watch?v=Enl9pv5Dq6M&amp;feature=youtube_gdata_player'/><media:thumbnail 
url='https://i1.ytimg.com/vi/Enl9pv5Dq6M/default.jpg' height='90' width='120' time='00:00:00' 
yt:name='default'/><media:thumbnail url='https://i1.ytimg.com/vi/Enl9pv5Dq6M/mqdefault.jpg' height='180' 
width='320' yt:name='mqdefault'/><media:thumbnail url='https://i1.ytimg.com/vi/Enl9pv5Dq6M/hqdefault.jpg' 
height='360' width='480' yt:name='hqdefault'/><media:thumbnail 
url='https://i1.ytimg.com/vi/Enl9pv5Dq6M/1.jpg' height='90' width='120' time='00:00:00' 
yt:name='start'/><media:thumbnail url='https://i1.yt
 img.com/vi/Enl9pv5Dq6M/2.jpg' height='90' width='120' time='00:00:00' yt:name='middle'/><media:thumbnail 
url='https://i1.ytimg.com/vi/Enl9pv5Dq6M/3.jpg' height='90' width='120' time='00:00:00' 
yt:name='end'/><media:title type='plain'>Bad Wedding Toast</media:title><yt:duration 
seconds='0'/><yt:uploaded>2013-07-01T21:39:12.000Z</yt:uploaded><yt:uploaderId>UCHdu7S-LbC8V98jsR_tu6GA</yt:uploaderId><yt:videoid>Enl9pv5Dq6M</yt:videoid></media:group></entry>
+  
diff --git a/gdata/tests/youtube.c b/gdata/tests/youtube.c
index 33177e1..781556a 100644
--- a/gdata/tests/youtube.c
+++ b/gdata/tests/youtube.c
@@ -25,6 +25,8 @@
 
 #define DEVELOPER_KEY 
"AI39si7Me3Q7zYs6hmkFvpRBD2nrkVjYYsUO5lh_3HdOkGRc9g6Z4nzxZatk_aAo2EsA21k7vrda0OO6oFg2rnhMedZXPyXoEw"
 
+static GDataMockServer *mock_server = NULL;
+
 static void
 test_authentication (void)
 {
@@ -32,6 +34,8 @@ test_authentication (void)
        GDataClientLoginAuthorizer *authorizer;
        GError *error = NULL;
 
+       gdata_mock_server_start_trace (mock_server, "authentication");
+
        /* Create an authorizer */
        authorizer = gdata_client_login_authorizer_new (CLIENT_ID, GDATA_TYPE_YOUTUBE_SERVICE);
 
@@ -51,12 +55,16 @@ test_authentication (void)
                                                             
gdata_youtube_service_get_primary_authorization_domain ()) == TRUE);
 
        g_object_unref (authorizer);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_TEST_FUNCTIONS (authentication, void,
 G_STMT_START {
        GDataClientLoginAuthorizer *authorizer;
 
+       gdata_mock_server_start_trace (mock_server, "authentication-async");
+
        /* Create an authorizer */
        authorizer = gdata_client_login_authorizer_new (CLIENT_ID, GDATA_TYPE_YOUTUBE_SERVICE);
 
@@ -91,6 +99,8 @@ G_STMT_START {
                g_assert (gdata_authorizer_is_authorized_for_domain (GDATA_AUTHORIZER (authorizer),
                                                                     
gdata_youtube_service_get_primary_authorization_domain ()) == FALSE);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -114,6 +124,8 @@ test_query_standard_feed (gconstpointer service)
        GDataFeed *feed;
        GError *error = NULL;
 
+       gdata_mock_server_start_trace (mock_server, "query-standard-feed");
+
        feed = gdata_youtube_service_query_standard_feed (GDATA_YOUTUBE_SERVICE (service), 
GDATA_YOUTUBE_TOP_RATED_FEED, NULL, NULL, NULL, NULL, &error);
        g_assert_no_error (error);
        g_assert (GDATA_IS_FEED (feed));
@@ -122,10 +134,14 @@ test_query_standard_feed (gconstpointer service)
        /* TODO: check entries and feed properties */
 
        g_object_unref (feed);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_TEST_FUNCTIONS (query_standard_feed, void,
 G_STMT_START {
+       gdata_mock_server_start_trace (mock_server, "query-standard-feed-async");
+
        gdata_youtube_service_query_standard_feed_async (GDATA_YOUTUBE_SERVICE (service), 
GDATA_YOUTUBE_TOP_RATED_FEED, NULL, cancellable,
                                                         NULL, NULL, NULL, async_ready_callback, async_data);
 } G_STMT_END,
@@ -142,6 +158,8 @@ G_STMT_START {
        } else {
                g_assert (feed == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -151,6 +169,8 @@ test_query_standard_feed_async_progress_closure (gconstpointer service)
 
        g_assert (service != NULL);
 
+       gdata_mock_server_start_trace (mock_server, "query-standard-feed-async-progress-closure");
+
        data->main_loop = g_main_loop_new (NULL, TRUE);
 
        gdata_youtube_service_query_standard_feed_async (GDATA_YOUTUBE_SERVICE (service), 
GDATA_YOUTUBE_TOP_RATED_FEED, NULL, NULL,
@@ -165,6 +185,8 @@ test_query_standard_feed_async_progress_closure (gconstpointer service)
        g_assert_cmpuint (data->async_ready_notify_count, ==, 1);
 
        g_slice_free (GDataAsyncProgressClosure, data);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static GDataYouTubeVideo *
@@ -243,6 +265,8 @@ test_query_related (gconstpointer service)
        GDataYouTubeVideo *video;
        GError *error = NULL;
 
+       gdata_mock_server_start_trace (mock_server, "query-related");
+
        video = get_video_for_related ();
        feed = gdata_youtube_service_query_related (GDATA_YOUTUBE_SERVICE (service), video, NULL, NULL, NULL, 
NULL, &error);
        g_assert_no_error (error);
@@ -253,12 +277,16 @@ test_query_related (gconstpointer service)
 
        g_object_unref (video);
        g_object_unref (feed);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_TEST_FUNCTIONS (query_related, void,
 G_STMT_START {
        GDataYouTubeVideo *video;
 
+       gdata_mock_server_start_trace (mock_server, "query-related");
+
        video = get_video_for_related ();
        gdata_youtube_service_query_related_async (GDATA_YOUTUBE_SERVICE (service), video, NULL, cancellable, 
NULL,
                                                   NULL, NULL, async_ready_callback, async_data);
@@ -277,6 +305,8 @@ G_STMT_START {
        } else {
                g_assert (feed == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -287,6 +317,8 @@ test_query_related_async_progress_closure (gconstpointer service)
 
        g_assert (service != NULL);
 
+       gdata_mock_server_start_trace (mock_server, "query-related-async-progress-closure");
+
        data->main_loop = g_main_loop_new (NULL, TRUE);
        video = get_video_for_related ();
 
@@ -304,6 +336,8 @@ test_query_related_async_progress_closure (gconstpointer service)
        g_assert_cmpuint (data->async_ready_notify_count, ==, 1);
 
        g_slice_free (GDataAsyncProgressClosure, data);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef struct {
@@ -354,6 +388,8 @@ set_up_upload (UploadData *data, gconstpointer service)
 static void
 tear_down_upload (UploadData *data, gconstpointer service)
 {
+       gdata_mock_server_start_trace (mock_server, "teardown-upload");
+
        /* Delete the uploaded video, if possible */
        if (data->updated_video != NULL) {
                gdata_service_delete_entry (GDATA_SERVICE (service), 
gdata_youtube_service_get_primary_authorization_domain (),
@@ -366,6 +402,8 @@ tear_down_upload (UploadData *data, gconstpointer service)
        g_free (data->slug);
        g_free (data->content_type);
        g_object_unref (data->service);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -377,6 +415,8 @@ test_upload_simple (UploadData *data, gconstpointer service)
        gssize transfer_size;
        GError *error = NULL;
 
+       gdata_mock_server_start_trace (mock_server, "upload-simple");
+
        /* Prepare the upload stream */
        upload_stream = gdata_youtube_service_upload_video (GDATA_YOUTUBE_SERVICE (service), data->video, 
data->slug, data->content_type, NULL,
                                                            &error);
@@ -415,6 +455,8 @@ test_upload_simple (UploadData *data, gconstpointer service)
        g_assert_cmpstr (tags2[0], ==, tags[0]);
        g_assert_cmpstr (tags2[1], ==, tags[1]);
        g_assert_cmpstr (tags2[2], ==, tags[2]);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (upload, UploadData);
@@ -425,6 +467,8 @@ G_STMT_START {
        GFileInputStream *file_stream;
        GError *error = NULL;
 
+       gdata_mock_server_start_trace (mock_server, "upload-async");
+
        /* Prepare the upload stream */
        upload_stream = gdata_youtube_service_upload_video (GDATA_YOUTUBE_SERVICE (service), data->video, 
data->slug,
                                                            data->content_type, cancellable, &error);
@@ -485,6 +529,8 @@ G_STMT_START {
        }
 
        g_clear_error (&upload_error);
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -1336,6 +1382,8 @@ test_query_single (gconstpointer service)
        GDataYouTubeVideo *video;
        GError *error = NULL;
 
+       gdata_mock_server_start_trace (mock_server, "query-single");
+
        video = GDATA_YOUTUBE_VIDEO (gdata_service_query_single_entry (GDATA_SERVICE (service),
                                                                       
gdata_youtube_service_get_primary_authorization_domain (),
                                                                       
"tag:youtube.com,2008:video:_LeQuMpwbW4", NULL,
@@ -1349,10 +1397,14 @@ test_query_single (gconstpointer service)
        g_clear_error (&error);
 
        g_object_unref (video);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_TEST_FUNCTIONS (query_single, void,
 G_STMT_START {
+       gdata_mock_server_start_trace (mock_server, "query-single-async");
+
        gdata_service_query_single_entry_async (GDATA_SERVICE (service), 
gdata_youtube_service_get_primary_authorization_domain (),
                                                "tag:youtube.com,2008:video:_LeQuMpwbW4", NULL, 
GDATA_TYPE_YOUTUBE_VIDEO,
                                                cancellable, async_ready_callback, async_data);
@@ -1371,6 +1423,8 @@ G_STMT_START {
        } else {
                g_assert (video == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 typedef struct {
@@ -1380,12 +1434,16 @@ typedef struct {
 static void
 set_up_comment (CommentData *data, gconstpointer service)
 {
+       gdata_mock_server_start_trace (mock_server, "setup-comment");
+
        /* Get a video known to have comments on it. */
        data->video = GDATA_YOUTUBE_VIDEO (gdata_service_query_single_entry (GDATA_SERVICE (service),
                                                                             
gdata_youtube_service_get_primary_authorization_domain (),
                                                                             
"tag:youtube.com,2008:video:RzR2k8yo4NY", NULL,
                                                                             GDATA_TYPE_YOUTUBE_VIDEO, NULL, 
NULL));
        g_assert (GDATA_IS_YOUTUBE_VIDEO (data->video));
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1428,6 +1486,8 @@ test_comment_query (CommentData *data, gconstpointer service)
        GDataFeed *comments_feed;
        GError *error = NULL;
 
+       gdata_mock_server_start_trace (mock_server, "comment-query");
+
        /* Get the comments feed for the video */
        comments_feed = gdata_commentable_query_comments (GDATA_COMMENTABLE (data->video), GDATA_SERVICE 
(service), NULL, NULL, NULL, NULL, &error);
        g_assert_no_error (error);
@@ -1436,12 +1496,16 @@ test_comment_query (CommentData *data, gconstpointer service)
        assert_comments_feed (comments_feed);
 
        g_object_unref (comments_feed);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (comment, CommentData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (comment_query, CommentData,
 G_STMT_START {
+       gdata_mock_server_start_trace (mock_server, "comment-query-async");
+
        gdata_commentable_query_comments_async (GDATA_COMMENTABLE (data->video), GDATA_SERVICE (service), 
NULL, cancellable, NULL, NULL, NULL,
                                                async_ready_callback, async_data);
 } G_STMT_END,
@@ -1457,6 +1521,8 @@ G_STMT_START {
        } else {
                g_assert (comments_feed == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 /* Test that the progress callbacks from gdata_commentable_query_comments_async() are called correctly.
@@ -1467,6 +1533,8 @@ test_comment_query_async_progress_closure (CommentData *query_data, gconstpointe
 {
        GDataAsyncProgressClosure *data = g_slice_new0 (GDataAsyncProgressClosure);
 
+       gdata_mock_server_start_trace (mock_server, "comment-query-async-progress-closure");
+
        data->main_loop = g_main_loop_new (NULL, TRUE);
 
        gdata_commentable_query_comments_async (GDATA_COMMENTABLE (query_data->video), GDATA_SERVICE 
(service), NULL, NULL,
@@ -1482,6 +1550,8 @@ test_comment_query_async_progress_closure (CommentData *query_data, gconstpointe
        g_assert_cmpuint (data->async_ready_notify_count, ==, 1);
 
        g_slice_free (GDataAsyncProgressClosure, data);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 typedef struct {
@@ -1494,21 +1564,29 @@ set_up_insert_comment (InsertCommentData *data, gconstpointer service)
 {
        set_up_comment ((CommentData*) data, service);
 
+       gdata_mock_server_start_trace (mock_server, "setup-insert-comment");
+
        /* Create a test comment to be inserted. */
        data->comment = gdata_youtube_comment_new (NULL);
        g_assert (GDATA_IS_YOUTUBE_COMMENT (data->comment));
 
        gdata_entry_set_content (GDATA_ENTRY (data->comment), "This is a test comment.");
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
 tear_down_insert_comment (InsertCommentData *data, gconstpointer service)
 {
+       gdata_mock_server_start_trace (mock_server, "teardown-insert-comment");
+
        if (data->comment != NULL) {
                g_object_unref (data->comment);
        }
 
        tear_down_comment ((CommentData*) data, service);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1541,6 +1619,8 @@ test_comment_insert (InsertCommentData *data, gconstpointer service)
        GDataComment *new_comment;
        GError *error = NULL;
 
+       gdata_mock_server_start_trace (mock_server, "comment-insert");
+
        new_comment = gdata_commentable_insert_comment (GDATA_COMMENTABLE (data->parent.video), GDATA_SERVICE 
(service), GDATA_COMMENT (data->comment),
                                                        NULL, &error);
        g_assert_no_error (error);
@@ -1549,12 +1629,16 @@ test_comment_insert (InsertCommentData *data, gconstpointer service)
        assert_comments_equal (new_comment, data->comment);
 
        g_object_unref (new_comment);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_CLOSURE_FUNCTIONS (insert_comment, InsertCommentData);
 
 GDATA_ASYNC_TEST_FUNCTIONS (comment_insert, InsertCommentData,
 G_STMT_START {
+       gdata_mock_server_start_trace (mock_server, "comment-insert-async");
+
        gdata_commentable_insert_comment_async (GDATA_COMMENTABLE (data->parent.video), GDATA_SERVICE 
(service),
                                                GDATA_COMMENT (data->comment), cancellable, 
async_ready_callback, async_data);
 } G_STMT_END,
@@ -1570,6 +1654,8 @@ G_STMT_START {
        } else {
                g_assert (new_comment == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -1578,6 +1664,8 @@ test_comment_delete (InsertCommentData *data, gconstpointer service)
        gboolean success;
        GError *error = NULL;
 
+       gdata_mock_server_start_trace (mock_server, "comment-delete");
+
        /* We attempt to delete a comment which hasn't been inserted here, but that doesn't matter as the 
function should always immediately
         * return an error because deleting YouTube comments isn't allowed. */
        success = gdata_commentable_delete_comment (GDATA_COMMENTABLE (data->parent.video), GDATA_SERVICE 
(service), GDATA_COMMENT (data->comment),
@@ -1585,10 +1673,14 @@ test_comment_delete (InsertCommentData *data, gconstpointer service)
        g_assert_error (error, GDATA_SERVICE_ERROR, GDATA_SERVICE_ERROR_FORBIDDEN);
        g_assert (success == FALSE);
        g_clear_error (&error);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_TEST_FUNCTIONS (comment_delete, InsertCommentData,
 G_STMT_START {
+       gdata_mock_server_start_trace (mock_server, "comment-delete-async");
+
        gdata_commentable_delete_comment_async (GDATA_COMMENTABLE (data->parent.video), GDATA_SERVICE 
(service),
                                                GDATA_COMMENT (data->comment), cancellable, 
async_ready_callback, async_data);
 } G_STMT_END,
@@ -1606,6 +1698,8 @@ G_STMT_START {
                g_clear_error (&error);
                async_data->cancellation_timeout = 13;
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 static void
@@ -1650,6 +1744,8 @@ test_categories (gconstpointer service)
        GError *error = NULL;
        gchar *category_label, *old_locale;
 
+       gdata_mock_server_start_trace (mock_server, "categories");
+
        app_categories = gdata_youtube_service_get_categories (GDATA_YOUTUBE_SERVICE (service), NULL, &error);
        g_assert_no_error (error);
        g_assert (GDATA_IS_APP_CATEGORIES (app_categories));
@@ -1686,10 +1782,14 @@ test_categories (gconstpointer service)
        /* Reset the locale */
        gdata_service_set_locale (GDATA_SERVICE (service), old_locale);
        g_free (old_locale);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 GDATA_ASYNC_TEST_FUNCTIONS (categories, void,
 G_STMT_START {
+       gdata_mock_server_start_trace (mock_server, "categories-async");
+
        gdata_youtube_service_get_categories_async (GDATA_YOUTUBE_SERVICE (service), cancellable, 
async_ready_callback, async_data);
 } G_STMT_END,
 G_STMT_START {
@@ -1709,6 +1809,8 @@ G_STMT_START {
        } else {
                g_assert (app_categories == NULL);
        }
+
+       gdata_mock_server_end_trace (mock_server);
 } G_STMT_END);
 
 typedef struct {
@@ -1722,6 +1824,8 @@ setup_batch (BatchData *data, gconstpointer service)
        GDataEntry *video;
        GError *error = NULL;
 
+       gdata_mock_server_start_trace (mock_server, "setup-batch");
+
        /* We can't insert new videos as they'd just hit the moderation queue and cause tests to fail. 
Instead, we rely on two videos already existing
         * on the server with the given IDs. */
        video = gdata_service_query_single_entry (GDATA_SERVICE (service), 
gdata_youtube_service_get_primary_authorization_domain (),
@@ -1739,6 +1843,8 @@ setup_batch (BatchData *data, gconstpointer service)
        g_assert (GDATA_IS_YOUTUBE_VIDEO (video));
 
        data->new_video2 = video;
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1750,6 +1856,8 @@ test_batch (BatchData *data, gconstpointer service)
        guint op_id, op_id2;
        GError *error = NULL;
 
+       gdata_mock_server_start_trace (mock_server, "batch");
+
        /* Here we hardcode the feed URI, but it should really be extracted from a video feed, as the 
GDATA_LINK_BATCH link.
         * It looks like this feed is read-only, so we can only test querying. */
        operation = gdata_batchable_create_operation (GDATA_BATCHABLE (service), 
gdata_youtube_service_get_primary_authorization_domain (),
@@ -1793,6 +1901,8 @@ test_batch (BatchData *data, gconstpointer service)
 
        g_clear_error (&error);
        g_object_unref (operation);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1813,6 +1923,8 @@ test_batch_async (BatchData *data, gconstpointer service)
        GDataBatchOperation *operation;
        GMainLoop *main_loop;
 
+       gdata_mock_server_start_trace (mock_server, "batch-async");
+
        /* Run an async query operation on the video */
        operation = gdata_batchable_create_operation (GDATA_BATCHABLE (service), 
gdata_youtube_service_get_primary_authorization_domain (),
                                                      "https://gdata.youtube.com/feeds/api/videos/batch";);
@@ -1824,6 +1936,8 @@ test_batch_async (BatchData *data, gconstpointer service)
 
        g_main_loop_run (main_loop);
        g_main_loop_unref (main_loop);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1846,6 +1960,8 @@ test_batch_async_cancellation (BatchData *data, gconstpointer service)
        GCancellable *cancellable;
        GError *error = NULL;
 
+       gdata_mock_server_start_trace (mock_server, "batch-async-cancellation");
+
        /* Run an async query operation on the video */
        operation = gdata_batchable_create_operation (GDATA_BATCHABLE (service), 
gdata_youtube_service_get_primary_authorization_domain (),
                                                      "https://gdata.youtube.com/feeds/api/videos/batch";);
@@ -1865,6 +1981,8 @@ test_batch_async_cancellation (BatchData *data, gconstpointer service)
        g_main_loop_unref (main_loop);
        g_object_unref (cancellable);
        g_object_unref (operation);
+
+       gdata_mock_server_end_trace (mock_server);
 }
 
 static void
@@ -1880,77 +1998,83 @@ main (int argc, char *argv[])
        gint retval;
        GDataAuthorizer *authorizer = NULL;
        GDataService *service = NULL;
+       GFile *trace_directory;
 
        gdata_test_init (argc, argv);
 
-       if (gdata_test_internet () == TRUE) {
-               authorizer = GDATA_AUTHORIZER (gdata_client_login_authorizer_new (CLIENT_ID, 
GDATA_TYPE_YOUTUBE_SERVICE));
-               gdata_client_login_authorizer_authenticate (GDATA_CLIENT_LOGIN_AUTHORIZER (authorizer), 
USERNAME, PASSWORD, NULL, NULL);
-
-               service = GDATA_SERVICE (gdata_youtube_service_new (DEVELOPER_KEY, authorizer));
-
-               g_test_add_func ("/youtube/authentication", test_authentication);
-               g_test_add ("/youtube/authentication/async", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data, test_authentication_async,
-                           gdata_tear_down_async_test_data);
-               g_test_add ("/youtube/authentication/async/cancellation", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data,
-                           test_authentication_async_cancellation, gdata_tear_down_async_test_data);
-
-               g_test_add_data_func ("/youtube/query/standard_feed", service, test_query_standard_feed);
-               g_test_add ("/youtube/query/standard_feed/async", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
-                           test_query_standard_feed_async, gdata_tear_down_async_test_data);
-               g_test_add_data_func ("/youtube/query/standard_feed/async/progress_closure", service, 
test_query_standard_feed_async_progress_closure);
-               g_test_add ("/youtube/query/standard_feed/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
-                           test_query_standard_feed_async_cancellation, gdata_tear_down_async_test_data);
-               g_test_add_data_func ("/youtube/query/related", service, test_query_related);
-               g_test_add ("/youtube/query/related/async", GDataAsyncTestData, service, 
gdata_set_up_async_test_data, test_query_related_async,
-                           gdata_tear_down_async_test_data);
-               g_test_add_data_func ("/youtube/query/related/async/progress_closure", service, 
test_query_related_async_progress_closure);
-               g_test_add ("/youtube/query/related/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
-                           test_query_related_async_cancellation, gdata_tear_down_async_test_data);
-
-               g_test_add ("/youtube/upload/simple", UploadData, service, set_up_upload, test_upload_simple, 
tear_down_upload);
-               g_test_add ("/youtube/upload/async", GDataAsyncTestData, service, set_up_upload_async, 
test_upload_async, tear_down_upload_async);
-               g_test_add ("/youtube/upload/async/cancellation", GDataAsyncTestData, service, 
set_up_upload_async, test_upload_async_cancellation,
-                           tear_down_upload_async);
-
-               g_test_add_data_func ("/youtube/query/single", service, test_query_single);
-               g_test_add ("/youtube/query/single/async", GDataAsyncTestData, service, 
gdata_set_up_async_test_data, test_query_single_async,
-                           gdata_tear_down_async_test_data);
-               g_test_add ("/youtube/query/single/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
-                           test_query_single_async_cancellation, gdata_tear_down_async_test_data);
-
-               g_test_add ("/youtube/comment/query", CommentData, service, set_up_comment, 
test_comment_query, tear_down_comment);
-               g_test_add ("/youtube/comment/query/async", GDataAsyncTestData, service, 
set_up_comment_async, test_comment_query_async,
-                           tear_down_comment_async);
-               g_test_add ("/youtube/comment/query/async/cancellation", GDataAsyncTestData, service, 
set_up_comment_async,
-                           test_comment_query_async_cancellation, tear_down_comment_async);
-               g_test_add ("/youtube/comment/query/async/progress_closure", CommentData, service, 
set_up_comment,
-                           test_comment_query_async_progress_closure, tear_down_comment);
-
-               g_test_add ("/youtube/comment/insert", InsertCommentData, service, set_up_insert_comment, 
test_comment_insert,
-                           tear_down_insert_comment);
-               g_test_add ("/youtube/comment/insert/async", GDataAsyncTestData, service, 
set_up_insert_comment_async, test_comment_insert_async,
-                           tear_down_insert_comment_async);
-               g_test_add ("/youtube/comment/insert/async/cancellation", GDataAsyncTestData, service, 
set_up_insert_comment_async,
-                           test_comment_insert_async_cancellation, tear_down_insert_comment_async);
-
-               g_test_add ("/youtube/comment/delete", InsertCommentData, service, set_up_insert_comment, 
test_comment_delete,
-                           tear_down_insert_comment);
-               g_test_add ("/youtube/comment/delete/async", GDataAsyncTestData, service, 
set_up_insert_comment_async, test_comment_delete_async,
-                           tear_down_insert_comment_async);
-               g_test_add ("/youtube/comment/delete/async/cancellation", GDataAsyncTestData, service, 
set_up_insert_comment_async,
-                           test_comment_delete_async_cancellation, tear_down_insert_comment_async);
-
-               g_test_add_data_func ("/youtube/categories", service, test_categories);
-               g_test_add ("/youtube/categories/async", GDataAsyncTestData, service, 
gdata_set_up_async_test_data, test_categories_async,
-                           gdata_tear_down_async_test_data);
-               g_test_add ("/youtube/categories/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
-                           test_categories_async_cancellation, gdata_tear_down_async_test_data);
-
-               g_test_add ("/youtube/batch", BatchData, service, setup_batch, test_batch, teardown_batch);
-               g_test_add ("/youtube/batch/async", BatchData, service, setup_batch, test_batch_async, 
teardown_batch);
-               g_test_add ("/youtube/batch/async/cancellation", BatchData, service, setup_batch, 
test_batch_async_cancellation, teardown_batch);
-       }
+       mock_server = gdata_test_get_mock_server ();
+       trace_directory = g_file_new_for_path ("traces/youtube");
+       gdata_mock_server_set_trace_directory (mock_server, trace_directory);
+       g_object_unref (trace_directory);
+
+       gdata_mock_server_start_trace (mock_server, "global-authentication");
+       authorizer = GDATA_AUTHORIZER (gdata_client_login_authorizer_new (CLIENT_ID, 
GDATA_TYPE_YOUTUBE_SERVICE));
+       gdata_client_login_authorizer_authenticate (GDATA_CLIENT_LOGIN_AUTHORIZER (authorizer), USERNAME, 
PASSWORD, NULL, NULL);
+       gdata_mock_server_end_trace (mock_server);
+
+       service = GDATA_SERVICE (gdata_youtube_service_new (DEVELOPER_KEY, authorizer));
+
+       g_test_add_func ("/youtube/authentication", test_authentication);
+       g_test_add ("/youtube/authentication/async", GDataAsyncTestData, NULL, gdata_set_up_async_test_data, 
test_authentication_async,
+                   gdata_tear_down_async_test_data);
+       g_test_add ("/youtube/authentication/async/cancellation", GDataAsyncTestData, NULL, 
gdata_set_up_async_test_data,
+                   test_authentication_async_cancellation, gdata_tear_down_async_test_data);
+
+       g_test_add_data_func ("/youtube/query/standard_feed", service, test_query_standard_feed);
+       g_test_add ("/youtube/query/standard_feed/async", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
+                   test_query_standard_feed_async, gdata_tear_down_async_test_data);
+       g_test_add_data_func ("/youtube/query/standard_feed/async/progress_closure", service, 
test_query_standard_feed_async_progress_closure);
+       g_test_add ("/youtube/query/standard_feed/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
+                   test_query_standard_feed_async_cancellation, gdata_tear_down_async_test_data);
+       g_test_add_data_func ("/youtube/query/related", service, test_query_related);
+       g_test_add ("/youtube/query/related/async", GDataAsyncTestData, service, 
gdata_set_up_async_test_data, test_query_related_async,
+                   gdata_tear_down_async_test_data);
+       g_test_add_data_func ("/youtube/query/related/async/progress_closure", service, 
test_query_related_async_progress_closure);
+       g_test_add ("/youtube/query/related/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
+                   test_query_related_async_cancellation, gdata_tear_down_async_test_data);
+
+       g_test_add ("/youtube/upload/simple", UploadData, service, set_up_upload, test_upload_simple, 
tear_down_upload);
+       g_test_add ("/youtube/upload/async", GDataAsyncTestData, service, set_up_upload_async, 
test_upload_async, tear_down_upload_async);
+       g_test_add ("/youtube/upload/async/cancellation", GDataAsyncTestData, service, set_up_upload_async, 
test_upload_async_cancellation,
+                   tear_down_upload_async);
+
+       g_test_add_data_func ("/youtube/query/single", service, test_query_single);
+       g_test_add ("/youtube/query/single/async", GDataAsyncTestData, service, gdata_set_up_async_test_data, 
test_query_single_async,
+                   gdata_tear_down_async_test_data);
+       g_test_add ("/youtube/query/single/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
+                   test_query_single_async_cancellation, gdata_tear_down_async_test_data);
+
+       g_test_add ("/youtube/comment/query", CommentData, service, set_up_comment, test_comment_query, 
tear_down_comment);
+       g_test_add ("/youtube/comment/query/async", GDataAsyncTestData, service, set_up_comment_async, 
test_comment_query_async,
+                   tear_down_comment_async);
+       g_test_add ("/youtube/comment/query/async/cancellation", GDataAsyncTestData, service, 
set_up_comment_async,
+                   test_comment_query_async_cancellation, tear_down_comment_async);
+       g_test_add ("/youtube/comment/query/async/progress_closure", CommentData, service, set_up_comment,
+                   test_comment_query_async_progress_closure, tear_down_comment);
+
+       g_test_add ("/youtube/comment/insert", InsertCommentData, service, set_up_insert_comment, 
test_comment_insert,
+                   tear_down_insert_comment);
+       g_test_add ("/youtube/comment/insert/async", GDataAsyncTestData, service, 
set_up_insert_comment_async, test_comment_insert_async,
+                   tear_down_insert_comment_async);
+       g_test_add ("/youtube/comment/insert/async/cancellation", GDataAsyncTestData, service, 
set_up_insert_comment_async,
+                   test_comment_insert_async_cancellation, tear_down_insert_comment_async);
+
+       g_test_add ("/youtube/comment/delete", InsertCommentData, service, set_up_insert_comment, 
test_comment_delete,
+                   tear_down_insert_comment);
+       g_test_add ("/youtube/comment/delete/async", GDataAsyncTestData, service, 
set_up_insert_comment_async, test_comment_delete_async,
+                   tear_down_insert_comment_async);
+       g_test_add ("/youtube/comment/delete/async/cancellation", GDataAsyncTestData, service, 
set_up_insert_comment_async,
+                   test_comment_delete_async_cancellation, tear_down_insert_comment_async);
+
+       g_test_add_data_func ("/youtube/categories", service, test_categories);
+       g_test_add ("/youtube/categories/async", GDataAsyncTestData, service, gdata_set_up_async_test_data, 
test_categories_async,
+                   gdata_tear_down_async_test_data);
+       g_test_add ("/youtube/categories/async/cancellation", GDataAsyncTestData, service, 
gdata_set_up_async_test_data,
+                   test_categories_async_cancellation, gdata_tear_down_async_test_data);
+
+       g_test_add ("/youtube/batch", BatchData, service, setup_batch, test_batch, teardown_batch);
+       g_test_add ("/youtube/batch/async", BatchData, service, setup_batch, test_batch_async, 
teardown_batch);
+       g_test_add ("/youtube/batch/async/cancellation", BatchData, service, setup_batch, 
test_batch_async_cancellation, teardown_batch);
 
        g_test_add_func ("/youtube/service/properties", test_service_properties);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]