From 30275eb2ae06b0488f46a3c9e7e5aa1f0fdc643a Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Mon, 11 Jan 2016 17:02:10 -0700 Subject: [PATCH 01/32] Changed config, have to add more json manually --- build/apps/resume/index.html | 48 +++++++++++++++ build/apps/todos/index.html | 45 ++++++++++++++ build/apps/todos/todo.js | 8 +++ build/index.html | 52 ++++++++++++++++ build/learning/intro/index.html | 106 ++++++++++++++++++++++++++++++++ build/learning/week1/index.html | 66 ++++++++++++++++++++ firebase.json | 2 +- src/apps/todos/index.html | 19 +++--- src/apps/todos/todo.js | 8 +++ todo.js | 65 ++++++++++++++++++++ 10 files changed, 410 insertions(+), 9 deletions(-) create mode 100644 build/apps/resume/index.html create mode 100644 build/apps/todos/index.html create mode 100644 build/apps/todos/todo.js create mode 100644 build/index.html create mode 100644 build/learning/intro/index.html create mode 100644 build/learning/week1/index.html create mode 100644 src/apps/todos/todo.js create mode 100644 todo.js diff --git a/build/apps/resume/index.html b/build/apps/resume/index.html new file mode 100644 index 00000000..1ebc5297 --- /dev/null +++ b/build/apps/resume/index.html @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + +
+ +

Tom Yeh

+ +

Favorite Programming Languages

+ + +

Favorite Food

+ + +
+ + + + diff --git a/build/apps/todos/index.html b/build/apps/todos/index.html new file mode 100644 index 00000000..a8fc52d7 --- /dev/null +++ b/build/apps/todos/index.html @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + +
+ +

KeySmashers ToDo List

+ + +

Tasks

+ + +
+ + + + diff --git a/build/apps/todos/todo.js b/build/apps/todos/todo.js new file mode 100644 index 00000000..de11986f --- /dev/null +++ b/build/apps/todos/todo.js @@ -0,0 +1,8 @@ +var Firebase = require("firebase"); +var myFirebaseRef = new Firebase("https://todofirebaseteamkeymasters.firebaseio.com/"); +function add() { + myFirebaseRef.set({ + todo: "Hello World!", + } + }) +} diff --git a/build/index.html b/build/index.html new file mode 100644 index 00000000..f2a960b0 --- /dev/null +++ b/build/index.html @@ -0,0 +1,52 @@ + + + + + + + + + + + +
+

Book

+

Everything I’ve learned from UCDD 2 - Spring 2016.

+

Apps

+ +

Learning

+ + +
+ + + + diff --git a/build/learning/intro/index.html b/build/learning/intro/index.html new file mode 100644 index 00000000..35a357c1 --- /dev/null +++ b/build/learning/intro/index.html @@ -0,0 +1,106 @@ + + + + + + + + + + + +
+

Intro

+

Welcome to the 2016 edition of UCDD II!

+

Today is introduction. We will go through the three major learning components +of this class:

+
    +
  1. Team Learning (Due: every Friday @ 11:59pm)
  2. +
  3. Individual Learning (Due: every Sunday @ 11:59pm)
  4. +
  5. Hackathon (starts the following Monday @ 4pm)
  6. +
+

Team Learning

+

Objective

+

Develop a TODO list app.

+

Teaming

+ +

Milestones

+ +

Submission

+ +

Individual Learning

+

Objective

+ +

Submission

+ +

Hackathon

+

At the beginning of each hackathon, a list of new (secret) feature requirements will +be released. Your team will be given some amount of time to add these requirements +to your app.

+

Feature Requirements

+ +

Submission

+ +

Presentation

+

After the time is up, we will have presentations from teams. Sometimes we +have time for every team to present. Sometimes we will select only a few teams.

+ +
+ + + + diff --git a/build/learning/week1/index.html b/build/learning/week1/index.html new file mode 100644 index 00000000..86f8951c --- /dev/null +++ b/build/learning/week1/index.html @@ -0,0 +1,66 @@ + + + + + + + + + + + +
+

Week 1

+

Team Learning

+

Objective

+

Enhance your team’s TODO list app.

+

Requirements

+ +

Individual Learning

+ +

Submission

+ +

Hackathon

+

Details will be announced on Monday 4pm.

+ + +
+ + + + diff --git a/firebase.json b/firebase.json index ad3818e3..e0b50e97 100644 --- a/firebase.json +++ b/firebase.json @@ -1,5 +1,5 @@ { - "firebase": "ucdd2-book", + "firebase": "todofirebaseteamkeymasters", "public": "build", "ignore": [ "firebase.json", diff --git a/src/apps/todos/index.html b/src/apps/todos/index.html index 6e2fd6f6..a8fc52d7 100644 --- a/src/apps/todos/index.html +++ b/src/apps/todos/index.html @@ -8,19 +8,22 @@ + +
-

My Team's ToDos App

+

KeySmashers ToDo List

+

Tasks

-
@@ -28,13 +31,13 @@

Tasks

diff --git a/src/apps/todos/todo.js b/src/apps/todos/todo.js new file mode 100644 index 00000000..de11986f --- /dev/null +++ b/src/apps/todos/todo.js @@ -0,0 +1,8 @@ +var Firebase = require("firebase"); +var myFirebaseRef = new Firebase("https://todofirebaseteamkeymasters.firebaseio.com/"); +function add() { + myFirebaseRef.set({ + todo: "Hello World!", + } + }) +} diff --git a/todo.js b/todo.js new file mode 100644 index 00000000..4d57f8e2 --- /dev/null +++ b/todo.js @@ -0,0 +1,65 @@ +var firebaseRef = new Firebase('https://firetodo.firebaseio.com/'); + +$(function() { + +// Setup the login button; illustrates making a call to your super secret +// enterprise LDAP database mainframe supercomputer using zero-factor auth. +// This example is designed to show the use of server-side signed tokens; not +// the best practices in authenticating users. The examples makes it easy to +// switch between users by simply swapping out the username in the 'login' +// field. +$('#login').on('click', function() { + // XXX: If you want to use your own node server, change the URL! + var url = 'http://misc.firebase.com:22222/?user=' + $('#username').val(); + $.getJSON(url, function(data) { + if (data != null && data.firebaseAuthToken != null) { + firebaseRef.unauth(); + firebaseRef.auth(data.firebaseAuthToken); + // Display the token payload for debug purposes. + var payload = atob(data.firebaseAuthToken.split('.')[1]); + $('#token').text('Logged in: ' + payload); + } + }); +}); + +// Setup the todo lists. +var names = ['alice', 'bob', 'carol' ]; +for (var i = 0; i < names.length; i++) { + var name = names[i]; + + // Register for additions to each user's todo lists. + firebaseRef.child(name).on('child_added', function(name){ + // Remember, we're in a loop so we need a closure to make sure name is + // the right value. + return function(snapshot) { + var todo = snapshot.val(); + var item = $('
  • ').text(todo.todo + ' (' + todo.from + ')'); + item.attr("id", name + '-' + snapshot.name()) + $('#' + name + '-list').append(item); + } + }(name)); + + // We need to handle remove events when Firebase security rules rollbacks + // an addition. + firebaseRef.child(name).on('child_removed', function(name){ + return function(snapshot) { + $('#' + name + '-' + snapshot.name()).remove(); + } + }(name)); + + // Setup additions to the todo lists. We read from the #username field - this + // allows us to spoof the 'from' to test the validation rules for Alice and + // Bob and ensure that the rules we've specified are enforced. + $('#' + name + '-add').on('click', function(name){ + return function() { + var item = { + from: $('#username').val(), + todo: $('#' + name + '-todo').val() + }; + firebaseRef.child(name).push(item); + $('#' + name + '-todo').val(''); + } + }(name)); +} + +}); From 74c19e00b8c15093a7e508318f243f0b24ebdca6 Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Mon, 11 Jan 2016 17:25:29 -0700 Subject: [PATCH 02/32] Added pretty css --- build/apps/todos/index.html | 83 ++++++++++++++++++--------------- build/apps/todos/todo.css | 93 +++++++++++++++++++++++++++++++++++++ src/apps/todos/index.html | 83 ++++++++++++++++++--------------- src/apps/todos/todo.css | 93 +++++++++++++++++++++++++++++++++++++ 4 files changed, 278 insertions(+), 74 deletions(-) create mode 100644 build/apps/todos/todo.css create mode 100644 src/apps/todos/todo.css diff --git a/build/apps/todos/index.html b/build/apps/todos/index.html index a8fc52d7..f42ccce0 100644 --- a/build/apps/todos/index.html +++ b/build/apps/todos/index.html @@ -1,45 +1,54 @@ - - - - - - - - - - - - - - - - - - -
    - -

    KeySmashers ToDo List

    - - -

    Tasks

    -
      -
    - -
    - - + + + + + + + + + +
    + +

    KeySmashers To-Do List

    +
    + + + +
      +
      +
      +
      + Add +
      +

      Tasks

      +
        +
      + +
      + + - + diff --git a/build/apps/todos/todo.css b/build/apps/todos/todo.css new file mode 100644 index 00000000..e33d9294 --- /dev/null +++ b/build/apps/todos/todo.css @@ -0,0 +1,93 @@ + diff --git a/src/apps/todos/index.html b/src/apps/todos/index.html index a8fc52d7..f42ccce0 100644 --- a/src/apps/todos/index.html +++ b/src/apps/todos/index.html @@ -1,45 +1,54 @@ - - - - - - - - - - - - - - - - - - -
      - -

      KeySmashers ToDo List

      - - -

      Tasks

      -
        -
      - -
      - - + + + + + + + + + +
      + +

      KeySmashers To-Do List

      +
      + + + +
        +
        +
        +
        + Add +
        +

        Tasks

        +
          +
        + +
        + + - + diff --git a/src/apps/todos/todo.css b/src/apps/todos/todo.css new file mode 100644 index 00000000..e33d9294 --- /dev/null +++ b/src/apps/todos/todo.css @@ -0,0 +1,93 @@ + From eb4293a29098e44b8428f8721b79205ae4207aaa Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Mon, 11 Jan 2016 18:14:15 -0700 Subject: [PATCH 03/32] Added code up to date --- build/apps/todos/index.html | 58 ++++++++++++++++++-------------- build/apps/todos/todo.css | 59 +++++++++++++++++++++++++++++++-- build/learning/intro/index.html | 8 ++--- src/apps/todos/index.html | 58 ++++++++++++++++++-------------- src/apps/todos/todo.css | 59 +++++++++++++++++++++++++++++++-- src/learning/intro/index.md | 8 ++--- 6 files changed, 190 insertions(+), 60 deletions(-) diff --git a/build/apps/todos/index.html b/build/apps/todos/index.html index f42ccce0..bddc8a74 100644 --- a/build/apps/todos/index.html +++ b/build/apps/todos/index.html @@ -9,36 +9,46 @@ - + + - - - - - - + + + + + + -
        +
        -

        KeySmashers To-Do List

        -
        - - +

        KeySmashers To-Do List

        +
        + + -
          -
          -
          -
          - Add -
          -

          Tasks

          -
            -
          +
            +
            +
            +
            + Add +
            -
            - - + + - - - - - - + + + + + + -
            +
            -

            KeySmashers To-Do List

            -
            - - +

            KeySmashers To-Do List

            +
            + + -
              -
              -
              -
              - Add -
              -

              Tasks

              -
                -
              +
                +
                +
                +
                + Add +
                -
                - - - - -
                - -

                Tom Yeh

                - -

                Favorite Programming Languages

                -
                  -
                • Javascript
                • -
                • Haskell
                • -
                - -

                Favorite Food

                -
                  -
                - -
                - - + + + + +
                + +
                +
                Frederik Löhner
                +
                Frederik.Lohner@colorado.edu
                +
                Github.com/FredLoh
                +
                720-474-2885
                +
                +
                + Education +
                +
                + Test +
                +

                Favorite Programming Languages

                +
                  +
                • Javascript
                • +
                • Haskell
                • +
                + +

                Favorite Food

                +
                  +
                + +
                + + - + diff --git a/build/apps/resume/resume.css b/build/apps/resume/resume.css new file mode 100644 index 00000000..6dc05978 --- /dev/null +++ b/build/apps/resume/resume.css @@ -0,0 +1,16 @@ +#name { + font-size: 32px; + color: #fafafa; +} +.subtext-name { + font-size: 20px; + color: #fafafa; +} +.headers { + font-size: 18px; + color: #fafafa; +} +.sub-headers { +font-size: 16px; + color: #fafafa; +} diff --git a/src/apps/resume/index.html b/src/apps/resume/index.html index 1ebc5297..90b05196 100644 --- a/src/apps/resume/index.html +++ b/src/apps/resume/index.html @@ -1,40 +1,51 @@ - - - - - - - - - - - - - - - - -
                - -

                Tom Yeh

                - -

                Favorite Programming Languages

                -
                  -
                • Javascript
                • -
                • Haskell
                • -
                - -

                Favorite Food

                -
                  -
                - -
                - - + + + +
                +
                +
                Frederik Löhner
                +
                Frederik.Lohner@colorado.edu
                +
                Github.com/FredLoh
                +
                720-474-2885
                +
                +
                + Education +
                +
                + Test +
                +
                + Test +
                +

                Favorite Programming Languages

                +
                  +
                • Javascript
                • +
                • Haskell
                • +
                + +

                Favorite Food

                +
                  +
                + +
                + + - + diff --git a/src/apps/resume/resume.css b/src/apps/resume/resume.css new file mode 100644 index 00000000..6dc05978 --- /dev/null +++ b/src/apps/resume/resume.css @@ -0,0 +1,16 @@ +#name { + font-size: 32px; + color: #fafafa; +} +.subtext-name { + font-size: 20px; + color: #fafafa; +} +.headers { + font-size: 18px; + color: #fafafa; +} +.sub-headers { +font-size: 16px; + color: #fafafa; +} From ce0acc0e51eaed86cfe025d545c6a3fcb006d099 Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Thu, 14 Jan 2016 12:05:53 -0700 Subject: [PATCH 05/32] Added dynamic elements from firebase, 3 new tags --- build/apps/resume/img/buffs.png | Bin 0 -> 53705 bytes .../img/iPhone_6s_Plus_3x_buffalo_540x540.png | Bin 0 -> 53705 bytes build/apps/resume/index.html | 10 ++- build/apps/resume/resume.css | 8 +++ build/apps/todos/index.html | 68 +++++++++--------- build/apps/todos/todo.css | 8 +++ src/apps/resume/img/buffs.png | Bin 0 -> 53705 bytes src/apps/resume/index.html | 5 +- src/apps/resume/resume.css | 8 +++ src/apps/todos/index.html | 68 +++++++++--------- src/apps/todos/todo.css | 8 +++ 11 files changed, 111 insertions(+), 72 deletions(-) create mode 100644 build/apps/resume/img/buffs.png create mode 100644 build/apps/resume/img/iPhone_6s_Plus_3x_buffalo_540x540.png create mode 100644 src/apps/resume/img/buffs.png diff --git a/build/apps/resume/img/buffs.png b/build/apps/resume/img/buffs.png new file mode 100644 index 0000000000000000000000000000000000000000..4b27b55b0d6742811dd0440dd03cb26566015488 GIT binary patch literal 53705 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 literal 0 HcmV?d00001 diff --git a/build/apps/resume/img/iPhone_6s_Plus_3x_buffalo_540x540.png b/build/apps/resume/img/iPhone_6s_Plus_3x_buffalo_540x540.png new file mode 100644 index 0000000000000000000000000000000000000000..4b27b55b0d6742811dd0440dd03cb26566015488 GIT binary patch literal 53705 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 literal 0 HcmV?d00001 diff --git a/build/apps/resume/index.html b/build/apps/resume/index.html index db914a4c..2e04acde 100644 --- a/build/apps/resume/index.html +++ b/build/apps/resume/index.html @@ -14,17 +14,21 @@ -
                -
                Frederik Löhner
                Frederik.Lohner@colorado.edu
                Github.com/FredLoh
                720-474-2885
                -
                +
                Education +

                + University of Colorado at Boulder - Major: Computer Science, Minor: Economics (Expected August 2016)

                +

                St. Albans School (Washington, D.C.) – High School Diploma (June 2012))

                +
                +
                + Test
                Test diff --git a/build/apps/resume/resume.css b/build/apps/resume/resume.css index 6dc05978..b898c7c3 100644 --- a/build/apps/resume/resume.css +++ b/build/apps/resume/resume.css @@ -14,3 +14,11 @@ font-size: 16px; color: #fafafa; } +.sub-header { + text-indent: 15px; + color: #fff; +} + +html { + font-family: GillSans, Calibri, Trebuchet, sans-serif; +} diff --git a/build/apps/todos/index.html b/build/apps/todos/index.html index bddc8a74..b4bd20f0 100644 --- a/build/apps/todos/index.html +++ b/build/apps/todos/index.html @@ -13,50 +13,50 @@ function getFocus() { document.getElementById("new-todo").focus(); } - - + + - - - - - - - -
                - -

                KeySmashers To-Do List

                -
                - - + + + + + + -
                  -
                  -
                  -
                  - Add -
                  +
                  +

                  KeySmashers To-Do List

                  +
                  + + +
                    +
                    -

                     

                    - -
                    -

                    Tasks

                    -
                      -
                    +
                    + Add
                    - diff --git a/build/apps/todos/todo.css b/build/apps/todos/todo.css index 8bc25019..c2b18739 100644 --- a/build/apps/todos/todo.css +++ b/build/apps/todos/todo.css @@ -108,6 +108,14 @@ html { top: 12px; } +.collection { + color: #333; +} + +. collection-item { + background: red; +} + .todo-remove-icon { /* Delete icon courtesy of The Noun Project: diff --git a/src/apps/resume/img/buffs.png b/src/apps/resume/img/buffs.png new file mode 100644 index 0000000000000000000000000000000000000000..4b27b55b0d6742811dd0440dd03cb26566015488 GIT binary patch literal 53705 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 literal 0 HcmV?d00001 diff --git a/src/apps/resume/index.html b/src/apps/resume/index.html index 90b05196..2e04acde 100644 --- a/src/apps/resume/index.html +++ b/src/apps/resume/index.html @@ -21,8 +21,11 @@
                    Github.com/FredLoh
                    720-474-2885
                    -
                    +
                    Education +

                    + University of Colorado at Boulder - Major: Computer Science, Minor: Economics (Expected August 2016)

                    +

                    St. Albans School (Washington, D.C.) – High School Diploma (June 2012))

                    Test diff --git a/src/apps/resume/resume.css b/src/apps/resume/resume.css index 6dc05978..b898c7c3 100644 --- a/src/apps/resume/resume.css +++ b/src/apps/resume/resume.css @@ -14,3 +14,11 @@ font-size: 16px; color: #fafafa; } +.sub-header { + text-indent: 15px; + color: #fff; +} + +html { + font-family: GillSans, Calibri, Trebuchet, sans-serif; +} diff --git a/src/apps/todos/index.html b/src/apps/todos/index.html index bddc8a74..b4bd20f0 100644 --- a/src/apps/todos/index.html +++ b/src/apps/todos/index.html @@ -13,50 +13,50 @@ function getFocus() { document.getElementById("new-todo").focus(); } - - + + - - - - - - - -
                    - -

                    KeySmashers To-Do List

                    -
                    - - + + + + + + -
                      -
                      -
                      -
                      - Add -
                      +
                      +

                      KeySmashers To-Do List

                      +
                      + + +
                        +
                        -

                         

                        - -
                        -

                        Tasks

                        -
                          -
                        +
                        + Add
                        - diff --git a/src/apps/todos/todo.css b/src/apps/todos/todo.css index 8bc25019..c2b18739 100644 --- a/src/apps/todos/todo.css +++ b/src/apps/todos/todo.css @@ -108,6 +108,14 @@ html { top: 12px; } +.collection { + color: #333; +} + +. collection-item { + background: red; +} + .todo-remove-icon { /* Delete icon courtesy of The Noun Project: From 992d64d7fbbb1ed83f667e180d91ef65bf0f82bc Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Thu, 14 Jan 2016 12:21:36 -0700 Subject: [PATCH 06/32] Minor changes to list --- build/apps/todos/index.html | 6 ++---- build/apps/todos/todo.css | 11 ++++++----- src/apps/todos/index.html | 6 ++---- src/apps/todos/todo.css | 11 ++++++----- 4 files changed, 16 insertions(+), 18 deletions(-) diff --git a/build/apps/todos/index.html b/build/apps/todos/index.html index b4bd20f0..ca094634 100644 --- a/build/apps/todos/index.html +++ b/build/apps/todos/index.html @@ -43,20 +43,18 @@

                        KeySmashers To-Do List

                         

                        Tasks

                        -
                          +
                        diff --git a/build/apps/todos/todo.css b/build/apps/todos/todo.css index c2b18739..e5fc91c0 100644 --- a/build/apps/todos/todo.css +++ b/build/apps/todos/todo.css @@ -108,12 +108,13 @@ html { top: 12px; } -.collection { - color: #333; -} -. collection-item { - background: red; +.task-entry { + background: white; +} +.task-entry-details { + margin-left: 20px; + background: white; } .todo-remove-icon { diff --git a/src/apps/todos/index.html b/src/apps/todos/index.html index b4bd20f0..ca094634 100644 --- a/src/apps/todos/index.html +++ b/src/apps/todos/index.html @@ -43,20 +43,18 @@

                        KeySmashers To-Do List

                         

                        Tasks

                        -
                          +
                        diff --git a/src/apps/todos/todo.css b/src/apps/todos/todo.css index c2b18739..e5fc91c0 100644 --- a/src/apps/todos/todo.css +++ b/src/apps/todos/todo.css @@ -108,12 +108,13 @@ html { top: 12px; } -.collection { - color: #333; -} -. collection-item { - background: red; +.task-entry { + background: white; +} +.task-entry-details { + margin-left: 20px; + background: white; } .todo-remove-icon { From 6bca4d81f1196555518db9c8dcfe0e91557c9934 Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Thu, 14 Jan 2016 17:17:46 -0700 Subject: [PATCH 07/32] For daniel to get access --- build/apps/todos/index.html | 2 +- build/apps/todos/todo.css | 22 ++++++++++++---------- src/apps/todos/index.html | 2 +- src/apps/todos/todo.css | 22 ++++++++++++---------- 4 files changed, 26 insertions(+), 22 deletions(-) diff --git a/build/apps/todos/index.html b/build/apps/todos/index.html index ca094634..70248129 100644 --- a/build/apps/todos/index.html +++ b/build/apps/todos/index.html @@ -54,7 +54,7 @@

                        Tasks

                        ref.child('bio/tasks').once('value', function(snapshot){ var tasks = snapshot.val() tasks.forEach(function(tasks){ - $('#tasks').append('
                      • ' + tasks.name + ':' + '
                      • ' + tasks.deadline + '
                      • ' + '
                      • ' + tasks.priority + '
                      • ' + '
                      • ' + tasks.type + '
                      • ' + '' + '

                         ' + tasks.name + ':' + '

                      • ' + 'Date: ' + tasks.deadline + '
                      • ' + '
                      • ' + 'Priority: ' + tasks.priority + '
                      • ' + '
                      • ' + 'Type: ' + tasks.type + '
                      • ' + '' + '

                          diff --git a/build/apps/todos/todo.css b/build/apps/todos/todo.css index e5fc91c0..5bbf803a 100644 --- a/build/apps/todos/todo.css +++ b/build/apps/todos/todo.css @@ -4,18 +4,19 @@ text-align: center; } -html { - /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e5e7eb+0,d3d6d9+44,d3d6d9+92 */ - background: rgb(229,231,235); /* Old browsers */ - background: -moz-linear-gradient(top, rgba(229,231,235,1) 0%, rgba(211,214,217,1) 44%, rgba(211,214,217,1) 92%); /* FF3.6-15 */ - background: -webkit-linear-gradient(top, rgba(229,231,235,1) 0%,rgba(211,214,217,1) 44%,rgba(211,214,217,1) 92%); /* Chrome10-25,Safari5.1-6 */ - background: linear-gradient(to bottom, rgba(229,231,235,1) 0%,rgba(211,214,217,1) 44%,rgba(211,214,217,1) 92%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e7eb', endColorstr='#d3d6d9',GradientType=0 ); /* IE6-9 */ +/*html { + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e5e7eb+0,d3d6d9+44,d3d6d9+92 + background: rgb(229,231,235); + background: -moz-linear-gradient(top, rgba(229,231,235,1) 0%, rgba(211,214,217,1) 44%, rgba(211,214,217,1) 92%); + background: -webkit-linear-gradient(top, rgba(229,231,235,1) 0%,rgba(211,214,217,1) 44%,rgba(211,214,217,1) 92%); + background: linear-gradient(to bottom, rgba(229,231,235,1) 0%,rgba(211,214,217,1) 44%,rgba(211,214,217,1) 92%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e7eb', endColorstr='#d3d6d9',GradientType=0 ); position: absolute; height: 100%; width: 100%; overflow: scroll; } +*/ #background { background: red; /* For browsers that do not support gradients */ background: -webkit-linear-gradient(red, yellow, green); /* For Safari 5.1 to 6.0 */ @@ -110,11 +111,12 @@ html { .task-entry { - background: white; + /*background: white;*/ + font-size: 24px; } .task-entry-details { - margin-left: 20px; - background: white; + margin-left: 30px; + /*background: white;*/ } .todo-remove-icon { diff --git a/src/apps/todos/index.html b/src/apps/todos/index.html index ca094634..70248129 100644 --- a/src/apps/todos/index.html +++ b/src/apps/todos/index.html @@ -54,7 +54,7 @@

                        Tasks

                        ref.child('bio/tasks').once('value', function(snapshot){ var tasks = snapshot.val() tasks.forEach(function(tasks){ - $('#tasks').append('
                      • ' + tasks.name + ':' + '
                      • ' + tasks.deadline + '
                      • ' + '
                      • ' + tasks.priority + '
                      • ' + '
                      • ' + tasks.type + '
                      • ' + '' + '

                         ' + tasks.name + ':' + '

                      • ' + 'Date: ' + tasks.deadline + '
                      • ' + '
                      • ' + 'Priority: ' + tasks.priority + '
                      • ' + '
                      • ' + 'Type: ' + tasks.type + '
                      • ' + '' + '

                          diff --git a/src/apps/todos/todo.css b/src/apps/todos/todo.css index e5fc91c0..5bbf803a 100644 --- a/src/apps/todos/todo.css +++ b/src/apps/todos/todo.css @@ -4,18 +4,19 @@ text-align: center; } -html { - /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e5e7eb+0,d3d6d9+44,d3d6d9+92 */ - background: rgb(229,231,235); /* Old browsers */ - background: -moz-linear-gradient(top, rgba(229,231,235,1) 0%, rgba(211,214,217,1) 44%, rgba(211,214,217,1) 92%); /* FF3.6-15 */ - background: -webkit-linear-gradient(top, rgba(229,231,235,1) 0%,rgba(211,214,217,1) 44%,rgba(211,214,217,1) 92%); /* Chrome10-25,Safari5.1-6 */ - background: linear-gradient(to bottom, rgba(229,231,235,1) 0%,rgba(211,214,217,1) 44%,rgba(211,214,217,1) 92%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e7eb', endColorstr='#d3d6d9',GradientType=0 ); /* IE6-9 */ +/*html { + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e5e7eb+0,d3d6d9+44,d3d6d9+92 + background: rgb(229,231,235); + background: -moz-linear-gradient(top, rgba(229,231,235,1) 0%, rgba(211,214,217,1) 44%, rgba(211,214,217,1) 92%); + background: -webkit-linear-gradient(top, rgba(229,231,235,1) 0%,rgba(211,214,217,1) 44%,rgba(211,214,217,1) 92%); + background: linear-gradient(to bottom, rgba(229,231,235,1) 0%,rgba(211,214,217,1) 44%,rgba(211,214,217,1) 92%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e7eb', endColorstr='#d3d6d9',GradientType=0 ); position: absolute; height: 100%; width: 100%; overflow: scroll; } +*/ #background { background: red; /* For browsers that do not support gradients */ background: -webkit-linear-gradient(red, yellow, green); /* For Safari 5.1 to 6.0 */ @@ -110,11 +111,12 @@ html { .task-entry { - background: white; + /*background: white;*/ + font-size: 24px; } .task-entry-details { - margin-left: 20px; - background: white; + margin-left: 30px; + /*background: white;*/ } .todo-remove-icon { From 6334bd5d49287695f05cb9f5d6fed4b7ced19111 Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Sun, 17 Jan 2016 12:24:09 -0500 Subject: [PATCH 08/32] Finished resume --- .../img/iPhone_6s_Plus_3x_buffalo_540x540.png | Bin 53705 -> 0 bytes build/apps/resume/index.html | 59 ++++++++++-------- build/apps/resume/resume.css | 23 +++++++ build/apps/resume/resume.js | 0 build/learning/week1/index.html | 10 +-- src/apps/resume/index.html | 59 ++++++++++-------- src/apps/resume/resume.css | 23 +++++++ src/apps/resume/resume.js | 0 src/learning/week1/index.md | 10 +-- 9 files changed, 120 insertions(+), 64 deletions(-) delete mode 100644 build/apps/resume/img/iPhone_6s_Plus_3x_buffalo_540x540.png create mode 100644 build/apps/resume/resume.js create mode 100644 src/apps/resume/resume.js diff --git a/build/apps/resume/img/iPhone_6s_Plus_3x_buffalo_540x540.png b/build/apps/resume/img/iPhone_6s_Plus_3x_buffalo_540x540.png deleted file mode 100644 index 4b27b55b0d6742811dd0440dd03cb26566015488..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 53705 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 diff --git a/build/apps/resume/index.html b/build/apps/resume/index.html index 2e04acde..bac2111f 100644 --- a/build/apps/resume/index.html +++ b/build/apps/resume/index.html @@ -10,6 +10,7 @@ + @@ -21,40 +22,44 @@

                        Github.com/FredLoh
                        720-474-2885
                        -
                        - Education -

                        - University of Colorado at Boulder - Major: Computer Science, Minor: Economics (Expected August 2016)

                        -

                        St. Albans School (Washington, D.C.) – High School Diploma (June 2012))

                        +
                        +

                        Education

                        +
                          -
                          - Test +
                          +
                          +

                          Experience

                          +
                            +
                            -
                            - Test +
                            +
                            +

                            Projects

                            +
                              +
                              -

                              Favorite Programming Languages

                              -
                                -
                              • Javascript
                              • -
                              • Haskell
                              • -
                              - -

                              Favorite Food

                              -
                                -
                              -
                              diff --git a/build/apps/resume/resume.css b/build/apps/resume/resume.css index b898c7c3..5c20f25b 100644 --- a/build/apps/resume/resume.css +++ b/build/apps/resume/resume.css @@ -19,6 +19,29 @@ font-size: 16px; color: #fff; } +.edu-entry { + font-size: 16px; +} + +.exp-entry { + /*background: white;*/ + font-size: 16px; + font-weight: bold; +} +.exp-description { + text-indent: 12px; + color: #fff; +} + +.pro-entry { + /*background: white;*/ + font-size: 16px; +} +.pro-description { + text-indent: 12px; + color: #fff; +} + html { font-family: GillSans, Calibri, Trebuchet, sans-serif; } diff --git a/build/apps/resume/resume.js b/build/apps/resume/resume.js new file mode 100644 index 00000000..e69de29b diff --git a/build/learning/week1/index.html b/build/learning/week1/index.html index 86f8951c..0d2c364e 100644 --- a/build/learning/week1/index.html +++ b/build/learning/week1/index.html @@ -38,14 +38,14 @@

                              Objective

                              Enhance your team’s TODO list app.

                              Requirements

                                -
                              • [ ] Three additional fields need to be added to each task object: priority, type, and deadline.
                              • -
                              • [ ] Use the CSS, Components, and JavaScript provided by materializecss to make the app pretty.
                              • -
                              • [ ] The Firebase database must be populated with at least 10 tasks for a reasonable demo.
                              • +
                              • [x] Three additional fields need to be added to each task object: priority, type, and deadline.
                              • +
                              • [x] Use the CSS, Components, and JavaScript provided by materializecss to make the app pretty.
                              • +
                              • [x] The Firebase database must be populated with at least 10 tasks for a reasonable demo.

                              Individual Learning

                                -
                              • [ ] Add more data to enrich your personal resume app. Data must include typical items that go on your resume.
                              • -
                              • [ ] The data must be pulled from Firebase in realtime, rather than hardcoded.
                              • +
                              • [x] Add more data to enrich your personal resume app. Data must include typical items that go on your resume.
                              • +
                              • [x] The data must be pulled from Firebase in realtime, rather than hardcoded.

                              Submission

                                diff --git a/src/apps/resume/index.html b/src/apps/resume/index.html index 2e04acde..bac2111f 100644 --- a/src/apps/resume/index.html +++ b/src/apps/resume/index.html @@ -10,6 +10,7 @@ + @@ -21,40 +22,44 @@
                                Github.com/FredLoh
                                720-474-2885
                              -
                              - Education -

                              - University of Colorado at Boulder - Major: Computer Science, Minor: Economics (Expected August 2016)

                              -

                              St. Albans School (Washington, D.C.) – High School Diploma (June 2012))

                              +
                              +

                              Education

                              +
                                -
                                - Test +
                                +
                                +

                                Experience

                                +
                                  +
                                  -
                                  - Test +
                                  +
                                  +

                                  Projects

                                  +
                                    +
                                    -

                                    Favorite Programming Languages

                                    -
                                      -
                                    • Javascript
                                    • -
                                    • Haskell
                                    • -
                                    - -

                                    Favorite Food

                                    -
                                      -
                                    -
                                    diff --git a/src/apps/resume/resume.css b/src/apps/resume/resume.css index b898c7c3..5c20f25b 100644 --- a/src/apps/resume/resume.css +++ b/src/apps/resume/resume.css @@ -19,6 +19,29 @@ font-size: 16px; color: #fff; } +.edu-entry { + font-size: 16px; +} + +.exp-entry { + /*background: white;*/ + font-size: 16px; + font-weight: bold; +} +.exp-description { + text-indent: 12px; + color: #fff; +} + +.pro-entry { + /*background: white;*/ + font-size: 16px; +} +.pro-description { + text-indent: 12px; + color: #fff; +} + html { font-family: GillSans, Calibri, Trebuchet, sans-serif; } diff --git a/src/apps/resume/resume.js b/src/apps/resume/resume.js new file mode 100644 index 00000000..e69de29b diff --git a/src/learning/week1/index.md b/src/learning/week1/index.md index cd0d482d..d4eabb5a 100644 --- a/src/learning/week1/index.md +++ b/src/learning/week1/index.md @@ -12,14 +12,14 @@ Enhance your team's TODO list app. ### Requirements -* [ ] Three additional fields need to be added to each task object: priority, type, and deadline. -* [ ] Use the CSS, Components, and JavaScript provided by [materializecss](http://materializecss.com/) to make the app pretty. -* [ ] The Firebase database must be populated with at least 10 tasks for a reasonable demo. +* [x] Three additional fields need to be added to each task object: priority, type, and deadline. +* [x] Use the CSS, Components, and JavaScript provided by [materializecss](http://materializecss.com/) to make the app pretty. +* [x] The Firebase database must be populated with at least 10 tasks for a reasonable demo. ## Individual Learning -* [ ] Add more data to enrich your personal resume app. Data must include typical items that go on your resume. -* [ ] The data must be pulled from Firebase in realtime, rather than hardcoded. +* [x] Add more data to enrich your personal resume app. Data must include typical items that go on your resume. +* [x] The data must be pulled from Firebase in realtime, rather than hardcoded. ### Submission From c4201848d2a96cbdf985b447d628a2ececb24f87 Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Tue, 19 Jan 2016 11:44:56 -0700 Subject: [PATCH 09/32] Added three different indexes, changed JSON structure to firebase, deployed to firebase --- build/apps/resume/subscribe.html | 58 +++++++++++++++++++++ build/apps/todos/high.html | 67 ++++++++++++++++++++++++ build/apps/todos/inbox.html | 85 ++++++++++++++++++++++++++++++ build/apps/todos/index.html | 21 +++++++- build/apps/todos/low.html | 67 ++++++++++++++++++++++++ build/apps/todos/medium.html | 67 ++++++++++++++++++++++++ build/apps/todos/todo.css | 36 ++++++++----- build/hackathons/01-18/index.html | 81 ++++++++++++++++++++++++++++ build/index.html | 5 ++ build/learning/week2/index.html | 87 +++++++++++++++++++++++++++++++ src/apps/todos/high.html | 68 +++++++++++++++++++++++- src/apps/todos/index.html | 21 +++++++- src/apps/todos/low.html | 68 +++++++++++++++++++++++- src/apps/todos/medium.html | 68 +++++++++++++++++++++++- src/apps/todos/todo.css | 36 ++++++++----- src/hackathons/01-18/index.md | 2 +- 16 files changed, 803 insertions(+), 34 deletions(-) create mode 100644 build/apps/resume/subscribe.html create mode 100644 build/apps/todos/high.html create mode 100644 build/apps/todos/inbox.html create mode 100644 build/apps/todos/low.html create mode 100644 build/apps/todos/medium.html create mode 100644 build/hackathons/01-18/index.html create mode 100644 build/learning/week2/index.html diff --git a/build/apps/resume/subscribe.html b/build/apps/resume/subscribe.html new file mode 100644 index 00000000..fadeadce --- /dev/null +++ b/build/apps/resume/subscribe.html @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + +
                                    + +

                                    Subscribe

                                    + +
                                    +
                                    + + +
                                    +
                                    + +
                                    +
                                    + Submit +
                                    +
                                    + +
                                    +

                                    Current Subscribers

                                    +
                                      +
                                    +
                                    +
                                    + + + + diff --git a/build/apps/todos/high.html b/build/apps/todos/high.html new file mode 100644 index 00000000..23d318f8 --- /dev/null +++ b/build/apps/todos/high.html @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + +
                                    + +

                                    KeySmashers To-Do List

                                    +
                                    + + + +
                                      +
                                      +
                                      +
                                      + Add +
                                      + + +
                                      +

                                       

                                      +
                                      +

                                      Tasks

                                      +
                                        +
                                      +
                                      + + + + diff --git a/build/apps/todos/inbox.html b/build/apps/todos/inbox.html new file mode 100644 index 00000000..e444c4ab --- /dev/null +++ b/build/apps/todos/inbox.html @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + +
                                      + +

                                      Adding a Task

                                      + +
                                      +
                                      + + +
                                      +
                                      + +
                                      +
                                      + + +
                                      +
                                      + + + +
                                      +
                                      + Submit +
                                      +
                                      +
                                      + + + + diff --git a/build/apps/todos/index.html b/build/apps/todos/index.html index 70248129..3ef23e5d 100644 --- a/build/apps/todos/index.html +++ b/build/apps/todos/index.html @@ -24,7 +24,12 @@
                                      - +

                                      KeySmashers To-Do List

                                      @@ -51,7 +56,19 @@

                                      Tasks

                                      // create a firebase reference to the root var ref = new Firebase('https://todofirebaseteamkeymasters.firebaseio.com/') // read data from the location bio/tasks, only once - ref.child('bio/tasks').once('value', function(snapshot){ + ref.child('todo-list/tasks/high').once('value', function(snapshot){ + var tasks = snapshot.val() + tasks.forEach(function(tasks){ + $('#tasks').append('
                                    • ' + tasks.name + ':' + '
                                    • ' + 'Date: ' + tasks.deadline + '
                                    • ' + '
                                    • ' + 'Priority: ' + tasks.priority + '
                                    • ' + '
                                    • ' + 'Type: ' + tasks.type + '
                                    • ' + '' + '

                                       ' + tasks.name + ':' + '

                                    • ' + 'Date: ' + tasks.deadline + '
                                    • ' + '
                                    • ' + 'Priority: ' + tasks.priority + '
                                    • ' + '
                                    • ' + 'Type: ' + tasks.type + '
                                    • ' + '' + '

                                       ' + tasks.name + ':' + '

                                    • ' + 'Date: ' + tasks.deadline + '
                                    • ' + '
                                    • ' + 'Priority: ' + tasks.priority + '
                                    • ' + '
                                    • ' + 'Type: ' + tasks.type + '
                                    • ' + '' + '

                                        + + + + + + + + + + + + + + + + + + + + +

                                      + +

                                      KeySmashers To-Do List

                                      +
                                      + + + +
                                        +
                                        +
                                        +
                                        + Add +
                                        + + +
                                        +

                                         

                                        +
                                        +

                                        Tasks

                                        +
                                          +
                                        +
                                        + + + + diff --git a/build/apps/todos/medium.html b/build/apps/todos/medium.html new file mode 100644 index 00000000..eff0fa3e --- /dev/null +++ b/build/apps/todos/medium.html @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + +
                                        + +

                                        KeySmashers To-Do List

                                        +
                                        + + + +
                                          +
                                          +
                                          +
                                          + Add +
                                          + + +
                                          +

                                           

                                          +
                                          +

                                          Tasks

                                          +
                                            +
                                          +
                                          + + + + diff --git a/build/apps/todos/todo.css b/build/apps/todos/todo.css index 5bbf803a..4caefbfc 100644 --- a/build/apps/todos/todo.css +++ b/build/apps/todos/todo.css @@ -3,20 +3,30 @@ margin: 1em; text-align: center; } +.menu-ul{ + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden; + background-color: #333; +} -/*html { - /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e5e7eb+0,d3d6d9+44,d3d6d9+92 - background: rgb(229,231,235); - background: -moz-linear-gradient(top, rgba(229,231,235,1) 0%, rgba(211,214,217,1) 44%, rgba(211,214,217,1) 92%); - background: -webkit-linear-gradient(top, rgba(229,231,235,1) 0%,rgba(211,214,217,1) 44%,rgba(211,214,217,1) 92%); - background: linear-gradient(to bottom, rgba(229,231,235,1) 0%,rgba(211,214,217,1) 44%,rgba(211,214,217,1) 92%); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e7eb', endColorstr='#d3d6d9',GradientType=0 ); - position: absolute; - height: 100%; - width: 100%; - overflow: scroll; -} -*/ +.menu { + float: left; +} + +li a { + display: block; + color: white; + text-align: center; + padding: 14px 16px; + text-decoration: none; +} + +/* Change the link color to #111 (black) on hover */ +li a:hover { + background-color: #111; +} #background { background: red; /* For browsers that do not support gradients */ background: -webkit-linear-gradient(red, yellow, green); /* For Safari 5.1 to 6.0 */ diff --git a/build/hackathons/01-18/index.html b/build/hackathons/01-18/index.html new file mode 100644 index 00000000..6ee9cceb --- /dev/null +++ b/build/hackathons/01-18/index.html @@ -0,0 +1,81 @@ + + + + + + + + + + + +
                                          +

                                          Hackathon: ToDos v2

                                          +

                                          Date: 01-18-2016

                                          +

                                          Objective

                                          +

                                          Your clients liked the initial version of the ToDos app you built. They came +back with a list of new requirements. Build them!

                                          +

                                          Due

                                          +

                                          Tuesday @ 11:59pm, 1/19/2016

                                          +

                                          Requirements

                                          +
                                            +
                                          • [ ] There should be three separate pages showing tasks with different priority values
                                              +
                                            1. high
                                            2. +
                                            3. medium
                                            4. +
                                            5. low
                                            6. +
                                            +
                                          • +
                                          • [x] The landing page of the app (index.html) should contain +a navigation bar with links to these three pages.
                                          • +
                                          • [ ] When a task’s priority value is modified (e.g., medium –> high), all four pages +(index, low, medium, high) are automatically refreshed.
                                          • +
                                          +

                                          Hints

                                          +

                                          Priority

                                          +

                                          There are at least two approaches to showing tasks with different priorities on separate +pages:

                                          +
                                            +
                                          1. Keep the current Firebase data structure. Each page retrieves the entire list +of tasks and does its own filtering based on the priority value, or
                                          2. +
                                          3. Modify the Firebase data structure so that tasks are organized by three separate +child data locations, such as todos/low, todos/medium, and todos/high.
                                          4. +
                                          +

                                          Make your own decision which approach to take. You are not limited to these two +approaches. When we meet again next Monday. We will discuss the props +and cons of various approaches.

                                          +

                                          Real-time Syncing

                                          +
                                            +
                                          • Use Firebase.on() instead of +Firebase.once()
                                          • +
                                          • Modification of a task’s priority value can be simulated by changing the value in the Firebase +database browser GUI. Then, with all the four pages open in a browser, you should +expect their contents to refresh on their own automatically.
                                          • +
                                          + +
                                          + + + + diff --git a/build/index.html b/build/index.html index f2a960b0..b6d1c60b 100644 --- a/build/index.html +++ b/build/index.html @@ -43,6 +43,11 @@

                                          Learning

                                          +

                                          Hackathons

                                          +
                                          diff --git a/build/learning/week2/index.html b/build/learning/week2/index.html new file mode 100644 index 00000000..1bcdde9d --- /dev/null +++ b/build/learning/week2/index.html @@ -0,0 +1,87 @@ + + + + + + + + + + + +
                                          +

                                          Week 2

                                          +

                                          Team Learning

                                          +

                                          Objective

                                          +

                                          ToDos App v.3

                                          +

                                          Your clients came back with even more requirements. They want to be able +to edit the tasks directly through the app (not through the Firebase dashboard).

                                          +

                                          Due

                                          +

                                          Friday @ 11:59pm, 1/22/2016

                                          +

                                          Requirements

                                          +
                                            +
                                          • [ ] There should be an inbox page (inbox.html) for adding a +new task.
                                          • +
                                          • [ ] Each new task should at least have the following fields:
                                              +
                                            • title
                                            • +
                                            • priority
                                            • +
                                            • assigned (someone’s Github id)
                                            • +
                                            • due (a date)
                                            • +
                                            • completed (always set to false when it’s created)
                                            • +
                                            +
                                          • +
                                          • [ ] In the main page (index.html), each task should have a complete button. When clicked, +the task is marked as complete, and the visual representation of this task should be updated +accordingly.
                                          • +
                                          +

                                          Individual Learning

                                          +

                                          Due

                                          +

                                          Sunday @ 11:59pm, 1/24/2016

                                          +

                                          Requirements

                                          +
                                            +
                                          • [ ] Add a Tasks section the main page of your resume app (index.html). +This section should displays a list of tasks assigned to you. These tasks are pulled from your team’s Firebase.
                                          • +
                                          • [ ] Create a Subscribe page (subscribe.html). +This page should have a simple text box for a visitor (e.g., prospective employer) +to enter an email address to subscribe to a mailing list. Each email address should +be stored to the Firebase. Also, the page should display all the subscribers’ emails.
                                          • +
                                          +

                                          Submission

                                          +
                                            +
                                          • Commit/Push your source code to Github.
                                          • +
                                          • Deploy your resume app to Firebase
                                          • +
                                          +

                                          Hackathon

                                          +

                                          Details will be announced on Monday 4pm.

                                          +
                                            +
                                          • Start: Monday, 1/25 @ 4pm
                                          • +
                                          • Due: Monday, 1/25 @ 6:30pm
                                          • +
                                          + +
                                          + + + + diff --git a/src/apps/todos/high.html b/src/apps/todos/high.html index 1333ed77..23d318f8 100644 --- a/src/apps/todos/high.html +++ b/src/apps/todos/high.html @@ -1 +1,67 @@ -TODO + + + + + + + + + + + + + + + + + + + + + +
                                          + +

                                          KeySmashers To-Do List

                                          +
                                          + + + +
                                            +
                                            +
                                            +
                                            + Add +
                                            + + +
                                            +

                                             

                                            +
                                            +

                                            Tasks

                                            +
                                              +
                                            +
                                            + + + + diff --git a/src/apps/todos/index.html b/src/apps/todos/index.html index 70248129..3ef23e5d 100644 --- a/src/apps/todos/index.html +++ b/src/apps/todos/index.html @@ -24,7 +24,12 @@
                                            - +

                                            KeySmashers To-Do List

                                            @@ -51,7 +56,19 @@

                                            Tasks

                                            // create a firebase reference to the root var ref = new Firebase('https://todofirebaseteamkeymasters.firebaseio.com/') // read data from the location bio/tasks, only once - ref.child('bio/tasks').once('value', function(snapshot){ + ref.child('todo-list/tasks/high').once('value', function(snapshot){ + var tasks = snapshot.val() + tasks.forEach(function(tasks){ + $('#tasks').append('
                                          • ' + tasks.name + ':' + '
                                          • ' + 'Date: ' + tasks.deadline + '
                                          • ' + '
                                          • ' + 'Priority: ' + tasks.priority + '
                                          • ' + '
                                          • ' + 'Type: ' + tasks.type + '
                                          • ' + '' + '

                                             ' + tasks.name + ':' + '

                                          • ' + 'Date: ' + tasks.deadline + '
                                          • ' + '
                                          • ' + 'Priority: ' + tasks.priority + '
                                          • ' + '
                                          • ' + 'Type: ' + tasks.type + '
                                          • ' + '' + '

                                             ' + tasks.name + ':' + '

                                          • ' + 'Date: ' + tasks.deadline + '
                                          • ' + '
                                          • ' + 'Priority: ' + tasks.priority + '
                                          • ' + '
                                          • ' + 'Type: ' + tasks.type + '
                                          • ' + '' + '

                                              + + + + + + + + + + + + + + + + + + + + +

                                            + +

                                            KeySmashers To-Do List

                                            +
                                            + + + +
                                              +
                                              +
                                              +
                                              + Add +
                                              + + +
                                              +

                                               

                                              +
                                              +

                                              Tasks

                                              +
                                                +
                                              +
                                              + + + + diff --git a/src/apps/todos/medium.html b/src/apps/todos/medium.html index 1333ed77..eff0fa3e 100644 --- a/src/apps/todos/medium.html +++ b/src/apps/todos/medium.html @@ -1 +1,67 @@ -TODO + + + + + + + + + + + + + + + + + + + + + +
                                              + +

                                              KeySmashers To-Do List

                                              +
                                              + + + +
                                                +
                                                +
                                                +
                                                + Add +
                                                + + +
                                                +

                                                 

                                                +
                                                +

                                                Tasks

                                                +
                                                  +
                                                +
                                                + + + + diff --git a/src/apps/todos/todo.css b/src/apps/todos/todo.css index 5bbf803a..4caefbfc 100644 --- a/src/apps/todos/todo.css +++ b/src/apps/todos/todo.css @@ -3,20 +3,30 @@ margin: 1em; text-align: center; } +.menu-ul{ + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden; + background-color: #333; +} -/*html { - /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e5e7eb+0,d3d6d9+44,d3d6d9+92 - background: rgb(229,231,235); - background: -moz-linear-gradient(top, rgba(229,231,235,1) 0%, rgba(211,214,217,1) 44%, rgba(211,214,217,1) 92%); - background: -webkit-linear-gradient(top, rgba(229,231,235,1) 0%,rgba(211,214,217,1) 44%,rgba(211,214,217,1) 92%); - background: linear-gradient(to bottom, rgba(229,231,235,1) 0%,rgba(211,214,217,1) 44%,rgba(211,214,217,1) 92%); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e7eb', endColorstr='#d3d6d9',GradientType=0 ); - position: absolute; - height: 100%; - width: 100%; - overflow: scroll; -} -*/ +.menu { + float: left; +} + +li a { + display: block; + color: white; + text-align: center; + padding: 14px 16px; + text-decoration: none; +} + +/* Change the link color to #111 (black) on hover */ +li a:hover { + background-color: #111; +} #background { background: red; /* For browsers that do not support gradients */ background: -webkit-linear-gradient(red, yellow, green); /* For Safari 5.1 to 6.0 */ diff --git a/src/hackathons/01-18/index.md b/src/hackathons/01-18/index.md index c25dbd46..534e28ce 100644 --- a/src/hackathons/01-18/index.md +++ b/src/hackathons/01-18/index.md @@ -20,7 +20,7 @@ Tuesday @ 11:59pm, 1/19/2016 1. [high](/apps/todos/high.html) 2. [medium](/apps/todos/medium.html) 3. [low](/apps/todos/low.html) -* [ ] The landing page of the app ([index.html](/apps/todos/index.html)) should contain +* [x] The landing page of the app ([index.html](/apps/todos/index.html)) should contain a navigation bar with links to these three pages. * [ ] When a task's priority value is modified (e.g., medium --> high), all four pages (index, low, medium, high) are automatically refreshed. From 1ed235b40a29123c36e6c21507901d974bf20c2b Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Tue, 19 Jan 2016 12:17:39 -0700 Subject: [PATCH 10/32] All pages now refresh automatically --- build/apps/todos/high.html | 21 +++--- build/apps/todos/index.html | 16 +--- build/apps/todos/low.html | 30 ++++---- build/apps/todos/medium.html | 29 ++++---- build/apps/todos/todo.css | 119 ++++++++++++++++-------------- build/hackathons/01-18/index.html | 4 +- src/apps/todos/high.html | 21 +++--- src/apps/todos/index.html | 16 +--- src/apps/todos/low.html | 30 ++++---- src/apps/todos/medium.html | 29 ++++---- src/apps/todos/todo.css | 119 ++++++++++++++++-------------- src/hackathons/01-18/index.md | 4 +- 12 files changed, 222 insertions(+), 216 deletions(-) diff --git a/build/apps/todos/high.html b/build/apps/todos/high.html index 23d318f8..f9aee105 100644 --- a/build/apps/todos/high.html +++ b/build/apps/todos/high.html @@ -26,7 +26,7 @@
                                                @@ -53,15 +53,18 @@

                                                Tasks

                                                diff --git a/build/apps/todos/index.html b/build/apps/todos/index.html index 3ef23e5d..34b8ec4b 100644 --- a/build/apps/todos/index.html +++ b/build/apps/todos/index.html @@ -25,7 +25,7 @@
                                                diff --git a/src/apps/todos/index.html b/src/apps/todos/index.html index b6829412..805ea5d5 100755 --- a/src/apps/todos/index.html +++ b/src/apps/todos/index.html @@ -1,103 +1,1761 @@ + + API Documentation + + + + - - - - - - - - - + + + + + + + + + +
                                                +
                                                + - - P - +
                                                + +
                                                + + +

                                                Request Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Referer +
                                                + + + + +

                                                Response Code

                                                +
                                                200
                                                + +

                                                Response Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Content-Type application/json
                                                + + +

                                                Response Body

                                                +
                                                [{"uuid":"98cf2e56-1576-486d-9451-8322bcd0b94d","source":"ssss.comaaaa","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://ssss.comaaaa","byline":"","updated_date":"2016-01-03T16:16:10.094-07:00","created_date":"2016-01-03T16:16:10.094-07:00","published_date":"","media":[],"is_read":true},{"uuid":"d085529c-dfbd-4e1f-9da6-a35119e0c6d7","source":"ssss.com","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://ssss.com","byline":"","updated_date":"2016-01-03T16:09:51.342-07:00","created_date":"2016-01-03T16:09:51.342-07:00","published_date":"","media":[],"is_read":true},{"uuid":"1965ded8-9fe5-474d-b164-2ef9eabf4ced","source":"","popularity":"","section":"","title":"","author":"","abstract":"","url":"://a.com","byline":"","updated_date":"2016-01-03T16:02:46.982-07:00","created_date":"2016-01-03T16:02:46.982-07:00","published_date":"","media":[],"is_read":true},{"uuid":"bb44c161-07a3-4641-9323-e21b3e8bbcd8","source":"","popularity":"","section":"","title":"","author":"","abstract":"","url":"://a","byline":"","updated_date":"2016-01-03T15:50:52.131-07:00","created_date":"2016-01-03T15:50:52.131-07:00","published_date":"","media":[],"is_read":true},{"uuid":"cc99e58d-6f9a-4990-b266-0cc7fade8fe9","source":"google.com","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://google.com/sadasd/asdasd","byline":"","updated_date":"2016-01-03T15:41:56.841-07:00","created_date":"2016-01-03T15:41:56.841-07:00","published_date":"","media":[],"is_read":true},{"uuid":"f52a194d-e449-4315-8dc6-4cb87f407588","source":"google.com","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://google.com","byline":"","updated_date":"2016-01-03T15:37:26.731-07:00","created_date":"2016-01-03T15:37:26.731-07:00","published_date":"","media":[],"is_read":true}]
                                                + +
                                                + + +

                                                Request Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Referer +
                                                + + + +

                                                URL Params

                                                + + + + + + + + + + + +
                                                KeyValue
                                                is_read false
                                                + + +

                                                Response Code

                                                +
                                                200
                                                + +

                                                Response Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Content-Type application/json
                                                + + +

                                                Response Body

                                                +
                                                [{"uuid":"73f9b780-10d3-45e8-946b-2de9541e05e0","source":"The New York Times","popularity":"","section":"Opinion","title":"The Brutalism of Ted Cruz","author":"DAVID BROOKS","abstract":"The Texas Republican lacks the Christian virtues many evangelical voters may expect.","url":"http://www.nytimes.com/2016/01/12/opinion/the-brutalism-of-ted-cruz.html","byline":"By DAVID BROOKS","updated_date":"2016-01-14T14:12:58.323-07:00","created_date":"2016-01-14T14:12:58.323-07:00","published_date":"2016-01-12","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Eric Thayer for The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-articleInline.jpg","format":"Normal","height":132,"width":190},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-jumbo.jpg","format":"Jumbo","height":710,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-superJumbo.jpg","format":"superJumbo","height":1419,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"36ecf666-8d81-4a37-be59-a304eef298bc","source":"The New York Times","popularity":"","section":"World","title":"Iran’s Swift Release of U.S. Sailors Hailed as a Sign of Warmer Relations","author":"DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER","abstract":"It remained unclear who decided to release the sailors or how their two patrol boats ended up in Iranian territorial waters.","url":"http://www.nytimes.com/2016/01/14/world/middleeast/iran-navy-crew-release.html","byline":"By DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER","updated_date":"2016-01-14T13:22:58.979-07:00","created_date":"2016-01-14T13:22:58.979-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"A photo released by the Revolutionary Guards on Wednesday shows detained American sailors in an undisclosed location in Iran.","copyright":"Sepahnews, via Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbStandard-v2.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-articleInline.jpg","format":"Normal","height":107,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-sfSpan-v2.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-jumbo.jpg","format":"Jumbo","height":576,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-superJumbo.jpg","format":"superJumbo","height":1125,"width":2000},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbLarge-v2.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"79a207ef-6afc-4238-be80-858ed266e550","source":"The New York Times","popularity":"","section":"Arts","title":"How David Bowie Challenged MTV on Race","author":"WESLEY MORRIS","abstract":"A candid exchange in 1983 is sobering for its continued relevance and useful for what it says about Mr. Bowie’s sense of social awareness.","url":"http://www.nytimes.com/2016/01/14/arts/music/how-david-bowie-used-his-stardom-and-race-to-challenge-mtv.html","byline":"By WESLEY MORRIS","updated_date":"2016-01-14T13:22:57.747-07:00","created_date":"2016-01-14T13:22:57.747-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"David Bowie at Madison Square Garden in 1976.","copyright":"Allan Tannenbaum/Getty Images","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-articleInline.jpg","format":"Normal","height":121,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-jumbo.jpg","format":"Jumbo","height":379,"width":594},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-superJumbo.jpg","format":"superJumbo","height":379,"width":594},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"c119f1f8-dfc5-43dd-b0a3-eac519e8e507","source":"The New York Times","popularity":"","section":"Arts","title":"Iggy Pop on David Bowie: ‘He Resurrected Me’","author":"JON PARELES","abstract":"In an interview, the Detroit rocker, who collaborated with Mr. Bowie in the 1970s, talked about their friendship and their work through the years.","url":"http://www.nytimes.com/2016/01/14/arts/music/david-bowie-iggy-pop.html","byline":"By JON PARELES","updated_date":"2016-01-14T13:22:56.43-07:00","created_date":"2016-01-14T13:22:56.43-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Iggy Pop, left, and David Bowie, during the tour for Mr. Pop’s 1977 album “The Idiot.”","copyright":"Rex Features, via Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-articleInline.jpg","format":"Normal","height":131,"width":190},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-jumbo.jpg","format":"Jumbo","height":704,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-superJumbo.jpg","format":"superJumbo","height":1408,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"57cfab66-99a1-473d-bec2-f1a2da5c259b","source":"The New York Times","popularity":"","section":"World","title":"El Chapo Enticed by Star Power of Mexican Actress, Not Sean Penn","author":"PAULINA VILLEGAS","abstract":"Conversations between the drug lord Joaquín Guzmán Loera and the actress Kate del Castillo offer a window into the psyche of one of the world’s most wanted criminals.","url":"http://www.nytimes.com/2016/01/14/world/americas/el-chapo-enticed-by-star-power-of-mexican-tv-actress-not-sean-penn.html","byline":"By PAULINA VILLEGAS","updated_date":"2016-01-14T13:22:53.698-07:00","created_date":"2016-01-14T13:22:53.698-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"The actress Kate del Castillo in Hollywood in November.","copyright":"Mark Ralston/Agence France-Presse — Getty Images","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-articleInline.jpg","format":"Normal","height":209,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-jumbo.jpg","format":"Jumbo","height":1024,"width":933},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-superJumbo.jpg","format":"superJumbo","height":2048,"width":1866},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"22dd6af8-0ea9-4cfb-9422-74c5e896d65f","source":"The New York Times","popularity":"","section":"Opinion","title":"Politics: Everything’s Relative","author":"GAIL COLLINS","abstract":"Here are rules for dealing with family members showing up in the presidential race, like when to give them a break and when to go for the jugular.","url":"http://www.nytimes.com/2016/01/14/opinion/politics-everythings-relative.html","byline":"By GAIL COLLINS","updated_date":"2016-01-14T13:22:52.612-07:00","created_date":"2016-01-14T13:22:52.612-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Earl Wilson/The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbStandard-v5.png","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-articleInline-v5.png","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-jumbo-v5.png","format":"Jumbo","height":228,"width":342},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-superJumbo-v5.png","format":"superJumbo","height":228,"width":342},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbLarge-v7.png","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-mediumThreeByTwo210-v5.png","format":"mediumThreeByTwo210","height":140,"width":210}]}],"is_read":false},{"uuid":"686c0ea7-af91-48de-b6db-2c7035408d31","source":"The New York Times","popularity":"","section":"World","title":"Jakarta Attack Kills 2, Raising Fears of Growing ISIS Reach","author":"JOE COCHRANE and THOMAS FULLER","abstract":"The two civilians killed in the explosions and gunfire were a Canadian and an Indonesian, senior officials reported. Five assailants were also killed.","url":"http://www.nytimes.com/2016/01/15/world/asia/jakarta-explosion.html","byline":"By JOE COCHRANE and THOMAS FULLER","updated_date":"2016-01-14T13:22:49.387-07:00","created_date":"2016-01-14T13:22:49.387-07:00","published_date":"2016-01-15","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Bay Ismoyo/Agence France-Presse — Getty Images","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-articleInline.jpg","format":"Normal","height":139,"width":190},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-jumbo.jpg","format":"Jumbo","height":748,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-superJumbo.jpg","format":"superJumbo","height":1496,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"45a78a90-74dc-4958-aef4-d1f3e695c36a","source":"The New York Times","popularity":"","section":"Opinion","title":"The Other Obama Legacy","author":"CHARLES M. BLOW","abstract":"For many young people, the first president they consciously registered was a black man.","url":"http://www.nytimes.com/2016/01/14/opinion/the-other-obama-legacy.html","byline":"By CHARLES M. BLOW","updated_date":"2016-01-14T13:22:47.456-07:00","created_date":"2016-01-14T13:22:47.456-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"President Obama bends over so the son of a White House staff member can touch his hair during a visit to the Oval Office.","copyright":"Pete Souza/The White House","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-articleInline.jpg","format":"Normal","height":128,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-jumbo.jpg","format":"Jumbo","height":682,"width":1012},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-superJumbo.jpg","format":"superJumbo","height":682,"width":1012},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"cbb5b09c-bf63-44f0-9bda-c5443b435c89","source":"The New York Times","popularity":"","section":"Opinion","title":"The Tempting of Bernie Sanders","author":"ROSS DOUTHAT","abstract":"Is he ruthless enough to win?","url":"http://www.nytimes.com/2016/01/14/opinion/campaign-stops/the-tempting-of-bernie-sanders.html","byline":"By ROSS DOUTHAT","updated_date":"2016-01-14T13:22:46.422-07:00","created_date":"2016-01-14T13:22:46.422-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Scott Morgan/Reuters","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-articleInline.jpg","format":"Normal","height":121,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-sfSpan.jpg","format":"Large","height":264,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-jumbo.jpg","format":"Jumbo","height":653,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-superJumbo.jpg","format":"superJumbo","height":1305,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"2e8d771a-4d16-4421-83ea-92a599497890","source":"The New York Times","popularity":"","section":"Food","title":"At Thomas Keller’s Per Se, Slips and Stumbles","author":"PETE WELLS","abstract":"A new look at one of the nation’s landmark restaurants.","url":"http://www.nytimes.com/2016/01/13/dining/pete-wells-per-se-review.html","byline":"By PETE WELLS","updated_date":"2016-01-14T13:22:41.353-07:00","created_date":"2016-01-14T13:22:41.353-07:00","published_date":"2016-01-13","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Karsten Moran for The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square320-v2.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbStandard-v2.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-sfSpan-v2.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-jumbo.jpg","format":"Jumbo","height":684,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-superJumbo.jpg","format":"superJumbo","height":1367,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square640-v2.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbLarge-v2.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo210-v2.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo440-v2.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"7efce391-6d6f-4153-9bd2-b4022b06ad7d","source":"The New York Times","popularity":"","section":"U.S.","title":"U.S. Will Track Secret Buyers of Luxury Real Estate","author":"LOUISE STORY","abstract":"The initiative will start in Manhattan and Miami-Dade County as part of a broader federal effort to focus on money laundering in real estate.","url":"http://www.nytimes.com/2016/01/14/us/us-will-track-secret-buyers-of-luxury-real-estate.html","byline":"By LOUISE STORY","updated_date":"2016-01-14T13:22:40.794-07:00","created_date":"2016-01-14T13:22:40.794-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Condominiums at the Time Warner Center were found to have a number of hidden owners over a decade who had been the subjects of government investigations.","copyright":"Edward Caruso for The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-articleInline.jpg","format":"Normal","height":152,"width":190},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-jumbo.jpg","format":"Jumbo","height":819,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-superJumbo.jpg","format":"superJumbo","height":1639,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"9bfb4871-a656-4e31-a53f-f97cfeaa48bf","source":"The New York Times","popularity":"","section":"Business Day","title":"Al Jazeera America to Shut Down by April","author":"JOHN KOBLIN","abstract":"The cable news outlet, which began broadcasting in August 2013, said it would expand its digital presence in the United States.","url":"http://www.nytimes.com/2016/01/14/business/media/al-jazeera-america-to-shut-down-in-april.html","byline":"By JOHN KOBLIN","updated_date":"2016-01-14T13:22:38.092-07:00","created_date":"2016-01-14T13:22:38.092-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Al Jazeera America debuted in August 2013 after it bought Al Gore’s Current TV for $500 million.","copyright":"Suzanne DeChillo/The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-jumbo.jpg","format":"Jumbo","height":683,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-superJumbo.jpg","format":"superJumbo","height":1365,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"7f138454-c7cf-4667-8135-b46f4bd0cdd4","source":"The New York Times","popularity":"","section":"U.S.","title":"Powerball Has 3 Big Winners, in California, Florida and Tennessee","author":"ASHLEY SOUTHALL and LIAM STACK","abstract":"The winners will divide a record $1.5 billion jackpot, with a cash option of $983.5 million. In addition, eight tickets that won $2 million were sold in seven states.","url":"http://www.nytimes.com/2016/01/14/us/numbers-chosen-for-powerball-with-biggest-jackpot-ever.html","byline":"By ASHLEY SOUTHALL and LIAM STACK","updated_date":"2016-01-14T13:22:36.999-07:00","created_date":"2016-01-14T13:22:36.999-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"People lined up to buy Powerball tickets in Hawthorne, Calif., on Wednesday. Record sales drove up the largest jackpot in United States history to $1.5 billion.","copyright":"Mark Ralston/Agence France-Presse — Getty Images","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-articleInline.jpg","format":"Normal","height":137,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-jumbo.jpg","format":"Jumbo","height":740,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-superJumbo.jpg","format":"superJumbo","height":1480,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"12239fa3-1195-4791-adfd-b8070fbc715b","source":"The New York Times","popularity":"","section":"Opinion","title":"Why I Will Never Vote for Donald Trump","author":"PETER WEHNER","abstract":"Party loyalty has limits. Mr. Trump has altered the political equation because he has altered the moral equation.","url":"http://www.nytimes.com/2016/01/14/opinion/campaign-stops/why-i-will-never-vote-for-donald-trump.html","byline":"By PETER WEHNER","updated_date":"2016-01-14T13:22:35.752-07:00","created_date":"2016-01-14T13:22:35.752-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"West Des Moines, Iowa","copyright":"Jae C. Hong/Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-jumbo.jpg","format":"Jumbo","height":682,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-superJumbo.jpg","format":"superJumbo","height":1364,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"34703da9-65ac-402c-91bd-051927152b92","source":"The New York Times","popularity":"","section":"U.S.","title":"Ted Cruz Starts to Crack G.O.P. Establishment’s Wall of Opposition","author":"JONATHAN MARTIN","abstract":"Mr. Cruz, a candidate who built his name challenging his party’s leadership, has begun wooing entrenched power brokers, and some of them are listening.","url":"http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-starts-to-crack-gop-establishments-wall-of-opposition.html","byline":"By JONATHAN MARTIN","updated_date":"2016-01-14T13:22:34.653-07:00","created_date":"2016-01-14T13:22:34.653-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Senator Ted Cruz on the campaign trail in Hudson, N.H., on Tuesday. He has quietly begun wooing some of the party’s most entrenched donors and officials.","copyright":"Matt Rourke/Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square320-v2.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbStandard-v2.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-jumbo.jpg","format":"Jumbo","height":683,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-superJumbo.jpg","format":"superJumbo","height":1365,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square640-v2.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbLarge-v2.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"b04d9dfc-0644-41a6-ba3a-799d88fb26a5","source":"The New York Times","popularity":"","section":"Movies","title":"Oscar Nominations 2016","author":"BROOKS BARNES and MICHAEL CIEPLY","abstract":"“The Revenant” and “Mad Max: Fury Road” were showered with honors by the Academy of Motion Picture Arts and Sciences, picking up Oscar nominations for best picture and best director.","url":"http://www.nytimes.com/2016/01/15/movies/oscar-nominations.html","byline":"By BROOKS BARNES and MICHAEL CIEPLY","updated_date":"2016-01-14T13:22:32.864-07:00","created_date":"2016-01-14T13:22:32.864-07:00","published_date":"2016-01-15","media":[{"type":"image","subtype":"photo","caption":"“The Revenant” leads this year’s Oscar nominations with 12.","copyright":"20th Century Fox","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-articleInline.jpg","format":"Normal","height":79,"width":190},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-jumbo.jpg","format":"Jumbo","height":428,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-superJumbo.jpg","format":"superJumbo","height":855,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"8c495ce4-7c9d-4eec-af4a-6e199d7c6b97","source":"The New York Times","popularity":"","section":"The Upshot","title":"Dear Powerball Winner: Take Our Advice and Take the Annuity","author":"JOSH BARRO","abstract":"Comparing payout options is fun to imagine, but also a useful way to think about taxes, investment opportunities and human nature.","url":"http://www.nytimes.com/2016/01/13/upshot/dear-powerball-winner-take-our-advice-and-take-the-annuity.html","byline":"By JOSH BARRO","updated_date":"2016-01-14T13:22:30.919-07:00","created_date":"2016-01-14T13:22:30.919-07:00","published_date":"2016-01-13","media":[{"type":"image","subtype":"photo","caption":"Actually, it’s either $1.5 billion (which the sign cannot accommodate) or $930 million, depending on how you choose to take your winnings.","copyright":"Seth Wenig/Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-jumbo.jpg","format":"Jumbo","height":683,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-superJumbo.jpg","format":"superJumbo","height":1365,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"e9590738-be1f-411e-871c-da5e243a9a0d","source":"The New York Times","popularity":"","section":"Movies","title":"Alan Rickman, Actor Known for ‘Harry Potter’ and ‘Die Hard,’ Dies at 69","author":"DAVE ITZKOFF and KATIE ROGERS","abstract":"The British actor brought an erudite dignity to film roles like the nefarious mastermind of “Die Hard” and the dour master of potions in the “Harry Potter” series.","url":"http://www.nytimes.com/2016/01/15/obituaries/alan-rickman-dies-at-69.html","byline":"By DAVE ITZKOFF and KATIE ROGERS","updated_date":"2016-01-14T13:22:30.564-07:00","created_date":"2016-01-14T13:22:30.564-07:00","published_date":"2016-01-15","media":[{"type":"image","subtype":"photo","caption":"Alan Rickman at the Golden Theater in New York City in 2011.","copyright":"Sara Krulwich/The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-jumbo.jpg","format":"Jumbo","height":683,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-superJumbo.jpg","format":"superJumbo","height":1365,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"83c9a570-f5e5-4aeb-b32b-963aba50ae4a","source":"The New York Times","popularity":"","section":"U.S.","title":"Ted Cruz Didn’t Report Goldman Sachs Loan in a Senate Race","author":"MIKE McINTIRE","abstract":"As Mr. Cruz tells it, loyalty and sacrifice helped finance his 2012 Senate bid in Texas. Turns out, a Goldman Sachs loan did as well.","url":"http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-wall-street-loan-senate-bid-2012.html","byline":"By MIKE McINTIRE","updated_date":"2016-01-14T13:22:28.168-07:00","created_date":"2016-01-14T13:22:28.168-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Ted and Heidi Cruz, after he won the runoff for the Republican nomination for a Senate seat from Texas in July 2012.","copyright":"Johnny Hanson/Houston Chronicle, via Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-articleInline.jpg","format":"Normal","height":121,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-jumbo.jpg","format":"Jumbo","height":651,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-superJumbo.jpg","format":"superJumbo","height":1302,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"ba1fa5f0-50b1-4e0c-8cc7-88e993ae108a","source":"","popularity":"","section":"","title":"Example","author":"","abstract":"Example abstract","url":"","byline":"","updated_date":"2016-01-03T16:34:52.506-07:00","created_date":"2016-01-03T16:34:52.506-07:00","published_date":"","media":[],"is_read":false}]
                                                + +
                                                + +
                                                + +
                                                + + +

                                                Request Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Referer +
                                                + + + + +

                                                Response Code

                                                +
                                                200
                                                + +

                                                Response Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Content-Type application/json
                                                + + +

                                                Response Body

                                                +
                                                {"uuid":"98cf2e56-1576-486d-9451-8322bcd0b94d","source":"ssss.comaaaa","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://ssss.comaaaa","byline":"","updated_date":"2016-01-03T16:16:10.094-07:00","created_date":"2016-01-03T16:16:10.094-07:00","published_date":"","media":[],"is_read":true}
                                                + +
                                                + +
                                                + +
                                                + + +

                                                Request Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Referer +
                                                + + + + +

                                                Response Code

                                                +
                                                200
                                                + +

                                                Response Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Content-Type application/json
                                                + + +

                                                Response Body

                                                +
                                                [{"uuid":"fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a","article_id":"98cf2e56-1576-486d-9451-8322bcd0b94d","is_human":false,"reader_id":"0bf971e2-f655-44ef-8e6d-8bd7ec02e605","content_url":"://","url":"https://s3-us-west-2.amazonaws.com/appoutloud/fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3","file_type":"audio/mp3","created_date":"2016-01-21T13:37:35.731-07:00","reader":{"uuid":"0bf971e2-f655-44ef-8e6d-8bd7ec02e605","email":"","name":""}},{"uuid":"2132ccf3-a314-4b33-b647-1f3ebcd9256d","article_id":"bb44c161-07a3-4641-9323-e21b3e8bbcd8","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a","url":"https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T23:40:56.972-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a","article_id":"98cf2e56-1576-486d-9451-8322bcd0b94d","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"http://ssss.comaaaa","url":"https://s3-us-west-2.amazonaws.com/appoutloud/12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T16:16:20.658-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"4ee0acef-a0f7-4676-b249-f8d1e2c8582c","article_id":"d085529c-dfbd-4e1f-9da6-a35119e0c6d7","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"http://ssss.com","url":"https://s3-us-west-2.amazonaws.com/appoutloud/4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T16:09:53.15-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"2d9d119f-2b97-45a6-9952-0a14d7f61ecb","article_id":"1965ded8-9fe5-474d-b164-2ef9eabf4ced","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a.com","url":"https://s3-us-west-2.amazonaws.com/appoutloud/2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T16:05:22.602-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"fd047772-939e-40c4-80c3-82cde4c166f0","article_id":"1965ded8-9fe5-474d-b164-2ef9eabf4ced","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a.com","url":"https://s3-us-west-2.amazonaws.com/appoutloud/fd047772-939e-40c4-80c3-82cde4c166f0.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd047772-939e-40c4-80c3-82cde4c166f0.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T16:02:57.762-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"28295897-f834-4de9-bd5a-ab3ac782cd02","article_id":"bb44c161-07a3-4641-9323-e21b3e8bbcd8","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a","url":"https://s3-us-west-2.amazonaws.com/appoutloud/28295897-f834-4de9-bd5a-ab3ac782cd02.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-28295897-f834-4de9-bd5a-ab3ac782cd02.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T15:51:02.608-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"3386aeaa-1bc4-4220-bd10-f1c859cb92b6","article_id":"cc99e58d-6f9a-4990-b266-0cc7fade8fe9","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"http://google.com/sadasd/asdasd","url":"https://s3-us-west-2.amazonaws.com/appoutloud/3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T15:42:07.389-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"989f74de-e748-4ba0-b601-ec1b98d16dac","article_id":"f52a194d-e449-4315-8dc6-4cb87f407588","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"http://google.com","url":"https://s3-us-west-2.amazonaws.com/appoutloud/989f74de-e748-4ba0-b601-ec1b98d16dac.mp4","raw_url":"","file_type":"audio/x-m4a","created_date":"2016-01-03T15:37:35.432-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}}]
                                                + +
                                                + +
                                                + +
                                                + + +

                                                Request Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Referer +
                                                + + + + +

                                                Response Code

                                                +
                                                200
                                                + +

                                                Response Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Content-Type application/json
                                                + + +

                                                Response Body

                                                +
                                                {"uuid":"2132ccf3-a314-4b33-b647-1f3ebcd9256d","article_id":"bb44c161-07a3-4641-9323-e21b3e8bbcd8","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a","url":"https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T23:40:56.972-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}}
                                                + +
                                                + +
                                                + +
                                                + + +

                                                Request Headers

                                                + + + + + + + + + + + + + + + + +
                                                KeyValue
                                                Content-Type multipart/form-data; boundary=----------------------------98ff7c75a7ac +
                                                Referer +
                                                + + + + +

                                                Response Code

                                                +
                                                415
                                                + +

                                                Response Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Content-Type text/plain; charset=utf-8
                                                + + +

                                                Response Body

                                                +
                                                Please provide an mp3 or mp4 audio file
                                                +
                                                + +
                                                + +
                                                + +
                                                + + +

                                                Request Headers

                                                + + + + + + + + + + + + + + + + +
                                                KeyValue
                                                Content-Type multipart/form-data; boundary=----------------------------98ff7c75a7ac +
                                                Referer +
                                                + + + + +

                                                Response Code

                                                +
                                                200
                                                + + +
                                                + +
                                                + +
                                                + + +

                                                Request Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Upgrade-Insecure-Requests 1 +
                                                + + + + +

                                                Response Code

                                                +
                                                200
                                                + + +

                                                Response Body

                                                +
                                                <!DOCTYPE html>
                                                +<html>
                                                +<head lang="en">
                                                +    <title> API Documentation </title>
                                                +    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
                                                +    <script src="http://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
                                                +    <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
                                                +    <link rel="stylesheet" href="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css">
                                                +
                                                +    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
                                                +    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
                                                +
                                                +    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
                                                +    <style type="text/css">
                                                +        body {
                                                +            font-family: 'Roboto', sans-serif;
                                                +        }
                                                +        .hidden {
                                                +            display:none;
                                                +        }
                                                +    </style>
                                                +    <style type="text/css">
                                                +        pre.prettyprint {
                                                +            border: 1px solid #ccc;
                                                +            margin-bottom: 0;
                                                +            padding: 9.5px;
                                                +        }
                                                +    </style>
                                                +    <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
                                                +    <script>
                                                +        hljs.initHighlightingOnLoad();
                                                +        function toggler(divId) {
                                                +           $("#" + divId).toggle();
                                                +        }
                                                +    </script>
                                                +</head>
                                                +<body>
                                                +<nav class="navbar navbar-default navbar-fixed-top">
                                                +    <div class="container-fluid">
                                                +
                                                +        <div class="navbar-header">
                                                +            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
                                                +                    data-target="#bs-example-navbar-collapse-1">
                                                +                <span class="sr-only">Toggle navigation</span>
                                                +                <span class="icon-bar"></span>
                                                +                <span class="icon-bar"></span>
                                                +                <span class="icon-bar"></span>
                                                +            </button>
                                                +            <a class="navbar-brand" href="#">Outloud! Api Documentation</a>
                                                +            <p class="navbar-text">Developed by Gophers at <a href="http://betacraft.co">Betacraft</a></p>
                                                +        </div>
                                                +
                                                +
                                                +    </div>
                                                +
                                                +</nav>
                                                +<div class="container-fluid" style="margin-top: 70px;margin-bottom: 20px;">
                                                +    <div class="container-fluid">
                                                +    <div class="col-md-4">
                                                +        <div class="panel panel-default">
                                                +              <div class="panel-heading">Base Urls</div>
                                                +              <div class="panel-body">
                                                +
                                                +              </div>
                                                +            </div>
                                                +        <ul class="nav nav-pills nav-stacked" role="tablist">
                                                +
                                                +                <li role="presentation"><a href="#0top" role="tab" data-toggle="tab">GET : /api/feed</a></li>
                                                +
                                                +                <li role="presentation"><a href="#1top" role="tab" data-toggle="tab">GET : /api/article/98cf2e56-1576-486d-9451-8322bcd0b94d</a></li>
                                                +
                                                +                <li role="presentation"><a href="#2top" role="tab" data-toggle="tab">GET : /api/readings</a></li>
                                                +
                                                +                <li role="presentation"><a href="#3top" role="tab" data-toggle="tab">GET : /api/reading/2132ccf3-a314-4b33-b647-1f3ebcd9256d</a></li>
                                                +
                                                +                <li role="presentation"><a href="#4top" role="tab" data-toggle="tab">POST : /api/reading/new</a></li>
                                                +
                                                +                <li role="presentation"><a href="#5top" role="tab" data-toggle="tab">POST : /api/channel/add</a></li>
                                                +
                                                +        <ul>
                                                +    </div>
                                                +    <div class="col-md-8 tab-content">
                                                +
                                                +        <div id="0top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +                <p><h4> Response Headers</h4></p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td> application/json</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;source&#34;:&#34;ssss.comaaaa&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&#34;,&#34;source&#34;:&#34;ssss.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:09:51.342-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:09:51.342-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;://a.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:02:46.982-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:02:46.982-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;://a&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:50:52.131-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:50:52.131-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&#34;,&#34;source&#34;:&#34;google.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://google.com/sadasd/asdasd&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:41:56.841-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:41:56.841-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;f52a194d-e449-4315-8dc6-4cb87f407588&#34;,&#34;source&#34;:&#34;google.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://google.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:37:26.731-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:37:26.731-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true}]</pre>
                                                +
                                                +                <hr>
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +                <p> <H4> URL Params </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>is_read</td>
                                                +                        <td> false</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +                <p><h4> Response Headers</h4></p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td> application/json</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;73f9b780-10d3-45e8-946b-2de9541e05e0&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Brutalism of Ted Cruz&#34;,&#34;author&#34;:&#34;DAVID BROOKS&#34;,&#34;abstract&#34;:&#34;The Texas Republican lacks the Christian virtues many evangelical voters may expect.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/12/opinion/the-brutalism-of-ted-cruz.html&#34;,&#34;byline&#34;:&#34;By DAVID BROOKS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T14:12:58.323-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T14:12:58.323-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-12&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Eric Thayer for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:132,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:710,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1419,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;36ecf666-8d81-4a37-be59-a304eef298bc&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;Iran’s Swift Release of U.S. Sailors Hailed as a Sign of Warmer Relations&#34;,&#34;author&#34;:&#34;DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&#34;,&#34;abstract&#34;:&#34;It remained unclear who decided to release the sailors or how their two patrol boats ended up in Iranian territorial waters.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/world/middleeast/iran-navy-crew-release.html&#34;,&#34;byline&#34;:&#34;By DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:58.979-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:58.979-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;A photo released by the Revolutionary Guards on Wednesday shows detained American sailors in an undisclosed location in Iran.&#34;,&#34;copyright&#34;:&#34;Sepahnews, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:107,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-sfSpan-v2.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:576,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1125,&#34;width&#34;:2000},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;79a207ef-6afc-4238-be80-858ed266e550&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Arts&#34;,&#34;title&#34;:&#34;How David Bowie Challenged MTV on Race&#34;,&#34;author&#34;:&#34;WESLEY MORRIS&#34;,&#34;abstract&#34;:&#34;A candid exchange in 1983 is sobering for its continued relevance and useful for what it says about Mr. Bowie’s sense of social awareness.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/arts/music/how-david-bowie-used-his-stardom-and-race-to-challenge-mtv.html&#34;,&#34;byline&#34;:&#34;By WESLEY MORRIS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:57.747-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:57.747-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;David Bowie at Madison Square Garden in 1976.&#34;,&#34;copyright&#34;:&#34;Allan Tannenbaum/Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:379,&#34;width&#34;:594},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:379,&#34;width&#34;:594},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;c119f1f8-dfc5-43dd-b0a3-eac519e8e507&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Arts&#34;,&#34;title&#34;:&#34;Iggy Pop on David Bowie: ‘He Resurrected Me’&#34;,&#34;author&#34;:&#34;JON PARELES&#34;,&#34;abstract&#34;:&#34;In an interview, the Detroit rocker, who collaborated with Mr. Bowie in the 1970s, talked about their friendship and their work through the years.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/arts/music/david-bowie-iggy-pop.html&#34;,&#34;byline&#34;:&#34;By JON PARELES&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:56.43-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:56.43-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Iggy Pop, left, and David Bowie, during the tour for Mr. Pop’s 1977 album “The Idiot.”&#34;,&#34;copyright&#34;:&#34;Rex Features, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:131,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:704,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1408,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;57cfab66-99a1-473d-bec2-f1a2da5c259b&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;El Chapo Enticed by Star Power of Mexican Actress, Not Sean Penn&#34;,&#34;author&#34;:&#34;PAULINA VILLEGAS&#34;,&#34;abstract&#34;:&#34;Conversations between the drug lord Joaquín Guzmán Loera and the actress Kate del Castillo offer a window into the psyche of one of the world’s most wanted criminals.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/world/americas/el-chapo-enticed-by-star-power-of-mexican-tv-actress-not-sean-penn.html&#34;,&#34;byline&#34;:&#34;By PAULINA VILLEGAS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:53.698-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:53.698-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;The actress Kate del Castillo in Hollywood in November.&#34;,&#34;copyright&#34;:&#34;Mark Ralston/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:209,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:1024,&#34;width&#34;:933},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:2048,&#34;width&#34;:1866},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;22dd6af8-0ea9-4cfb-9422-74c5e896d65f&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;Politics: Everything’s Relative&#34;,&#34;author&#34;:&#34;GAIL COLLINS&#34;,&#34;abstract&#34;:&#34;Here are rules for dealing with family members showing up in the presidential race, like when to give them a break and when to go for the jugular.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/politics-everythings-relative.html&#34;,&#34;byline&#34;:&#34;By GAIL COLLINS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:52.612-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:52.612-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Earl Wilson/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbStandard-v5.png&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-articleInline-v5.png&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-jumbo-v5.png&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:228,&#34;width&#34;:342},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-superJumbo-v5.png&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:228,&#34;width&#34;:342},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbLarge-v7.png&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-mediumThreeByTwo210-v5.png&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;686c0ea7-af91-48de-b6db-2c7035408d31&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;Jakarta Attack Kills 2, Raising Fears of Growing ISIS Reach&#34;,&#34;author&#34;:&#34;JOE COCHRANE and THOMAS FULLER&#34;,&#34;abstract&#34;:&#34;The two civilians killed in the explosions and gunfire were a Canadian and an Indonesian, senior officials reported. Five assailants were also killed.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/world/asia/jakarta-explosion.html&#34;,&#34;byline&#34;:&#34;By JOE COCHRANE and THOMAS FULLER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:49.387-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:49.387-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Bay Ismoyo/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:139,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:748,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1496,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;45a78a90-74dc-4958-aef4-d1f3e695c36a&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Other Obama Legacy&#34;,&#34;author&#34;:&#34;CHARLES M. BLOW&#34;,&#34;abstract&#34;:&#34;For many young people, the first president they consciously registered was a black man.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/the-other-obama-legacy.html&#34;,&#34;byline&#34;:&#34;By CHARLES M. BLOW&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:47.456-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:47.456-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;President Obama bends over so the son of a White House staff member can touch his hair during a visit to the Oval Office.&#34;,&#34;copyright&#34;:&#34;Pete Souza/The White House&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:128,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1012},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1012},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;cbb5b09c-bf63-44f0-9bda-c5443b435c89&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Tempting of Bernie Sanders&#34;,&#34;author&#34;:&#34;ROSS DOUTHAT&#34;,&#34;abstract&#34;:&#34;Is he ruthless enough to win?&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/the-tempting-of-bernie-sanders.html&#34;,&#34;byline&#34;:&#34;By ROSS DOUTHAT&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:46.422-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:46.422-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Scott Morgan/Reuters&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:264,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:653,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1305,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;2e8d771a-4d16-4421-83ea-92a599497890&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Food&#34;,&#34;title&#34;:&#34;At Thomas Keller’s Per Se, Slips and Stumbles&#34;,&#34;author&#34;:&#34;PETE WELLS&#34;,&#34;abstract&#34;:&#34;A new look at one of the nation’s landmark restaurants.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/13/dining/pete-wells-per-se-review.html&#34;,&#34;byline&#34;:&#34;By PETE WELLS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:41.353-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:41.353-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-13&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Karsten Moran for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square320-v2.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-sfSpan-v2.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:684,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1367,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square640-v2.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo210-v2.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo440-v2.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;7efce391-6d6f-4153-9bd2-b4022b06ad7d&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;U.S. Will Track Secret Buyers of Luxury Real Estate&#34;,&#34;author&#34;:&#34;LOUISE STORY&#34;,&#34;abstract&#34;:&#34;The initiative will start in Manhattan and Miami-Dade County as part of a broader federal effort to focus on money laundering in real estate.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/us-will-track-secret-buyers-of-luxury-real-estate.html&#34;,&#34;byline&#34;:&#34;By LOUISE STORY&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:40.794-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:40.794-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Condominiums at the Time Warner Center were found to have a number of hidden owners over a decade who had been the subjects of government investigations.&#34;,&#34;copyright&#34;:&#34;Edward Caruso for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:152,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:819,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1639,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;9bfb4871-a656-4e31-a53f-f97cfeaa48bf&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Business Day&#34;,&#34;title&#34;:&#34;Al Jazeera America to Shut Down by April&#34;,&#34;author&#34;:&#34;JOHN KOBLIN&#34;,&#34;abstract&#34;:&#34;The cable news outlet, which began broadcasting in August 2013, said it would expand its digital presence in the United States.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/business/media/al-jazeera-america-to-shut-down-in-april.html&#34;,&#34;byline&#34;:&#34;By JOHN KOBLIN&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:38.092-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:38.092-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Al Jazeera America debuted in August 2013 after it bought Al Gore’s Current TV for $500 million.&#34;,&#34;copyright&#34;:&#34;Suzanne DeChillo/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;7f138454-c7cf-4667-8135-b46f4bd0cdd4&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Powerball Has 3 Big Winners, in California, Florida and Tennessee&#34;,&#34;author&#34;:&#34;ASHLEY SOUTHALL and LIAM STACK&#34;,&#34;abstract&#34;:&#34;The winners will divide a record $1.5 billion jackpot, with a cash option of $983.5 million. In addition, eight tickets that won $2 million were sold in seven states.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/numbers-chosen-for-powerball-with-biggest-jackpot-ever.html&#34;,&#34;byline&#34;:&#34;By ASHLEY SOUTHALL and LIAM STACK&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:36.999-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:36.999-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;People lined up to buy Powerball tickets in Hawthorne, Calif., on Wednesday. Record sales drove up the largest jackpot in United States history to $1.5 billion.&#34;,&#34;copyright&#34;:&#34;Mark Ralston/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:137,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:740,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1480,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;12239fa3-1195-4791-adfd-b8070fbc715b&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;Why I Will Never Vote for Donald Trump&#34;,&#34;author&#34;:&#34;PETER WEHNER&#34;,&#34;abstract&#34;:&#34;Party loyalty has limits. Mr. Trump has altered the political equation because he has altered the moral equation.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/why-i-will-never-vote-for-donald-trump.html&#34;,&#34;byline&#34;:&#34;By PETER WEHNER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:35.752-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:35.752-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;West Des Moines, Iowa&#34;,&#34;copyright&#34;:&#34;Jae C. Hong/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1364,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;34703da9-65ac-402c-91bd-051927152b92&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Ted Cruz Starts to Crack G.O.P. Establishment’s Wall of Opposition&#34;,&#34;author&#34;:&#34;JONATHAN MARTIN&#34;,&#34;abstract&#34;:&#34;Mr. Cruz, a candidate who built his name challenging his party’s leadership, has begun wooing entrenched power brokers, and some of them are listening.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-starts-to-crack-gop-establishments-wall-of-opposition.html&#34;,&#34;byline&#34;:&#34;By JONATHAN MARTIN&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:34.653-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:34.653-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Senator Ted Cruz on the campaign trail in Hudson, N.H., on Tuesday. He has quietly begun wooing some of the party’s most entrenched donors and officials.&#34;,&#34;copyright&#34;:&#34;Matt Rourke/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square320-v2.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square640-v2.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;b04d9dfc-0644-41a6-ba3a-799d88fb26a5&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Movies&#34;,&#34;title&#34;:&#34;Oscar Nominations 2016&#34;,&#34;author&#34;:&#34;BROOKS BARNES and MICHAEL CIEPLY&#34;,&#34;abstract&#34;:&#34;“The Revenant” and “Mad Max: Fury Road” were showered with honors by the Academy of Motion Picture Arts and Sciences, picking up Oscar nominations for best picture and best director.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/movies/oscar-nominations.html&#34;,&#34;byline&#34;:&#34;By BROOKS BARNES and MICHAEL CIEPLY&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:32.864-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:32.864-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;“The Revenant” leads this year’s Oscar nominations with 12.&#34;,&#34;copyright&#34;:&#34;20th Century Fox&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:79,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:428,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:855,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;8c495ce4-7c9d-4eec-af4a-6e199d7c6b97&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;The Upshot&#34;,&#34;title&#34;:&#34;Dear Powerball Winner: Take Our Advice and Take the Annuity&#34;,&#34;author&#34;:&#34;JOSH BARRO&#34;,&#34;abstract&#34;:&#34;Comparing payout options is fun to imagine, but also a useful way to think about taxes, investment opportunities and human nature.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/13/upshot/dear-powerball-winner-take-our-advice-and-take-the-annuity.html&#34;,&#34;byline&#34;:&#34;By JOSH BARRO&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:30.919-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:30.919-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-13&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Actually, it’s either $1.5 billion (which the sign cannot accommodate) or $930 million, depending on how you choose to take your winnings.&#34;,&#34;copyright&#34;:&#34;Seth Wenig/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;e9590738-be1f-411e-871c-da5e243a9a0d&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Movies&#34;,&#34;title&#34;:&#34;Alan Rickman, Actor Known for ‘Harry Potter’ and ‘Die Hard,’ Dies at 69&#34;,&#34;author&#34;:&#34;DAVE ITZKOFF and KATIE ROGERS&#34;,&#34;abstract&#34;:&#34;The British actor brought an erudite dignity to film roles like the nefarious mastermind of “Die Hard” and the dour master of potions in the “Harry Potter” series.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/obituaries/alan-rickman-dies-at-69.html&#34;,&#34;byline&#34;:&#34;By DAVE ITZKOFF and KATIE ROGERS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:30.564-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:30.564-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Alan Rickman at the Golden Theater in New York City in 2011.&#34;,&#34;copyright&#34;:&#34;Sara Krulwich/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;83c9a570-f5e5-4aeb-b32b-963aba50ae4a&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Ted Cruz Didn’t Report Goldman Sachs Loan in a Senate Race&#34;,&#34;author&#34;:&#34;MIKE McINTIRE&#34;,&#34;abstract&#34;:&#34;As Mr. Cruz tells it, loyalty and sacrifice helped finance his 2012 Senate bid in Texas. Turns out, a Goldman Sachs loan did as well.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-wall-street-loan-senate-bid-2012.html&#34;,&#34;byline&#34;:&#34;By MIKE McINTIRE&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:28.168-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:28.168-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Ted and Heidi Cruz, after he won the runoff for the Republican nomination for a Senate seat from Texas in July 2012.&#34;,&#34;copyright&#34;:&#34;Johnny Hanson/Houston Chronicle, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:651,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1302,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;ba1fa5f0-50b1-4e0c-8cc7-88e993ae108a&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;Example&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;Example abstract&#34;,&#34;url&#34;:&#34;&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:34:52.506-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:34:52.506-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:false}]</pre>
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +        <div id="1top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +                <p><h4> Response Headers</h4></p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td> application/json</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">{&#34;uuid&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;source&#34;:&#34;ssss.comaaaa&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true}</pre>
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +        <div id="2top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +                <p><h4> Response Headers</h4></p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td> application/json</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a&#34;,&#34;article_id&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;is_human&#34;:false,&#34;reader_id&#34;:&#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&#34;,&#34;content_url&#34;:&#34;://&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&#34;,&#34;file_type&#34;:&#34;audio/mp3&#34;,&#34;created_date&#34;:&#34;2016-01-21T13:37:35.731-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&#34;,&#34;email&#34;:&#34;&#34;,&#34;name&#34;:&#34;&#34;}},{&#34;uuid&#34;:&#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T23:40:56.972-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a&#34;,&#34;article_id&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:20.658-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;4ee0acef-a0f7-4676-b249-f8d1e2c8582c&#34;,&#34;article_id&#34;:&#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://ssss.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:09:53.15-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;2d9d119f-2b97-45a6-9952-0a14d7f61ecb&#34;,&#34;article_id&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:05:22.602-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;fd047772-939e-40c4-80c3-82cde4c166f0&#34;,&#34;article_id&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd047772-939e-40c4-80c3-82cde4c166f0.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd047772-939e-40c4-80c3-82cde4c166f0.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:02:57.762-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;28295897-f834-4de9-bd5a-ab3ac782cd02&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:51:02.608-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;3386aeaa-1bc4-4220-bd10-f1c859cb92b6&#34;,&#34;article_id&#34;:&#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://google.com/sadasd/asdasd&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:42:07.389-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;989f74de-e748-4ba0-b601-ec1b98d16dac&#34;,&#34;article_id&#34;:&#34;f52a194d-e449-4315-8dc6-4cb87f407588&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://google.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/989f74de-e748-4ba0-b601-ec1b98d16dac.mp4&#34;,&#34;raw_url&#34;:&#34;&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:37:35.432-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}}]</pre>
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +        <div id="3top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +                <p><h4> Response Headers</h4></p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td> application/json</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">{&#34;uuid&#34;:&#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T23:40:56.972-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}}</pre>
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +        <div id="4top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td>  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                 
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">415</pre>
                                                +
                                                +                <p><h4> Response Headers</h4></p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td> text/plain; charset=utf-8</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">Please provide an mp3 or mp4 audio file
                                                +</pre>
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +        <div id="5top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td>  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +    </div>
                                                +</div>
                                                +</div>
                                                +<hr>
                                                +</body>
                                                +</html>
                                                + +
                                                + + +

                                                Request Headers

                                                + + + + + + + + + + + +
                                                KeyValue
                                                Upgrade-Insecure-Requests 1 +
                                                + + + + +

                                                Response Code

                                                +
                                                200
                                                + + +

                                                Response Body

                                                +
                                                <!DOCTYPE html>
                                                +<html>
                                                +<head lang="en">
                                                +    <title> API Documentation </title>
                                                +    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
                                                +    <script src="http://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
                                                +    <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
                                                +    <link rel="stylesheet" href="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css">
                                                +
                                                +    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
                                                +    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
                                                +
                                                +    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
                                                +    <style type="text/css">
                                                +        body {
                                                +            font-family: 'Roboto', sans-serif;
                                                +        }
                                                +        .hidden {
                                                +            display:none;
                                                +        }
                                                +    </style>
                                                +    <style type="text/css">
                                                +        pre.prettyprint {
                                                +            border: 1px solid #ccc;
                                                +            margin-bottom: 0;
                                                +            padding: 9.5px;
                                                +        }
                                                +    </style>
                                                +    <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
                                                +    <script>
                                                +        hljs.initHighlightingOnLoad();
                                                +        function toggler(divId) {
                                                +           $("#" + divId).toggle();
                                                +        }
                                                +    </script>
                                                +</head>
                                                +<body>
                                                +<nav class="navbar navbar-default navbar-fixed-top">
                                                +    <div class="container-fluid">
                                                +
                                                +        <div class="navbar-header">
                                                +            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
                                                +                    data-target="#bs-example-navbar-collapse-1">
                                                +                <span class="sr-only">Toggle navigation</span>
                                                +                <span class="icon-bar"></span>
                                                +                <span class="icon-bar"></span>
                                                +                <span class="icon-bar"></span>
                                                +            </button>
                                                +            <a class="navbar-brand" href="#">Outloud! Api Documentation</a>
                                                +            <p class="navbar-text">Developed by Gophers at <a href="http://betacraft.co">Betacraft</a></p>
                                                +        </div>
                                                +
                                                +
                                                +    </div>
                                                +
                                                +</nav>
                                                +<div class="container-fluid" style="margin-top: 70px;margin-bottom: 20px;">
                                                +    <div class="container-fluid">
                                                +    <div class="col-md-4">
                                                +        <div class="panel panel-default">
                                                +              <div class="panel-heading">Base Urls</div>
                                                +              <div class="panel-body">
                                                +
                                                +              </div>
                                                +            </div>
                                                +        <ul class="nav nav-pills nav-stacked" role="tablist">
                                                +
                                                +                <li role="presentation"><a href="#0top" role="tab" data-toggle="tab">GET : /api/feed</a></li>
                                                +
                                                +                <li role="presentation"><a href="#1top" role="tab" data-toggle="tab">GET : /api/article/98cf2e56-1576-486d-9451-8322bcd0b94d</a></li>
                                                +
                                                +                <li role="presentation"><a href="#2top" role="tab" data-toggle="tab">GET : /api/readings</a></li>
                                                +
                                                +                <li role="presentation"><a href="#3top" role="tab" data-toggle="tab">GET : /api/reading/2132ccf3-a314-4b33-b647-1f3ebcd9256d</a></li>
                                                +
                                                +                <li role="presentation"><a href="#4top" role="tab" data-toggle="tab">POST : /api/reading/new</a></li>
                                                +
                                                +                <li role="presentation"><a href="#5top" role="tab" data-toggle="tab">POST : /api/channel/add</a></li>
                                                +
                                                +                <li role="presentation"><a href="#6top" role="tab" data-toggle="tab">GET : /api</a></li>
                                                +
                                                +        <ul>
                                                +    </div>
                                                +    <div class="col-md-8 tab-content">
                                                +
                                                +        <div id="0top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +                <p><h4> Response Headers</h4></p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td> application/json</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;source&#34;:&#34;ssss.comaaaa&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&#34;,&#34;source&#34;:&#34;ssss.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:09:51.342-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:09:51.342-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;://a.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:02:46.982-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:02:46.982-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;://a&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:50:52.131-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:50:52.131-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&#34;,&#34;source&#34;:&#34;google.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://google.com/sadasd/asdasd&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:41:56.841-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:41:56.841-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;f52a194d-e449-4315-8dc6-4cb87f407588&#34;,&#34;source&#34;:&#34;google.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://google.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:37:26.731-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:37:26.731-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true}]</pre>
                                                +
                                                +                <hr>
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +                <p> <H4> URL Params </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>is_read</td>
                                                +                        <td> false</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +                <p><h4> Response Headers</h4></p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td> application/json</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;73f9b780-10d3-45e8-946b-2de9541e05e0&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Brutalism of Ted Cruz&#34;,&#34;author&#34;:&#34;DAVID BROOKS&#34;,&#34;abstract&#34;:&#34;The Texas Republican lacks the Christian virtues many evangelical voters may expect.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/12/opinion/the-brutalism-of-ted-cruz.html&#34;,&#34;byline&#34;:&#34;By DAVID BROOKS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T14:12:58.323-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T14:12:58.323-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-12&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Eric Thayer for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:132,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:710,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1419,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;36ecf666-8d81-4a37-be59-a304eef298bc&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;Iran’s Swift Release of U.S. Sailors Hailed as a Sign of Warmer Relations&#34;,&#34;author&#34;:&#34;DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&#34;,&#34;abstract&#34;:&#34;It remained unclear who decided to release the sailors or how their two patrol boats ended up in Iranian territorial waters.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/world/middleeast/iran-navy-crew-release.html&#34;,&#34;byline&#34;:&#34;By DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:58.979-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:58.979-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;A photo released by the Revolutionary Guards on Wednesday shows detained American sailors in an undisclosed location in Iran.&#34;,&#34;copyright&#34;:&#34;Sepahnews, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:107,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-sfSpan-v2.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:576,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1125,&#34;width&#34;:2000},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;79a207ef-6afc-4238-be80-858ed266e550&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Arts&#34;,&#34;title&#34;:&#34;How David Bowie Challenged MTV on Race&#34;,&#34;author&#34;:&#34;WESLEY MORRIS&#34;,&#34;abstract&#34;:&#34;A candid exchange in 1983 is sobering for its continued relevance and useful for what it says about Mr. Bowie’s sense of social awareness.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/arts/music/how-david-bowie-used-his-stardom-and-race-to-challenge-mtv.html&#34;,&#34;byline&#34;:&#34;By WESLEY MORRIS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:57.747-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:57.747-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;David Bowie at Madison Square Garden in 1976.&#34;,&#34;copyright&#34;:&#34;Allan Tannenbaum/Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:379,&#34;width&#34;:594},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:379,&#34;width&#34;:594},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;c119f1f8-dfc5-43dd-b0a3-eac519e8e507&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Arts&#34;,&#34;title&#34;:&#34;Iggy Pop on David Bowie: ‘He Resurrected Me’&#34;,&#34;author&#34;:&#34;JON PARELES&#34;,&#34;abstract&#34;:&#34;In an interview, the Detroit rocker, who collaborated with Mr. Bowie in the 1970s, talked about their friendship and their work through the years.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/arts/music/david-bowie-iggy-pop.html&#34;,&#34;byline&#34;:&#34;By JON PARELES&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:56.43-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:56.43-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Iggy Pop, left, and David Bowie, during the tour for Mr. Pop’s 1977 album “The Idiot.”&#34;,&#34;copyright&#34;:&#34;Rex Features, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:131,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:704,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1408,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;57cfab66-99a1-473d-bec2-f1a2da5c259b&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;El Chapo Enticed by Star Power of Mexican Actress, Not Sean Penn&#34;,&#34;author&#34;:&#34;PAULINA VILLEGAS&#34;,&#34;abstract&#34;:&#34;Conversations between the drug lord Joaquín Guzmán Loera and the actress Kate del Castillo offer a window into the psyche of one of the world’s most wanted criminals.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/world/americas/el-chapo-enticed-by-star-power-of-mexican-tv-actress-not-sean-penn.html&#34;,&#34;byline&#34;:&#34;By PAULINA VILLEGAS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:53.698-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:53.698-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;The actress Kate del Castillo in Hollywood in November.&#34;,&#34;copyright&#34;:&#34;Mark Ralston/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:209,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:1024,&#34;width&#34;:933},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:2048,&#34;width&#34;:1866},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;22dd6af8-0ea9-4cfb-9422-74c5e896d65f&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;Politics: Everything’s Relative&#34;,&#34;author&#34;:&#34;GAIL COLLINS&#34;,&#34;abstract&#34;:&#34;Here are rules for dealing with family members showing up in the presidential race, like when to give them a break and when to go for the jugular.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/politics-everythings-relative.html&#34;,&#34;byline&#34;:&#34;By GAIL COLLINS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:52.612-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:52.612-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Earl Wilson/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbStandard-v5.png&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-articleInline-v5.png&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-jumbo-v5.png&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:228,&#34;width&#34;:342},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-superJumbo-v5.png&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:228,&#34;width&#34;:342},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbLarge-v7.png&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-mediumThreeByTwo210-v5.png&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;686c0ea7-af91-48de-b6db-2c7035408d31&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;Jakarta Attack Kills 2, Raising Fears of Growing ISIS Reach&#34;,&#34;author&#34;:&#34;JOE COCHRANE and THOMAS FULLER&#34;,&#34;abstract&#34;:&#34;The two civilians killed in the explosions and gunfire were a Canadian and an Indonesian, senior officials reported. Five assailants were also killed.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/world/asia/jakarta-explosion.html&#34;,&#34;byline&#34;:&#34;By JOE COCHRANE and THOMAS FULLER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:49.387-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:49.387-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Bay Ismoyo/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:139,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:748,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1496,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;45a78a90-74dc-4958-aef4-d1f3e695c36a&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Other Obama Legacy&#34;,&#34;author&#34;:&#34;CHARLES M. BLOW&#34;,&#34;abstract&#34;:&#34;For many young people, the first president they consciously registered was a black man.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/the-other-obama-legacy.html&#34;,&#34;byline&#34;:&#34;By CHARLES M. BLOW&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:47.456-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:47.456-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;President Obama bends over so the son of a White House staff member can touch his hair during a visit to the Oval Office.&#34;,&#34;copyright&#34;:&#34;Pete Souza/The White House&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:128,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1012},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1012},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;cbb5b09c-bf63-44f0-9bda-c5443b435c89&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Tempting of Bernie Sanders&#34;,&#34;author&#34;:&#34;ROSS DOUTHAT&#34;,&#34;abstract&#34;:&#34;Is he ruthless enough to win?&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/the-tempting-of-bernie-sanders.html&#34;,&#34;byline&#34;:&#34;By ROSS DOUTHAT&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:46.422-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:46.422-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Scott Morgan/Reuters&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:264,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:653,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1305,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;2e8d771a-4d16-4421-83ea-92a599497890&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Food&#34;,&#34;title&#34;:&#34;At Thomas Keller’s Per Se, Slips and Stumbles&#34;,&#34;author&#34;:&#34;PETE WELLS&#34;,&#34;abstract&#34;:&#34;A new look at one of the nation’s landmark restaurants.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/13/dining/pete-wells-per-se-review.html&#34;,&#34;byline&#34;:&#34;By PETE WELLS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:41.353-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:41.353-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-13&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Karsten Moran for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square320-v2.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-sfSpan-v2.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:684,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1367,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square640-v2.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo210-v2.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo440-v2.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;7efce391-6d6f-4153-9bd2-b4022b06ad7d&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;U.S. Will Track Secret Buyers of Luxury Real Estate&#34;,&#34;author&#34;:&#34;LOUISE STORY&#34;,&#34;abstract&#34;:&#34;The initiative will start in Manhattan and Miami-Dade County as part of a broader federal effort to focus on money laundering in real estate.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/us-will-track-secret-buyers-of-luxury-real-estate.html&#34;,&#34;byline&#34;:&#34;By LOUISE STORY&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:40.794-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:40.794-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Condominiums at the Time Warner Center were found to have a number of hidden owners over a decade who had been the subjects of government investigations.&#34;,&#34;copyright&#34;:&#34;Edward Caruso for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:152,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:819,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1639,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;9bfb4871-a656-4e31-a53f-f97cfeaa48bf&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Business Day&#34;,&#34;title&#34;:&#34;Al Jazeera America to Shut Down by April&#34;,&#34;author&#34;:&#34;JOHN KOBLIN&#34;,&#34;abstract&#34;:&#34;The cable news outlet, which began broadcasting in August 2013, said it would expand its digital presence in the United States.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/business/media/al-jazeera-america-to-shut-down-in-april.html&#34;,&#34;byline&#34;:&#34;By JOHN KOBLIN&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:38.092-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:38.092-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Al Jazeera America debuted in August 2013 after it bought Al Gore’s Current TV for $500 million.&#34;,&#34;copyright&#34;:&#34;Suzanne DeChillo/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;7f138454-c7cf-4667-8135-b46f4bd0cdd4&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Powerball Has 3 Big Winners, in California, Florida and Tennessee&#34;,&#34;author&#34;:&#34;ASHLEY SOUTHALL and LIAM STACK&#34;,&#34;abstract&#34;:&#34;The winners will divide a record $1.5 billion jackpot, with a cash option of $983.5 million. In addition, eight tickets that won $2 million were sold in seven states.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/numbers-chosen-for-powerball-with-biggest-jackpot-ever.html&#34;,&#34;byline&#34;:&#34;By ASHLEY SOUTHALL and LIAM STACK&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:36.999-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:36.999-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;People lined up to buy Powerball tickets in Hawthorne, Calif., on Wednesday. Record sales drove up the largest jackpot in United States history to $1.5 billion.&#34;,&#34;copyright&#34;:&#34;Mark Ralston/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:137,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:740,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1480,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;12239fa3-1195-4791-adfd-b8070fbc715b&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;Why I Will Never Vote for Donald Trump&#34;,&#34;author&#34;:&#34;PETER WEHNER&#34;,&#34;abstract&#34;:&#34;Party loyalty has limits. Mr. Trump has altered the political equation because he has altered the moral equation.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/why-i-will-never-vote-for-donald-trump.html&#34;,&#34;byline&#34;:&#34;By PETER WEHNER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:35.752-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:35.752-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;West Des Moines, Iowa&#34;,&#34;copyright&#34;:&#34;Jae C. Hong/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1364,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;34703da9-65ac-402c-91bd-051927152b92&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Ted Cruz Starts to Crack G.O.P. Establishment’s Wall of Opposition&#34;,&#34;author&#34;:&#34;JONATHAN MARTIN&#34;,&#34;abstract&#34;:&#34;Mr. Cruz, a candidate who built his name challenging his party’s leadership, has begun wooing entrenched power brokers, and some of them are listening.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-starts-to-crack-gop-establishments-wall-of-opposition.html&#34;,&#34;byline&#34;:&#34;By JONATHAN MARTIN&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:34.653-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:34.653-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Senator Ted Cruz on the campaign trail in Hudson, N.H., on Tuesday. He has quietly begun wooing some of the party’s most entrenched donors and officials.&#34;,&#34;copyright&#34;:&#34;Matt Rourke/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square320-v2.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square640-v2.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;b04d9dfc-0644-41a6-ba3a-799d88fb26a5&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Movies&#34;,&#34;title&#34;:&#34;Oscar Nominations 2016&#34;,&#34;author&#34;:&#34;BROOKS BARNES and MICHAEL CIEPLY&#34;,&#34;abstract&#34;:&#34;“The Revenant” and “Mad Max: Fury Road” were showered with honors by the Academy of Motion Picture Arts and Sciences, picking up Oscar nominations for best picture and best director.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/movies/oscar-nominations.html&#34;,&#34;byline&#34;:&#34;By BROOKS BARNES and MICHAEL CIEPLY&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:32.864-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:32.864-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;“The Revenant” leads this year’s Oscar nominations with 12.&#34;,&#34;copyright&#34;:&#34;20th Century Fox&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:79,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:428,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:855,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;8c495ce4-7c9d-4eec-af4a-6e199d7c6b97&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;The Upshot&#34;,&#34;title&#34;:&#34;Dear Powerball Winner: Take Our Advice and Take the Annuity&#34;,&#34;author&#34;:&#34;JOSH BARRO&#34;,&#34;abstract&#34;:&#34;Comparing payout options is fun to imagine, but also a useful way to think about taxes, investment opportunities and human nature.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/13/upshot/dear-powerball-winner-take-our-advice-and-take-the-annuity.html&#34;,&#34;byline&#34;:&#34;By JOSH BARRO&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:30.919-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:30.919-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-13&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Actually, it’s either $1.5 billion (which the sign cannot accommodate) or $930 million, depending on how you choose to take your winnings.&#34;,&#34;copyright&#34;:&#34;Seth Wenig/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;e9590738-be1f-411e-871c-da5e243a9a0d&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Movies&#34;,&#34;title&#34;:&#34;Alan Rickman, Actor Known for ‘Harry Potter’ and ‘Die Hard,’ Dies at 69&#34;,&#34;author&#34;:&#34;DAVE ITZKOFF and KATIE ROGERS&#34;,&#34;abstract&#34;:&#34;The British actor brought an erudite dignity to film roles like the nefarious mastermind of “Die Hard” and the dour master of potions in the “Harry Potter” series.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/obituaries/alan-rickman-dies-at-69.html&#34;,&#34;byline&#34;:&#34;By DAVE ITZKOFF and KATIE ROGERS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:30.564-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:30.564-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Alan Rickman at the Golden Theater in New York City in 2011.&#34;,&#34;copyright&#34;:&#34;Sara Krulwich/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;83c9a570-f5e5-4aeb-b32b-963aba50ae4a&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Ted Cruz Didn’t Report Goldman Sachs Loan in a Senate Race&#34;,&#34;author&#34;:&#34;MIKE McINTIRE&#34;,&#34;abstract&#34;:&#34;As Mr. Cruz tells it, loyalty and sacrifice helped finance his 2012 Senate bid in Texas. Turns out, a Goldman Sachs loan did as well.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-wall-street-loan-senate-bid-2012.html&#34;,&#34;byline&#34;:&#34;By MIKE McINTIRE&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:28.168-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:28.168-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Ted and Heidi Cruz, after he won the runoff for the Republican nomination for a Senate seat from Texas in July 2012.&#34;,&#34;copyright&#34;:&#34;Johnny Hanson/Houston Chronicle, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:651,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1302,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;ba1fa5f0-50b1-4e0c-8cc7-88e993ae108a&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;Example&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;Example abstract&#34;,&#34;url&#34;:&#34;&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:34:52.506-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:34:52.506-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:false}]</pre>
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +        <div id="1top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +                <p><h4> Response Headers</h4></p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td> application/json</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">{&#34;uuid&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;source&#34;:&#34;ssss.comaaaa&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true}</pre>
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +        <div id="2top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +                <p><h4> Response Headers</h4></p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td> application/json</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a&#34;,&#34;article_id&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;is_human&#34;:false,&#34;reader_id&#34;:&#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&#34;,&#34;content_url&#34;:&#34;://&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&#34;,&#34;file_type&#34;:&#34;audio/mp3&#34;,&#34;created_date&#34;:&#34;2016-01-21T13:37:35.731-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&#34;,&#34;email&#34;:&#34;&#34;,&#34;name&#34;:&#34;&#34;}},{&#34;uuid&#34;:&#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T23:40:56.972-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a&#34;,&#34;article_id&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:20.658-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;4ee0acef-a0f7-4676-b249-f8d1e2c8582c&#34;,&#34;article_id&#34;:&#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://ssss.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:09:53.15-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;2d9d119f-2b97-45a6-9952-0a14d7f61ecb&#34;,&#34;article_id&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:05:22.602-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;fd047772-939e-40c4-80c3-82cde4c166f0&#34;,&#34;article_id&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd047772-939e-40c4-80c3-82cde4c166f0.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd047772-939e-40c4-80c3-82cde4c166f0.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:02:57.762-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;28295897-f834-4de9-bd5a-ab3ac782cd02&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:51:02.608-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;3386aeaa-1bc4-4220-bd10-f1c859cb92b6&#34;,&#34;article_id&#34;:&#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://google.com/sadasd/asdasd&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:42:07.389-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;989f74de-e748-4ba0-b601-ec1b98d16dac&#34;,&#34;article_id&#34;:&#34;f52a194d-e449-4315-8dc6-4cb87f407588&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://google.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/989f74de-e748-4ba0-b601-ec1b98d16dac.mp4&#34;,&#34;raw_url&#34;:&#34;&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:37:35.432-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}}]</pre>
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +        <div id="3top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +                <p><h4> Response Headers</h4></p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td> application/json</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">{&#34;uuid&#34;:&#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T23:40:56.972-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}}</pre>
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +        <div id="4top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td>  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">415</pre>
                                                +
                                                +                <p><h4> Response Headers</h4></p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td> text/plain; charset=utf-8</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">Please provide an mp3 or mp4 audio file
                                                +</pre>
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +        <div id="5top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Content-Type</td>
                                                +                        <td>  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Referer</td>
                                                +                        <td>
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +        <div id="6top"  role="tabpanel" class="tab-pane col-md-10">
                                                +
                                                +
                                                +                <p> <H4> Request Headers </H4> </p>
                                                +                <table class="table table-bordered table-striped">
                                                +                    <tr>
                                                +                        <th>Key</th>
                                                +                        <th>Value</th>
                                                +                    </tr>
                                                +
                                                +                    <tr>
                                                +                        <td>Upgrade-Insecure-Requests</td>
                                                +                        <td>  1
                                                +</td>
                                                +                    </tr>
                                                +
                                                +                </table>
                                                +
                                                +
                                                +
                                                +
                                                +                <p><h4> Response Code</h4></p>
                                                +                <pre class="prettyprint lang-json">200</pre>
                                                +
                                                +
                                                +                <p> <H4> Response Body </H4> </p>
                                                +                <pre class="prettyprint lang-json">&lt;!DOCTYPE html&gt;
                                                +&lt;html&gt;
                                                +&lt;head lang=&#34;en&#34;&gt;
                                                +    &lt;title&gt; API Documentation &lt;/title&gt;
                                                +    &lt;link rel=&#34;stylesheet&#34; href=&#34;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css&#34;&gt;
                                                +    &lt;script src=&#34;http://google-code-prettify.googlecode.com/svn/loader/run_prettify.js&#34;&gt;&lt;/script&gt;
                                                +    &lt;link href=&#39;http://fonts.googleapis.com/css?family=Roboto&#39; rel=&#39;stylesheet&#39; type=&#39;text/css&#39;&gt;
                                                +    &lt;link rel=&#34;stylesheet&#34; href=&#34;http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css&#34;&gt;
                                                +
                                                +    &lt;link rel=&#34;stylesheet&#34; href=&#34;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css&#34;&gt;
                                                +    &lt;script src=&#34;https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js&#34;&gt;&lt;/script&gt;
                                                +
                                                +    &lt;script src=&#34;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js&#34;&gt;&lt;/script&gt;
                                                +    &lt;style type=&#34;text/css&#34;&gt;
                                                +        body {
                                                +            font-family: &#39;Roboto&#39;, sans-serif;
                                                +        }
                                                +        .hidden {
                                                +            display:none;
                                                +        }
                                                +    &lt;/style&gt;
                                                +    &lt;style type=&#34;text/css&#34;&gt;
                                                +        pre.prettyprint {
                                                +            border: 1px solid #ccc;
                                                +            margin-bottom: 0;
                                                +            padding: 9.5px;
                                                +        }
                                                +    &lt;/style&gt;
                                                +    &lt;script src=&#34;https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js&#34;&gt;&lt;/script&gt;
                                                +    &lt;script&gt;
                                                +        hljs.initHighlightingOnLoad();
                                                +        function toggler(divId) {
                                                +           $(&#34;#&#34; &#43; divId).toggle();
                                                +        }
                                                +    &lt;/script&gt;
                                                +&lt;/head&gt;
                                                +&lt;body&gt;
                                                +&lt;nav class=&#34;navbar navbar-default navbar-fixed-top&#34;&gt;
                                                +    &lt;div class=&#34;container-fluid&#34;&gt;
                                                +
                                                +        &lt;div class=&#34;navbar-header&#34;&gt;
                                                +            &lt;button type=&#34;button&#34; class=&#34;navbar-toggle collapsed&#34; data-toggle=&#34;collapse&#34;
                                                +                    data-target=&#34;#bs-example-navbar-collapse-1&#34;&gt;
                                                +                &lt;span class=&#34;sr-only&#34;&gt;Toggle navigation&lt;/span&gt;
                                                +                &lt;span class=&#34;icon-bar&#34;&gt;&lt;/span&gt;
                                                +                &lt;span class=&#34;icon-bar&#34;&gt;&lt;/span&gt;
                                                +                &lt;span class=&#34;icon-bar&#34;&gt;&lt;/span&gt;
                                                +            &lt;/button&gt;
                                                +            &lt;a class=&#34;navbar-brand&#34; href=&#34;#&#34;&gt;Outloud! Api Documentation&lt;/a&gt;
                                                +            &lt;p class=&#34;navbar-text&#34;&gt;Developed by Gophers at &lt;a href=&#34;http://betacraft.co&#34;&gt;Betacraft&lt;/a&gt;&lt;/p&gt;
                                                +        &lt;/div&gt;
                                                +
                                                +
                                                +    &lt;/div&gt;
                                                +
                                                +&lt;/nav&gt;
                                                +&lt;div class=&#34;container-fluid&#34; style=&#34;margin-top: 70px;margin-bottom: 20px;&#34;&gt;
                                                +    &lt;div class=&#34;container-fluid&#34;&gt;
                                                +    &lt;div class=&#34;col-md-4&#34;&gt;
                                                +        &lt;div class=&#34;panel panel-default&#34;&gt;
                                                +              &lt;div class=&#34;panel-heading&#34;&gt;Base Urls&lt;/div&gt;
                                                +              &lt;div class=&#34;panel-body&#34;&gt;
                                                +
                                                +              &lt;/div&gt;
                                                +            &lt;/div&gt;
                                                +        &lt;ul class=&#34;nav nav-pills nav-stacked&#34; role=&#34;tablist&#34;&gt;
                                                +
                                                +                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#0top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;GET : /api/feed&lt;/a&gt;&lt;/li&gt;
                                                +
                                                +                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#1top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;GET : /api/article/98cf2e56-1576-486d-9451-8322bcd0b94d&lt;/a&gt;&lt;/li&gt;
                                                +
                                                +                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#2top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;GET : /api/readings&lt;/a&gt;&lt;/li&gt;
                                                +
                                                +                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#3top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;GET : /api/reading/2132ccf3-a314-4b33-b647-1f3ebcd9256d&lt;/a&gt;&lt;/li&gt;
                                                +
                                                +                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#4top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;POST : /api/reading/new&lt;/a&gt;&lt;/li&gt;
                                                +
                                                +                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#5top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;POST : /api/channel/add&lt;/a&gt;&lt;/li&gt;
                                                +
                                                +        &lt;ul&gt;
                                                +    &lt;/div&gt;
                                                +    &lt;div class=&#34;col-md-8 tab-content&#34;&gt;
                                                +
                                                +        &lt;div id=&#34;0top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Referer&lt;/td&gt;
                                                +                        &lt;td&gt;
                                                +&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                +                        &lt;td&gt; application/json&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;[{&amp;#34;uuid&amp;#34;:&amp;#34;98cf2e56-1576-486d-9451-8322bcd0b94d&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;ssss.comaaaa&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://ssss.comaaaa&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:16:10.094-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:16:10.094-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;ssss.com&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://ssss.com&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:09:51.342-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:09:51.342-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;://a.com&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:02:46.982-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:02:46.982-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;://a&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T15:50:52.131-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:50:52.131-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;google.com&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://google.com/sadasd/asdasd&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T15:41:56.841-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:41:56.841-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;f52a194d-e449-4315-8dc6-4cb87f407588&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;google.com&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://google.com&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T15:37:26.731-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:37:26.731-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true}]&lt;/pre&gt;
                                                +
                                                +                &lt;hr&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Referer&lt;/td&gt;
                                                +                        &lt;td&gt;
                                                +&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; URL Params &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;is_read&lt;/td&gt;
                                                +                        &lt;td&gt; false&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                +                        &lt;td&gt; application/json&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;[{&amp;#34;uuid&amp;#34;:&amp;#34;73f9b780-10d3-45e8-946b-2de9541e05e0&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;The Brutalism of Ted Cruz&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;DAVID BROOKS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The Texas Republican lacks the Christian virtues many evangelical voters may expect.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/12/opinion/the-brutalism-of-ted-cruz.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By DAVID BROOKS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T14:12:58.323-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T14:12:58.323-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-12&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Eric Thayer for The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:132,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:710,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1419,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;36ecf666-8d81-4a37-be59-a304eef298bc&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;World&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Iran’s Swift Release of U.S. Sailors Hailed as a Sign of Warmer Relations&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;It remained unclear who decided to release the sailors or how their two patrol boats ended up in Iranian territorial waters.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/world/middleeast/iran-navy-crew-release.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:58.979-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:58.979-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;A photo released by the Revolutionary Guards on Wednesday shows detained American sailors in an undisclosed location in Iran.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Sepahnews, via Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbStandard-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:107,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-sfSpan-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:576,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1125,&amp;#34;width&amp;#34;:2000},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbLarge-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;79a207ef-6afc-4238-be80-858ed266e550&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Arts&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;How David Bowie Challenged MTV on Race&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;WESLEY MORRIS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;A candid exchange in 1983 is sobering for its continued relevance and useful for what it says about Mr. Bowie’s sense of social awareness.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/arts/music/how-david-bowie-used-his-stardom-and-race-to-challenge-mtv.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By WESLEY MORRIS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:57.747-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:57.747-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;David Bowie at Madison Square Garden in 1976.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Allan Tannenbaum/Getty Images&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:121,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:379,&amp;#34;width&amp;#34;:594},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:379,&amp;#34;width&amp;#34;:594},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;c119f1f8-dfc5-43dd-b0a3-eac519e8e507&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Arts&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Iggy Pop on David Bowie: ‘He Resurrected Me’&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JON PARELES&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;In an interview, the Detroit rocker, who collaborated with Mr. Bowie in the 1970s, talked about their friendship and their work through the years.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/arts/music/david-bowie-iggy-pop.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JON PARELES&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:56.43-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:56.43-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Iggy Pop, left, and David Bowie, during the tour for Mr. Pop’s 1977 album “The Idiot.”&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Rex Features, via Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:131,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:704,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1408,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;57cfab66-99a1-473d-bec2-f1a2da5c259b&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;World&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;El Chapo Enticed by Star Power of Mexican Actress, Not Sean Penn&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;PAULINA VILLEGAS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Conversations between the drug lord Joaquín Guzmán Loera and the actress Kate del Castillo offer a window into the psyche of one of the world’s most wanted criminals.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/world/americas/el-chapo-enticed-by-star-power-of-mexican-tv-actress-not-sean-penn.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By PAULINA VILLEGAS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:53.698-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:53.698-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;The actress Kate del Castillo in Hollywood in November.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Mark Ralston/Agence France-Presse — Getty Images&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:209,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:1024,&amp;#34;width&amp;#34;:933},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:2048,&amp;#34;width&amp;#34;:1866},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;22dd6af8-0ea9-4cfb-9422-74c5e896d65f&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Politics: Everything’s Relative&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;GAIL COLLINS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Here are rules for dealing with family members showing up in the presidential race, like when to give them a break and when to go for the jugular.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/opinion/politics-everythings-relative.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By GAIL COLLINS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:52.612-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:52.612-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Earl Wilson/The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbStandard-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-articleInline-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-jumbo-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:228,&amp;#34;width&amp;#34;:342},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-superJumbo-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:228,&amp;#34;width&amp;#34;:342},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbLarge-v7.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-mediumThreeByTwo210-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;686c0ea7-af91-48de-b6db-2c7035408d31&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;World&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Jakarta Attack Kills 2, Raising Fears of Growing ISIS Reach&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JOE COCHRANE and THOMAS FULLER&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The two civilians killed in the explosions and gunfire were a Canadian and an Indonesian, senior officials reported. Five assailants were also killed.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/15/world/asia/jakarta-explosion.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JOE COCHRANE and THOMAS FULLER&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:49.387-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:49.387-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-15&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Bay Ismoyo/Agence France-Presse — Getty Images&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:139,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:748,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1496,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;45a78a90-74dc-4958-aef4-d1f3e695c36a&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;The Other Obama Legacy&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;CHARLES M. BLOW&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;For many young people, the first president they consciously registered was a black man.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/opinion/the-other-obama-legacy.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By CHARLES M. BLOW&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:47.456-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:47.456-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;President Obama bends over so the son of a White House staff member can touch his hair during a visit to the Oval Office.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Pete Souza/The White House&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:128,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:682,&amp;#34;width&amp;#34;:1012},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:682,&amp;#34;width&amp;#34;:1012},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;cbb5b09c-bf63-44f0-9bda-c5443b435c89&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;The Tempting of Bernie Sanders&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;ROSS DOUTHAT&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Is he ruthless enough to win?&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/the-tempting-of-bernie-sanders.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By ROSS DOUTHAT&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:46.422-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:46.422-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Scott Morgan/Reuters&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:121,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:264,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:653,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1305,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;2e8d771a-4d16-4421-83ea-92a599497890&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Food&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;At Thomas Keller’s Per Se, Slips and Stumbles&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;PETE WELLS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;A new look at one of the nation’s landmark restaurants.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/13/dining/pete-wells-per-se-review.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By PETE WELLS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:41.353-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:41.353-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-13&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Karsten Moran for The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square320-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbStandard-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-sfSpan-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:684,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1367,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square640-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbLarge-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo210-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo440-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;7efce391-6d6f-4153-9bd2-b4022b06ad7d&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;U.S.&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;U.S. Will Track Secret Buyers of Luxury Real Estate&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;LOUISE STORY&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The initiative will start in Manhattan and Miami-Dade County as part of a broader federal effort to focus on money laundering in real estate.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/us/us-will-track-secret-buyers-of-luxury-real-estate.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By LOUISE STORY&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:40.794-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:40.794-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Condominiums at the Time Warner Center were found to have a number of hidden owners over a decade who had been the subjects of government investigations.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Edward Caruso for The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:152,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:819,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1639,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;9bfb4871-a656-4e31-a53f-f97cfeaa48bf&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Business Day&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Al Jazeera America to Shut Down by April&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JOHN KOBLIN&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The cable news outlet, which began broadcasting in August 2013, said it would expand its digital presence in the United States.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/business/media/al-jazeera-america-to-shut-down-in-april.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JOHN KOBLIN&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:38.092-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:38.092-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Al Jazeera America debuted in August 2013 after it bought Al Gore’s Current TV for $500 million.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Suzanne DeChillo/The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:683,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1365,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;7f138454-c7cf-4667-8135-b46f4bd0cdd4&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;U.S.&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Powerball Has 3 Big Winners, in California, Florida and Tennessee&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;ASHLEY SOUTHALL and LIAM STACK&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The winners will divide a record $1.5 billion jackpot, with a cash option of $983.5 million. In addition, eight tickets that won $2 million were sold in seven states.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/us/numbers-chosen-for-powerball-with-biggest-jackpot-ever.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By ASHLEY SOUTHALL and LIAM STACK&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:36.999-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:36.999-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;People lined up to buy Powerball tickets in Hawthorne, Calif., on Wednesday. Record sales drove up the largest jackpot in United States history to $1.5 billion.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Mark Ralston/Agence France-Presse — Getty Images&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:137,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:740,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1480,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;12239fa3-1195-4791-adfd-b8070fbc715b&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Why I Will Never Vote for Donald Trump&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;PETER WEHNER&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Party loyalty has limits. Mr. Trump has altered the political equation because he has altered the moral equation.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/why-i-will-never-vote-for-donald-trump.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By PETER WEHNER&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:35.752-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:35.752-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;West Des Moines, Iowa&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Jae C. Hong/Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:682,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1364,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;34703da9-65ac-402c-91bd-051927152b92&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;U.S.&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Ted Cruz Starts to Crack G.O.P. Establishment’s Wall of Opposition&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JONATHAN MARTIN&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Mr. Cruz, a candidate who built his name challenging his party’s leadership, has begun wooing entrenched power brokers, and some of them are listening.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-starts-to-crack-gop-establishments-wall-of-opposition.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JONATHAN MARTIN&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:34.653-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:34.653-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Senator Ted Cruz on the campaign trail in Hudson, N.H., on Tuesday. He has quietly begun wooing some of the party’s most entrenched donors and officials.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Matt Rourke/Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square320-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbStandard-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:683,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1365,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square640-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbLarge-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;b04d9dfc-0644-41a6-ba3a-799d88fb26a5&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Movies&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Oscar Nominations 2016&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;BROOKS BARNES and MICHAEL CIEPLY&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;“The Revenant” and “Mad Max: Fury Road” were showered with honors by the Academy of Motion Picture Arts and Sciences, picking up Oscar nominations for best picture and best director.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/15/movies/oscar-nominations.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By BROOKS BARNES and MICHAEL CIEPLY&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:32.864-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:32.864-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-15&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;“The Revenant” leads this year’s Oscar nominations with 12.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;20th Century Fox&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:79,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:428,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:855,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;8c495ce4-7c9d-4eec-af4a-6e199d7c6b97&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;The Upshot&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Dear Powerball Winner: Take Our Advice and Take the Annuity&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JOSH BARRO&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Comparing payout options is fun to imagine, but also a useful way to think about taxes, investment opportunities and human nature.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/13/upshot/dear-powerball-winner-take-our-advice-and-take-the-annuity.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JOSH BARRO&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:30.919-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:30.919-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-13&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Actually, it’s either $1.5 billion (which the sign cannot accommodate) or $930 million, depending on how you choose to take your winnings.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Seth Wenig/Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:683,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1365,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;e9590738-be1f-411e-871c-da5e243a9a0d&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Movies&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Alan Rickman, Actor Known for ‘Harry Potter’ and ‘Die Hard,’ Dies at 69&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;DAVE ITZKOFF and KATIE ROGERS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The British actor brought an erudite dignity to film roles like the nefarious mastermind of “Die Hard” and the dour master of potions in the “Harry Potter” series.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/15/obituaries/alan-rickman-dies-at-69.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By DAVE ITZKOFF and KATIE ROGERS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:30.564-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:30.564-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-15&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Alan Rickman at the Golden Theater in New York City in 2011.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Sara Krulwich/The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:683,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1365,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;83c9a570-f5e5-4aeb-b32b-963aba50ae4a&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;U.S.&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Ted Cruz Didn’t Report Goldman Sachs Loan in a Senate Race&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;MIKE McINTIRE&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;As Mr. Cruz tells it, loyalty and sacrifice helped finance his 2012 Senate bid in Texas. Turns out, a Goldman Sachs loan did as well.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-wall-street-loan-senate-bid-2012.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By MIKE McINTIRE&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:28.168-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:28.168-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Ted and Heidi Cruz, after he won the runoff for the Republican nomination for a Senate seat from Texas in July 2012.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Johnny Hanson/Houston Chronicle, via Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:121,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:651,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1302,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;ba1fa5f0-50b1-4e0c-8cc7-88e993ae108a&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Example&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Example abstract&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:34:52.506-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:34:52.506-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:false}]&lt;/pre&gt;
                                                +
                                                +                &lt;hr&gt;
                                                +
                                                +        &lt;/div&gt;
                                                +
                                                +        &lt;div id=&#34;1top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Referer&lt;/td&gt;
                                                +                        &lt;td&gt;
                                                +&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                +                        &lt;td&gt; application/json&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;{&amp;#34;uuid&amp;#34;:&amp;#34;98cf2e56-1576-486d-9451-8322bcd0b94d&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;ssss.comaaaa&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://ssss.comaaaa&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:16:10.094-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:16:10.094-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true}&lt;/pre&gt;
                                                +
                                                +                &lt;hr&gt;
                                                +
                                                +        &lt;/div&gt;
                                                +
                                                +        &lt;div id=&#34;2top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Referer&lt;/td&gt;
                                                +                        &lt;td&gt;
                                                +&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                +                        &lt;td&gt; application/json&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;[{&amp;#34;uuid&amp;#34;:&amp;#34;fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;98cf2e56-1576-486d-9451-8322bcd0b94d&amp;#34;,&amp;#34;is_human&amp;#34;:false,&amp;#34;reader_id&amp;#34;:&amp;#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/mp3&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-21T13:37:35.731-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T23:40:56.972-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;98cf2e56-1576-486d-9451-8322bcd0b94d&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;http://ssss.comaaaa&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:16:20.658-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;4ee0acef-a0f7-4676-b249-f8d1e2c8582c&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;http://ssss.com&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:09:53.15-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;2d9d119f-2b97-45a6-9952-0a14d7f61ecb&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a.com&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:05:22.602-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;fd047772-939e-40c4-80c3-82cde4c166f0&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a.com&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd047772-939e-40c4-80c3-82cde4c166f0.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd047772-939e-40c4-80c3-82cde4c166f0.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:02:57.762-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;28295897-f834-4de9-bd5a-ab3ac782cd02&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:51:02.608-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;3386aeaa-1bc4-4220-bd10-f1c859cb92b6&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;http://google.com/sadasd/asdasd&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:42:07.389-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;989f74de-e748-4ba0-b601-ec1b98d16dac&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;f52a194d-e449-4315-8dc6-4cb87f407588&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;http://google.com&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/989f74de-e748-4ba0-b601-ec1b98d16dac.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:37:35.432-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}}]&lt;/pre&gt;
                                                +
                                                +                &lt;hr&gt;
                                                +
                                                +        &lt;/div&gt;
                                                +
                                                +        &lt;div id=&#34;3top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Referer&lt;/td&gt;
                                                +                        &lt;td&gt;
                                                +&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                +                        &lt;td&gt; application/json&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;{&amp;#34;uuid&amp;#34;:&amp;#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T23:40:56.972-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}}&lt;/pre&gt;
                                                +
                                                +                &lt;hr&gt;
                                                +
                                                +        &lt;/div&gt;
                                                +
                                                +        &lt;div id=&#34;4top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                +                        &lt;td&gt;  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                +&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Referer&lt;/td&gt;
                                                +                        &lt;td&gt;
                                                +&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;415&lt;/pre&gt;
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                +                        &lt;td&gt; text/plain; charset=utf-8&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;Please provide an mp3 or mp4 audio file
                                                +&lt;/pre&gt;
                                                +
                                                +                &lt;hr&gt;
                                                +
                                                +        &lt;/div&gt;
                                                +
                                                +        &lt;div id=&#34;5top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                +
                                                +
                                                +                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                +                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                +                    &lt;tr&gt;
                                                +                        &lt;th&gt;Key&lt;/th&gt;
                                                +                        &lt;th&gt;Value&lt;/th&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                +                        &lt;td&gt;  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                +&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                    &lt;tr&gt;
                                                +                        &lt;td&gt;Referer&lt;/td&gt;
                                                +                        &lt;td&gt;
                                                +&lt;/td&gt;
                                                +                    &lt;/tr&gt;
                                                +
                                                +                &lt;/table&gt;
                                                +
                                                +
                                                +
                                                +
                                                +                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                +                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                +
                                                +
                                                +                &lt;hr&gt;
                                                +
                                                +        &lt;/div&gt;
                                                +
                                                +    &lt;/div&gt;
                                                +&lt;/div&gt;
                                                +&lt;/div&gt;
                                                +&lt;hr&gt;
                                                +&lt;/body&gt;
                                                +&lt;/html&gt;</pre>
                                                +
                                                +                <hr>
                                                +
                                                +        </div>
                                                +
                                                +    </div>
                                                +</div>
                                                +</div>
                                                +<hr>
                                                +</body>
                                                +</html>
                                                + +
                                                + +
                                                + +
                                                +
                                                +
                                                +
                                                + diff --git a/src/learning/week2/index.md b/src/learning/week2/index.md index 55d7f6cb..d9e501dc 100644 --- a/src/learning/week2/index.md +++ b/src/learning/week2/index.md @@ -27,7 +27,7 @@ new task. - assigned (someone's Github id) - due (a date) - completed (always set to false when it's created) -* [ ] In the main page ([index.html](/apps.todos/index.html)), each task should have a complete button. When clicked, +* [x] In the main page ([index.html](/apps.todos/index.html)), each task should have a complete button. When clicked, the task is marked as complete, and the visual representation of this task should be updated accordingly. From 89518600800b32d52fe6a69c22a44ab0cee68ada Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Sat, 23 Jan 2016 16:31:14 -0700 Subject: [PATCH 16/32] Forgot to change index --- build/apps/todos/index.html | 1840 ++--------------------------------- src/apps/todos/index.html | 1840 ++--------------------------------- 2 files changed, 182 insertions(+), 3498 deletions(-) diff --git a/build/apps/todos/index.html b/build/apps/todos/index.html index 805ea5d5..b6829412 100755 --- a/build/apps/todos/index.html +++ b/build/apps/todos/index.html @@ -1,1761 +1,103 @@ - - API Documentation - - - - - - - - - - - + + + + + + + + + - - -
                                                -
                                                - -
                                                - -
                                                - - -

                                                Request Headers

                                                - - - - - - - - - - - -
                                                KeyValue
                                                Referer -
                                                - - - - -

                                                Response Code

                                                -
                                                200
                                                - -

                                                Response Headers

                                                - - - - - - - - - - - -
                                                KeyValue
                                                Content-Type application/json
                                                - - -

                                                Response Body

                                                -
                                                [{"uuid":"98cf2e56-1576-486d-9451-8322bcd0b94d","source":"ssss.comaaaa","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://ssss.comaaaa","byline":"","updated_date":"2016-01-03T16:16:10.094-07:00","created_date":"2016-01-03T16:16:10.094-07:00","published_date":"","media":[],"is_read":true},{"uuid":"d085529c-dfbd-4e1f-9da6-a35119e0c6d7","source":"ssss.com","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://ssss.com","byline":"","updated_date":"2016-01-03T16:09:51.342-07:00","created_date":"2016-01-03T16:09:51.342-07:00","published_date":"","media":[],"is_read":true},{"uuid":"1965ded8-9fe5-474d-b164-2ef9eabf4ced","source":"","popularity":"","section":"","title":"","author":"","abstract":"","url":"://a.com","byline":"","updated_date":"2016-01-03T16:02:46.982-07:00","created_date":"2016-01-03T16:02:46.982-07:00","published_date":"","media":[],"is_read":true},{"uuid":"bb44c161-07a3-4641-9323-e21b3e8bbcd8","source":"","popularity":"","section":"","title":"","author":"","abstract":"","url":"://a","byline":"","updated_date":"2016-01-03T15:50:52.131-07:00","created_date":"2016-01-03T15:50:52.131-07:00","published_date":"","media":[],"is_read":true},{"uuid":"cc99e58d-6f9a-4990-b266-0cc7fade8fe9","source":"google.com","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://google.com/sadasd/asdasd","byline":"","updated_date":"2016-01-03T15:41:56.841-07:00","created_date":"2016-01-03T15:41:56.841-07:00","published_date":"","media":[],"is_read":true},{"uuid":"f52a194d-e449-4315-8dc6-4cb87f407588","source":"google.com","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://google.com","byline":"","updated_date":"2016-01-03T15:37:26.731-07:00","created_date":"2016-01-03T15:37:26.731-07:00","published_date":"","media":[],"is_read":true}]
                                                - -
                                                - - -

                                                Request Headers

                                                - - - - - - - - - - - -
                                                KeyValue
                                                Referer -
                                                - - - -

                                                URL Params

                                                - - - - - - - - - - - -
                                                KeyValue
                                                is_read false
                                                - - -

                                                Response Code

                                                -
                                                200
                                                - -

                                                Response Headers

                                                - - - - - - - - - - - -
                                                KeyValue
                                                Content-Type application/json
                                                - - -

                                                Response Body

                                                -
                                                [{"uuid":"73f9b780-10d3-45e8-946b-2de9541e05e0","source":"The New York Times","popularity":"","section":"Opinion","title":"The Brutalism of Ted Cruz","author":"DAVID BROOKS","abstract":"The Texas Republican lacks the Christian virtues many evangelical voters may expect.","url":"http://www.nytimes.com/2016/01/12/opinion/the-brutalism-of-ted-cruz.html","byline":"By DAVID BROOKS","updated_date":"2016-01-14T14:12:58.323-07:00","created_date":"2016-01-14T14:12:58.323-07:00","published_date":"2016-01-12","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Eric Thayer for The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-articleInline.jpg","format":"Normal","height":132,"width":190},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-jumbo.jpg","format":"Jumbo","height":710,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-superJumbo.jpg","format":"superJumbo","height":1419,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"36ecf666-8d81-4a37-be59-a304eef298bc","source":"The New York Times","popularity":"","section":"World","title":"Iran’s Swift Release of U.S. Sailors Hailed as a Sign of Warmer Relations","author":"DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER","abstract":"It remained unclear who decided to release the sailors or how their two patrol boats ended up in Iranian territorial waters.","url":"http://www.nytimes.com/2016/01/14/world/middleeast/iran-navy-crew-release.html","byline":"By DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER","updated_date":"2016-01-14T13:22:58.979-07:00","created_date":"2016-01-14T13:22:58.979-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"A photo released by the Revolutionary Guards on Wednesday shows detained American sailors in an undisclosed location in Iran.","copyright":"Sepahnews, via Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbStandard-v2.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-articleInline.jpg","format":"Normal","height":107,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-sfSpan-v2.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-jumbo.jpg","format":"Jumbo","height":576,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-superJumbo.jpg","format":"superJumbo","height":1125,"width":2000},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbLarge-v2.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"79a207ef-6afc-4238-be80-858ed266e550","source":"The New York Times","popularity":"","section":"Arts","title":"How David Bowie Challenged MTV on Race","author":"WESLEY MORRIS","abstract":"A candid exchange in 1983 is sobering for its continued relevance and useful for what it says about Mr. Bowie’s sense of social awareness.","url":"http://www.nytimes.com/2016/01/14/arts/music/how-david-bowie-used-his-stardom-and-race-to-challenge-mtv.html","byline":"By WESLEY MORRIS","updated_date":"2016-01-14T13:22:57.747-07:00","created_date":"2016-01-14T13:22:57.747-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"David Bowie at Madison Square Garden in 1976.","copyright":"Allan Tannenbaum/Getty Images","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-articleInline.jpg","format":"Normal","height":121,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-jumbo.jpg","format":"Jumbo","height":379,"width":594},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-superJumbo.jpg","format":"superJumbo","height":379,"width":594},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"c119f1f8-dfc5-43dd-b0a3-eac519e8e507","source":"The New York Times","popularity":"","section":"Arts","title":"Iggy Pop on David Bowie: ‘He Resurrected Me’","author":"JON PARELES","abstract":"In an interview, the Detroit rocker, who collaborated with Mr. Bowie in the 1970s, talked about their friendship and their work through the years.","url":"http://www.nytimes.com/2016/01/14/arts/music/david-bowie-iggy-pop.html","byline":"By JON PARELES","updated_date":"2016-01-14T13:22:56.43-07:00","created_date":"2016-01-14T13:22:56.43-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Iggy Pop, left, and David Bowie, during the tour for Mr. Pop’s 1977 album “The Idiot.”","copyright":"Rex Features, via Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-articleInline.jpg","format":"Normal","height":131,"width":190},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-jumbo.jpg","format":"Jumbo","height":704,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-superJumbo.jpg","format":"superJumbo","height":1408,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"57cfab66-99a1-473d-bec2-f1a2da5c259b","source":"The New York Times","popularity":"","section":"World","title":"El Chapo Enticed by Star Power of Mexican Actress, Not Sean Penn","author":"PAULINA VILLEGAS","abstract":"Conversations between the drug lord Joaquín Guzmán Loera and the actress Kate del Castillo offer a window into the psyche of one of the world’s most wanted criminals.","url":"http://www.nytimes.com/2016/01/14/world/americas/el-chapo-enticed-by-star-power-of-mexican-tv-actress-not-sean-penn.html","byline":"By PAULINA VILLEGAS","updated_date":"2016-01-14T13:22:53.698-07:00","created_date":"2016-01-14T13:22:53.698-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"The actress Kate del Castillo in Hollywood in November.","copyright":"Mark Ralston/Agence France-Presse — Getty Images","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-articleInline.jpg","format":"Normal","height":209,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-jumbo.jpg","format":"Jumbo","height":1024,"width":933},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-superJumbo.jpg","format":"superJumbo","height":2048,"width":1866},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"22dd6af8-0ea9-4cfb-9422-74c5e896d65f","source":"The New York Times","popularity":"","section":"Opinion","title":"Politics: Everything’s Relative","author":"GAIL COLLINS","abstract":"Here are rules for dealing with family members showing up in the presidential race, like when to give them a break and when to go for the jugular.","url":"http://www.nytimes.com/2016/01/14/opinion/politics-everythings-relative.html","byline":"By GAIL COLLINS","updated_date":"2016-01-14T13:22:52.612-07:00","created_date":"2016-01-14T13:22:52.612-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Earl Wilson/The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbStandard-v5.png","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-articleInline-v5.png","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-jumbo-v5.png","format":"Jumbo","height":228,"width":342},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-superJumbo-v5.png","format":"superJumbo","height":228,"width":342},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbLarge-v7.png","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-mediumThreeByTwo210-v5.png","format":"mediumThreeByTwo210","height":140,"width":210}]}],"is_read":false},{"uuid":"686c0ea7-af91-48de-b6db-2c7035408d31","source":"The New York Times","popularity":"","section":"World","title":"Jakarta Attack Kills 2, Raising Fears of Growing ISIS Reach","author":"JOE COCHRANE and THOMAS FULLER","abstract":"The two civilians killed in the explosions and gunfire were a Canadian and an Indonesian, senior officials reported. Five assailants were also killed.","url":"http://www.nytimes.com/2016/01/15/world/asia/jakarta-explosion.html","byline":"By JOE COCHRANE and THOMAS FULLER","updated_date":"2016-01-14T13:22:49.387-07:00","created_date":"2016-01-14T13:22:49.387-07:00","published_date":"2016-01-15","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Bay Ismoyo/Agence France-Presse — Getty Images","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-articleInline.jpg","format":"Normal","height":139,"width":190},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-jumbo.jpg","format":"Jumbo","height":748,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-superJumbo.jpg","format":"superJumbo","height":1496,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"45a78a90-74dc-4958-aef4-d1f3e695c36a","source":"The New York Times","popularity":"","section":"Opinion","title":"The Other Obama Legacy","author":"CHARLES M. BLOW","abstract":"For many young people, the first president they consciously registered was a black man.","url":"http://www.nytimes.com/2016/01/14/opinion/the-other-obama-legacy.html","byline":"By CHARLES M. BLOW","updated_date":"2016-01-14T13:22:47.456-07:00","created_date":"2016-01-14T13:22:47.456-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"President Obama bends over so the son of a White House staff member can touch his hair during a visit to the Oval Office.","copyright":"Pete Souza/The White House","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-articleInline.jpg","format":"Normal","height":128,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-jumbo.jpg","format":"Jumbo","height":682,"width":1012},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-superJumbo.jpg","format":"superJumbo","height":682,"width":1012},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"cbb5b09c-bf63-44f0-9bda-c5443b435c89","source":"The New York Times","popularity":"","section":"Opinion","title":"The Tempting of Bernie Sanders","author":"ROSS DOUTHAT","abstract":"Is he ruthless enough to win?","url":"http://www.nytimes.com/2016/01/14/opinion/campaign-stops/the-tempting-of-bernie-sanders.html","byline":"By ROSS DOUTHAT","updated_date":"2016-01-14T13:22:46.422-07:00","created_date":"2016-01-14T13:22:46.422-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Scott Morgan/Reuters","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-articleInline.jpg","format":"Normal","height":121,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-sfSpan.jpg","format":"Large","height":264,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-jumbo.jpg","format":"Jumbo","height":653,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-superJumbo.jpg","format":"superJumbo","height":1305,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"2e8d771a-4d16-4421-83ea-92a599497890","source":"The New York Times","popularity":"","section":"Food","title":"At Thomas Keller’s Per Se, Slips and Stumbles","author":"PETE WELLS","abstract":"A new look at one of the nation’s landmark restaurants.","url":"http://www.nytimes.com/2016/01/13/dining/pete-wells-per-se-review.html","byline":"By PETE WELLS","updated_date":"2016-01-14T13:22:41.353-07:00","created_date":"2016-01-14T13:22:41.353-07:00","published_date":"2016-01-13","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Karsten Moran for The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square320-v2.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbStandard-v2.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-sfSpan-v2.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-jumbo.jpg","format":"Jumbo","height":684,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-superJumbo.jpg","format":"superJumbo","height":1367,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square640-v2.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbLarge-v2.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo210-v2.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo440-v2.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"7efce391-6d6f-4153-9bd2-b4022b06ad7d","source":"The New York Times","popularity":"","section":"U.S.","title":"U.S. Will Track Secret Buyers of Luxury Real Estate","author":"LOUISE STORY","abstract":"The initiative will start in Manhattan and Miami-Dade County as part of a broader federal effort to focus on money laundering in real estate.","url":"http://www.nytimes.com/2016/01/14/us/us-will-track-secret-buyers-of-luxury-real-estate.html","byline":"By LOUISE STORY","updated_date":"2016-01-14T13:22:40.794-07:00","created_date":"2016-01-14T13:22:40.794-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Condominiums at the Time Warner Center were found to have a number of hidden owners over a decade who had been the subjects of government investigations.","copyright":"Edward Caruso for The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-articleInline.jpg","format":"Normal","height":152,"width":190},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-jumbo.jpg","format":"Jumbo","height":819,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-superJumbo.jpg","format":"superJumbo","height":1639,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"9bfb4871-a656-4e31-a53f-f97cfeaa48bf","source":"The New York Times","popularity":"","section":"Business Day","title":"Al Jazeera America to Shut Down by April","author":"JOHN KOBLIN","abstract":"The cable news outlet, which began broadcasting in August 2013, said it would expand its digital presence in the United States.","url":"http://www.nytimes.com/2016/01/14/business/media/al-jazeera-america-to-shut-down-in-april.html","byline":"By JOHN KOBLIN","updated_date":"2016-01-14T13:22:38.092-07:00","created_date":"2016-01-14T13:22:38.092-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Al Jazeera America debuted in August 2013 after it bought Al Gore’s Current TV for $500 million.","copyright":"Suzanne DeChillo/The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-jumbo.jpg","format":"Jumbo","height":683,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-superJumbo.jpg","format":"superJumbo","height":1365,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"7f138454-c7cf-4667-8135-b46f4bd0cdd4","source":"The New York Times","popularity":"","section":"U.S.","title":"Powerball Has 3 Big Winners, in California, Florida and Tennessee","author":"ASHLEY SOUTHALL and LIAM STACK","abstract":"The winners will divide a record $1.5 billion jackpot, with a cash option of $983.5 million. In addition, eight tickets that won $2 million were sold in seven states.","url":"http://www.nytimes.com/2016/01/14/us/numbers-chosen-for-powerball-with-biggest-jackpot-ever.html","byline":"By ASHLEY SOUTHALL and LIAM STACK","updated_date":"2016-01-14T13:22:36.999-07:00","created_date":"2016-01-14T13:22:36.999-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"People lined up to buy Powerball tickets in Hawthorne, Calif., on Wednesday. Record sales drove up the largest jackpot in United States history to $1.5 billion.","copyright":"Mark Ralston/Agence France-Presse — Getty Images","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-articleInline.jpg","format":"Normal","height":137,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-jumbo.jpg","format":"Jumbo","height":740,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-superJumbo.jpg","format":"superJumbo","height":1480,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"12239fa3-1195-4791-adfd-b8070fbc715b","source":"The New York Times","popularity":"","section":"Opinion","title":"Why I Will Never Vote for Donald Trump","author":"PETER WEHNER","abstract":"Party loyalty has limits. Mr. Trump has altered the political equation because he has altered the moral equation.","url":"http://www.nytimes.com/2016/01/14/opinion/campaign-stops/why-i-will-never-vote-for-donald-trump.html","byline":"By PETER WEHNER","updated_date":"2016-01-14T13:22:35.752-07:00","created_date":"2016-01-14T13:22:35.752-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"West Des Moines, Iowa","copyright":"Jae C. Hong/Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-jumbo.jpg","format":"Jumbo","height":682,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-superJumbo.jpg","format":"superJumbo","height":1364,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"34703da9-65ac-402c-91bd-051927152b92","source":"The New York Times","popularity":"","section":"U.S.","title":"Ted Cruz Starts to Crack G.O.P. Establishment’s Wall of Opposition","author":"JONATHAN MARTIN","abstract":"Mr. Cruz, a candidate who built his name challenging his party’s leadership, has begun wooing entrenched power brokers, and some of them are listening.","url":"http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-starts-to-crack-gop-establishments-wall-of-opposition.html","byline":"By JONATHAN MARTIN","updated_date":"2016-01-14T13:22:34.653-07:00","created_date":"2016-01-14T13:22:34.653-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Senator Ted Cruz on the campaign trail in Hudson, N.H., on Tuesday. He has quietly begun wooing some of the party’s most entrenched donors and officials.","copyright":"Matt Rourke/Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square320-v2.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbStandard-v2.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-jumbo.jpg","format":"Jumbo","height":683,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-superJumbo.jpg","format":"superJumbo","height":1365,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square640-v2.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbLarge-v2.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"b04d9dfc-0644-41a6-ba3a-799d88fb26a5","source":"The New York Times","popularity":"","section":"Movies","title":"Oscar Nominations 2016","author":"BROOKS BARNES and MICHAEL CIEPLY","abstract":"“The Revenant” and “Mad Max: Fury Road” were showered with honors by the Academy of Motion Picture Arts and Sciences, picking up Oscar nominations for best picture and best director.","url":"http://www.nytimes.com/2016/01/15/movies/oscar-nominations.html","byline":"By BROOKS BARNES and MICHAEL CIEPLY","updated_date":"2016-01-14T13:22:32.864-07:00","created_date":"2016-01-14T13:22:32.864-07:00","published_date":"2016-01-15","media":[{"type":"image","subtype":"photo","caption":"“The Revenant” leads this year’s Oscar nominations with 12.","copyright":"20th Century Fox","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-articleInline.jpg","format":"Normal","height":79,"width":190},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-jumbo.jpg","format":"Jumbo","height":428,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-superJumbo.jpg","format":"superJumbo","height":855,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"8c495ce4-7c9d-4eec-af4a-6e199d7c6b97","source":"The New York Times","popularity":"","section":"The Upshot","title":"Dear Powerball Winner: Take Our Advice and Take the Annuity","author":"JOSH BARRO","abstract":"Comparing payout options is fun to imagine, but also a useful way to think about taxes, investment opportunities and human nature.","url":"http://www.nytimes.com/2016/01/13/upshot/dear-powerball-winner-take-our-advice-and-take-the-annuity.html","byline":"By JOSH BARRO","updated_date":"2016-01-14T13:22:30.919-07:00","created_date":"2016-01-14T13:22:30.919-07:00","published_date":"2016-01-13","media":[{"type":"image","subtype":"photo","caption":"Actually, it’s either $1.5 billion (which the sign cannot accommodate) or $930 million, depending on how you choose to take your winnings.","copyright":"Seth Wenig/Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-jumbo.jpg","format":"Jumbo","height":683,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-superJumbo.jpg","format":"superJumbo","height":1365,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"e9590738-be1f-411e-871c-da5e243a9a0d","source":"The New York Times","popularity":"","section":"Movies","title":"Alan Rickman, Actor Known for ‘Harry Potter’ and ‘Die Hard,’ Dies at 69","author":"DAVE ITZKOFF and KATIE ROGERS","abstract":"The British actor brought an erudite dignity to film roles like the nefarious mastermind of “Die Hard” and the dour master of potions in the “Harry Potter” series.","url":"http://www.nytimes.com/2016/01/15/obituaries/alan-rickman-dies-at-69.html","byline":"By DAVE ITZKOFF and KATIE ROGERS","updated_date":"2016-01-14T13:22:30.564-07:00","created_date":"2016-01-14T13:22:30.564-07:00","published_date":"2016-01-15","media":[{"type":"image","subtype":"photo","caption":"Alan Rickman at the Golden Theater in New York City in 2011.","copyright":"Sara Krulwich/The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-jumbo.jpg","format":"Jumbo","height":683,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-superJumbo.jpg","format":"superJumbo","height":1365,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"83c9a570-f5e5-4aeb-b32b-963aba50ae4a","source":"The New York Times","popularity":"","section":"U.S.","title":"Ted Cruz Didn’t Report Goldman Sachs Loan in a Senate Race","author":"MIKE McINTIRE","abstract":"As Mr. Cruz tells it, loyalty and sacrifice helped finance his 2012 Senate bid in Texas. Turns out, a Goldman Sachs loan did as well.","url":"http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-wall-street-loan-senate-bid-2012.html","byline":"By MIKE McINTIRE","updated_date":"2016-01-14T13:22:28.168-07:00","created_date":"2016-01-14T13:22:28.168-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Ted and Heidi Cruz, after he won the runoff for the Republican nomination for a Senate seat from Texas in July 2012.","copyright":"Johnny Hanson/Houston Chronicle, via Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-articleInline.jpg","format":"Normal","height":121,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-jumbo.jpg","format":"Jumbo","height":651,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-superJumbo.jpg","format":"superJumbo","height":1302,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"ba1fa5f0-50b1-4e0c-8cc7-88e993ae108a","source":"","popularity":"","section":"","title":"Example","author":"","abstract":"Example abstract","url":"","byline":"","updated_date":"2016-01-03T16:34:52.506-07:00","created_date":"2016-01-03T16:34:52.506-07:00","published_date":"","media":[],"is_read":false}]
                                                - -
                                                - -
                                                - -
                                                - - -

                                                Request Headers

                                                - - - - - - - - - - - -
                                                KeyValue
                                                Referer -
                                                - - - - -

                                                Response Code

                                                -
                                                200
                                                - -

                                                Response Headers

                                                - - - - - - - - - - - -
                                                KeyValue
                                                Content-Type application/json
                                                - - -

                                                Response Body

                                                -
                                                {"uuid":"98cf2e56-1576-486d-9451-8322bcd0b94d","source":"ssss.comaaaa","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://ssss.comaaaa","byline":"","updated_date":"2016-01-03T16:16:10.094-07:00","created_date":"2016-01-03T16:16:10.094-07:00","published_date":"","media":[],"is_read":true}
                                                - -
                                                - -
                                                - -
                                                - - -

                                                Request Headers

                                                - - - - - - - - - - - -
                                                KeyValue
                                                Referer -
                                                - - - - -

                                                Response Code

                                                -
                                                200
                                                - -

                                                Response Headers

                                                - - - - - - - - - - - -
                                                KeyValue
                                                Content-Type application/json
                                                - - -

                                                Response Body

                                                -
                                                [{"uuid":"fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a","article_id":"98cf2e56-1576-486d-9451-8322bcd0b94d","is_human":false,"reader_id":"0bf971e2-f655-44ef-8e6d-8bd7ec02e605","content_url":"://","url":"https://s3-us-west-2.amazonaws.com/appoutloud/fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3","file_type":"audio/mp3","created_date":"2016-01-21T13:37:35.731-07:00","reader":{"uuid":"0bf971e2-f655-44ef-8e6d-8bd7ec02e605","email":"","name":""}},{"uuid":"2132ccf3-a314-4b33-b647-1f3ebcd9256d","article_id":"bb44c161-07a3-4641-9323-e21b3e8bbcd8","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a","url":"https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T23:40:56.972-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a","article_id":"98cf2e56-1576-486d-9451-8322bcd0b94d","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"http://ssss.comaaaa","url":"https://s3-us-west-2.amazonaws.com/appoutloud/12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T16:16:20.658-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"4ee0acef-a0f7-4676-b249-f8d1e2c8582c","article_id":"d085529c-dfbd-4e1f-9da6-a35119e0c6d7","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"http://ssss.com","url":"https://s3-us-west-2.amazonaws.com/appoutloud/4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T16:09:53.15-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"2d9d119f-2b97-45a6-9952-0a14d7f61ecb","article_id":"1965ded8-9fe5-474d-b164-2ef9eabf4ced","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a.com","url":"https://s3-us-west-2.amazonaws.com/appoutloud/2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T16:05:22.602-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"fd047772-939e-40c4-80c3-82cde4c166f0","article_id":"1965ded8-9fe5-474d-b164-2ef9eabf4ced","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a.com","url":"https://s3-us-west-2.amazonaws.com/appoutloud/fd047772-939e-40c4-80c3-82cde4c166f0.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd047772-939e-40c4-80c3-82cde4c166f0.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T16:02:57.762-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"28295897-f834-4de9-bd5a-ab3ac782cd02","article_id":"bb44c161-07a3-4641-9323-e21b3e8bbcd8","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a","url":"https://s3-us-west-2.amazonaws.com/appoutloud/28295897-f834-4de9-bd5a-ab3ac782cd02.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-28295897-f834-4de9-bd5a-ab3ac782cd02.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T15:51:02.608-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"3386aeaa-1bc4-4220-bd10-f1c859cb92b6","article_id":"cc99e58d-6f9a-4990-b266-0cc7fade8fe9","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"http://google.com/sadasd/asdasd","url":"https://s3-us-west-2.amazonaws.com/appoutloud/3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T15:42:07.389-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"989f74de-e748-4ba0-b601-ec1b98d16dac","article_id":"f52a194d-e449-4315-8dc6-4cb87f407588","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"http://google.com","url":"https://s3-us-west-2.amazonaws.com/appoutloud/989f74de-e748-4ba0-b601-ec1b98d16dac.mp4","raw_url":"","file_type":"audio/x-m4a","created_date":"2016-01-03T15:37:35.432-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}}]
                                                - -
                                                - -
                                                - -
                                                - - -

                                                Request Headers

                                                - - - - - - - - - - - -
                                                KeyValue
                                                Referer -
                                                - - - - -

                                                Response Code

                                                -
                                                200
                                                - -

                                                Response Headers

                                                - - - - - - - - - - - -
                                                KeyValue
                                                Content-Type application/json
                                                - - -

                                                Response Body

                                                -
                                                {"uuid":"2132ccf3-a314-4b33-b647-1f3ebcd9256d","article_id":"bb44c161-07a3-4641-9323-e21b3e8bbcd8","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a","url":"https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T23:40:56.972-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}}
                                                - -
                                                + + + + + + - -
                                                - - -

                                                Request Headers

                                                - - - - - - - - - - - - - - - - -
                                                KeyValue
                                                Content-Type multipart/form-data; boundary=----------------------------98ff7c75a7ac -
                                                Referer -
                                                - - - - -

                                                Response Code

                                                -
                                                415
                                                - -

                                                Response Headers

                                                - - - - - - - - - - - -
                                                KeyValue
                                                Content-Type text/plain; charset=utf-8
                                                - - -

                                                Response Body

                                                -
                                                Please provide an mp3 or mp4 audio file
                                                -
                                                - -
                                                - +
                                                +

                                                +
                                                + + + +
                                                  +
                                                  - -
                                                  - - -

                                                  Request Headers

                                                  - - - - - - - - - - - - - - - - -
                                                  KeyValue
                                                  Content-Type multipart/form-data; boundary=----------------------------98ff7c75a7ac -
                                                  Referer -
                                                  - - - - -

                                                  Response Code

                                                  -
                                                  200
                                                  - - -
                                                  - +
                                                  + Add
                                                  +
                                                  +
                                                  +

                                                   

                                                  +
                                                  +

                                                  Tasks

                                                  +
                                                    +
                                                  +
                                                  + + P + -
                                                  - - -

                                                  Request Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Upgrade-Insecure-Requests 1 -
                                                  - - - - -

                                                  Response Code

                                                  -
                                                  200
                                                  - - -

                                                  Response Body

                                                  -
                                                  <!DOCTYPE html>
                                                  -<html>
                                                  -<head lang="en">
                                                  -    <title> API Documentation </title>
                                                  -    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
                                                  -    <script src="http://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
                                                  -    <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
                                                  -    <link rel="stylesheet" href="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css">
                                                  -
                                                  -    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
                                                  -    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
                                                  -
                                                  -    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
                                                  -    <style type="text/css">
                                                  -        body {
                                                  -            font-family: 'Roboto', sans-serif;
                                                  -        }
                                                  -        .hidden {
                                                  -            display:none;
                                                  -        }
                                                  -    </style>
                                                  -    <style type="text/css">
                                                  -        pre.prettyprint {
                                                  -            border: 1px solid #ccc;
                                                  -            margin-bottom: 0;
                                                  -            padding: 9.5px;
                                                  -        }
                                                  -    </style>
                                                  -    <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
                                                  -    <script>
                                                  -        hljs.initHighlightingOnLoad();
                                                  -        function toggler(divId) {
                                                  -           $("#" + divId).toggle();
                                                  -        }
                                                  -    </script>
                                                  -</head>
                                                  -<body>
                                                  -<nav class="navbar navbar-default navbar-fixed-top">
                                                  -    <div class="container-fluid">
                                                  -
                                                  -        <div class="navbar-header">
                                                  -            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
                                                  -                    data-target="#bs-example-navbar-collapse-1">
                                                  -                <span class="sr-only">Toggle navigation</span>
                                                  -                <span class="icon-bar"></span>
                                                  -                <span class="icon-bar"></span>
                                                  -                <span class="icon-bar"></span>
                                                  -            </button>
                                                  -            <a class="navbar-brand" href="#">Outloud! Api Documentation</a>
                                                  -            <p class="navbar-text">Developed by Gophers at <a href="http://betacraft.co">Betacraft</a></p>
                                                  -        </div>
                                                  -
                                                  -
                                                  -    </div>
                                                  -
                                                  -</nav>
                                                  -<div class="container-fluid" style="margin-top: 70px;margin-bottom: 20px;">
                                                  -    <div class="container-fluid">
                                                  -    <div class="col-md-4">
                                                  -        <div class="panel panel-default">
                                                  -              <div class="panel-heading">Base Urls</div>
                                                  -              <div class="panel-body">
                                                  -
                                                  -              </div>
                                                  -            </div>
                                                  -        <ul class="nav nav-pills nav-stacked" role="tablist">
                                                  -
                                                  -                <li role="presentation"><a href="#0top" role="tab" data-toggle="tab">GET : /api/feed</a></li>
                                                  -
                                                  -                <li role="presentation"><a href="#1top" role="tab" data-toggle="tab">GET : /api/article/98cf2e56-1576-486d-9451-8322bcd0b94d</a></li>
                                                  -
                                                  -                <li role="presentation"><a href="#2top" role="tab" data-toggle="tab">GET : /api/readings</a></li>
                                                  -
                                                  -                <li role="presentation"><a href="#3top" role="tab" data-toggle="tab">GET : /api/reading/2132ccf3-a314-4b33-b647-1f3ebcd9256d</a></li>
                                                  -
                                                  -                <li role="presentation"><a href="#4top" role="tab" data-toggle="tab">POST : /api/reading/new</a></li>
                                                  -
                                                  -                <li role="presentation"><a href="#5top" role="tab" data-toggle="tab">POST : /api/channel/add</a></li>
                                                  -
                                                  -        <ul>
                                                  -    </div>
                                                  -    <div class="col-md-8 tab-content">
                                                  -
                                                  -        <div id="0top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -                <p><h4> Response Headers</h4></p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td> application/json</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;source&#34;:&#34;ssss.comaaaa&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&#34;,&#34;source&#34;:&#34;ssss.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:09:51.342-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:09:51.342-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;://a.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:02:46.982-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:02:46.982-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;://a&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:50:52.131-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:50:52.131-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&#34;,&#34;source&#34;:&#34;google.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://google.com/sadasd/asdasd&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:41:56.841-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:41:56.841-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;f52a194d-e449-4315-8dc6-4cb87f407588&#34;,&#34;source&#34;:&#34;google.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://google.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:37:26.731-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:37:26.731-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true}]</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -                <p> <H4> URL Params </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>is_read</td>
                                                  -                        <td> false</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -                <p><h4> Response Headers</h4></p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td> application/json</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;73f9b780-10d3-45e8-946b-2de9541e05e0&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Brutalism of Ted Cruz&#34;,&#34;author&#34;:&#34;DAVID BROOKS&#34;,&#34;abstract&#34;:&#34;The Texas Republican lacks the Christian virtues many evangelical voters may expect.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/12/opinion/the-brutalism-of-ted-cruz.html&#34;,&#34;byline&#34;:&#34;By DAVID BROOKS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T14:12:58.323-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T14:12:58.323-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-12&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Eric Thayer for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:132,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:710,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1419,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;36ecf666-8d81-4a37-be59-a304eef298bc&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;Iran’s Swift Release of U.S. Sailors Hailed as a Sign of Warmer Relations&#34;,&#34;author&#34;:&#34;DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&#34;,&#34;abstract&#34;:&#34;It remained unclear who decided to release the sailors or how their two patrol boats ended up in Iranian territorial waters.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/world/middleeast/iran-navy-crew-release.html&#34;,&#34;byline&#34;:&#34;By DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:58.979-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:58.979-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;A photo released by the Revolutionary Guards on Wednesday shows detained American sailors in an undisclosed location in Iran.&#34;,&#34;copyright&#34;:&#34;Sepahnews, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:107,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-sfSpan-v2.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:576,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1125,&#34;width&#34;:2000},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;79a207ef-6afc-4238-be80-858ed266e550&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Arts&#34;,&#34;title&#34;:&#34;How David Bowie Challenged MTV on Race&#34;,&#34;author&#34;:&#34;WESLEY MORRIS&#34;,&#34;abstract&#34;:&#34;A candid exchange in 1983 is sobering for its continued relevance and useful for what it says about Mr. Bowie’s sense of social awareness.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/arts/music/how-david-bowie-used-his-stardom-and-race-to-challenge-mtv.html&#34;,&#34;byline&#34;:&#34;By WESLEY MORRIS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:57.747-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:57.747-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;David Bowie at Madison Square Garden in 1976.&#34;,&#34;copyright&#34;:&#34;Allan Tannenbaum/Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:379,&#34;width&#34;:594},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:379,&#34;width&#34;:594},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;c119f1f8-dfc5-43dd-b0a3-eac519e8e507&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Arts&#34;,&#34;title&#34;:&#34;Iggy Pop on David Bowie: ‘He Resurrected Me’&#34;,&#34;author&#34;:&#34;JON PARELES&#34;,&#34;abstract&#34;:&#34;In an interview, the Detroit rocker, who collaborated with Mr. Bowie in the 1970s, talked about their friendship and their work through the years.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/arts/music/david-bowie-iggy-pop.html&#34;,&#34;byline&#34;:&#34;By JON PARELES&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:56.43-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:56.43-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Iggy Pop, left, and David Bowie, during the tour for Mr. Pop’s 1977 album “The Idiot.”&#34;,&#34;copyright&#34;:&#34;Rex Features, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:131,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:704,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1408,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;57cfab66-99a1-473d-bec2-f1a2da5c259b&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;El Chapo Enticed by Star Power of Mexican Actress, Not Sean Penn&#34;,&#34;author&#34;:&#34;PAULINA VILLEGAS&#34;,&#34;abstract&#34;:&#34;Conversations between the drug lord Joaquín Guzmán Loera and the actress Kate del Castillo offer a window into the psyche of one of the world’s most wanted criminals.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/world/americas/el-chapo-enticed-by-star-power-of-mexican-tv-actress-not-sean-penn.html&#34;,&#34;byline&#34;:&#34;By PAULINA VILLEGAS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:53.698-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:53.698-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;The actress Kate del Castillo in Hollywood in November.&#34;,&#34;copyright&#34;:&#34;Mark Ralston/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:209,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:1024,&#34;width&#34;:933},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:2048,&#34;width&#34;:1866},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;22dd6af8-0ea9-4cfb-9422-74c5e896d65f&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;Politics: Everything’s Relative&#34;,&#34;author&#34;:&#34;GAIL COLLINS&#34;,&#34;abstract&#34;:&#34;Here are rules for dealing with family members showing up in the presidential race, like when to give them a break and when to go for the jugular.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/politics-everythings-relative.html&#34;,&#34;byline&#34;:&#34;By GAIL COLLINS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:52.612-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:52.612-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Earl Wilson/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbStandard-v5.png&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-articleInline-v5.png&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-jumbo-v5.png&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:228,&#34;width&#34;:342},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-superJumbo-v5.png&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:228,&#34;width&#34;:342},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbLarge-v7.png&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-mediumThreeByTwo210-v5.png&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;686c0ea7-af91-48de-b6db-2c7035408d31&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;Jakarta Attack Kills 2, Raising Fears of Growing ISIS Reach&#34;,&#34;author&#34;:&#34;JOE COCHRANE and THOMAS FULLER&#34;,&#34;abstract&#34;:&#34;The two civilians killed in the explosions and gunfire were a Canadian and an Indonesian, senior officials reported. Five assailants were also killed.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/world/asia/jakarta-explosion.html&#34;,&#34;byline&#34;:&#34;By JOE COCHRANE and THOMAS FULLER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:49.387-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:49.387-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Bay Ismoyo/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:139,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:748,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1496,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;45a78a90-74dc-4958-aef4-d1f3e695c36a&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Other Obama Legacy&#34;,&#34;author&#34;:&#34;CHARLES M. BLOW&#34;,&#34;abstract&#34;:&#34;For many young people, the first president they consciously registered was a black man.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/the-other-obama-legacy.html&#34;,&#34;byline&#34;:&#34;By CHARLES M. BLOW&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:47.456-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:47.456-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;President Obama bends over so the son of a White House staff member can touch his hair during a visit to the Oval Office.&#34;,&#34;copyright&#34;:&#34;Pete Souza/The White House&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:128,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1012},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1012},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;cbb5b09c-bf63-44f0-9bda-c5443b435c89&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Tempting of Bernie Sanders&#34;,&#34;author&#34;:&#34;ROSS DOUTHAT&#34;,&#34;abstract&#34;:&#34;Is he ruthless enough to win?&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/the-tempting-of-bernie-sanders.html&#34;,&#34;byline&#34;:&#34;By ROSS DOUTHAT&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:46.422-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:46.422-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Scott Morgan/Reuters&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:264,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:653,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1305,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;2e8d771a-4d16-4421-83ea-92a599497890&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Food&#34;,&#34;title&#34;:&#34;At Thomas Keller’s Per Se, Slips and Stumbles&#34;,&#34;author&#34;:&#34;PETE WELLS&#34;,&#34;abstract&#34;:&#34;A new look at one of the nation’s landmark restaurants.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/13/dining/pete-wells-per-se-review.html&#34;,&#34;byline&#34;:&#34;By PETE WELLS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:41.353-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:41.353-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-13&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Karsten Moran for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square320-v2.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-sfSpan-v2.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:684,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1367,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square640-v2.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo210-v2.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo440-v2.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;7efce391-6d6f-4153-9bd2-b4022b06ad7d&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;U.S. Will Track Secret Buyers of Luxury Real Estate&#34;,&#34;author&#34;:&#34;LOUISE STORY&#34;,&#34;abstract&#34;:&#34;The initiative will start in Manhattan and Miami-Dade County as part of a broader federal effort to focus on money laundering in real estate.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/us-will-track-secret-buyers-of-luxury-real-estate.html&#34;,&#34;byline&#34;:&#34;By LOUISE STORY&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:40.794-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:40.794-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Condominiums at the Time Warner Center were found to have a number of hidden owners over a decade who had been the subjects of government investigations.&#34;,&#34;copyright&#34;:&#34;Edward Caruso for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:152,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:819,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1639,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;9bfb4871-a656-4e31-a53f-f97cfeaa48bf&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Business Day&#34;,&#34;title&#34;:&#34;Al Jazeera America to Shut Down by April&#34;,&#34;author&#34;:&#34;JOHN KOBLIN&#34;,&#34;abstract&#34;:&#34;The cable news outlet, which began broadcasting in August 2013, said it would expand its digital presence in the United States.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/business/media/al-jazeera-america-to-shut-down-in-april.html&#34;,&#34;byline&#34;:&#34;By JOHN KOBLIN&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:38.092-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:38.092-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Al Jazeera America debuted in August 2013 after it bought Al Gore’s Current TV for $500 million.&#34;,&#34;copyright&#34;:&#34;Suzanne DeChillo/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;7f138454-c7cf-4667-8135-b46f4bd0cdd4&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Powerball Has 3 Big Winners, in California, Florida and Tennessee&#34;,&#34;author&#34;:&#34;ASHLEY SOUTHALL and LIAM STACK&#34;,&#34;abstract&#34;:&#34;The winners will divide a record $1.5 billion jackpot, with a cash option of $983.5 million. In addition, eight tickets that won $2 million were sold in seven states.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/numbers-chosen-for-powerball-with-biggest-jackpot-ever.html&#34;,&#34;byline&#34;:&#34;By ASHLEY SOUTHALL and LIAM STACK&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:36.999-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:36.999-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;People lined up to buy Powerball tickets in Hawthorne, Calif., on Wednesday. Record sales drove up the largest jackpot in United States history to $1.5 billion.&#34;,&#34;copyright&#34;:&#34;Mark Ralston/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:137,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:740,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1480,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;12239fa3-1195-4791-adfd-b8070fbc715b&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;Why I Will Never Vote for Donald Trump&#34;,&#34;author&#34;:&#34;PETER WEHNER&#34;,&#34;abstract&#34;:&#34;Party loyalty has limits. Mr. Trump has altered the political equation because he has altered the moral equation.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/why-i-will-never-vote-for-donald-trump.html&#34;,&#34;byline&#34;:&#34;By PETER WEHNER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:35.752-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:35.752-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;West Des Moines, Iowa&#34;,&#34;copyright&#34;:&#34;Jae C. Hong/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1364,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;34703da9-65ac-402c-91bd-051927152b92&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Ted Cruz Starts to Crack G.O.P. Establishment’s Wall of Opposition&#34;,&#34;author&#34;:&#34;JONATHAN MARTIN&#34;,&#34;abstract&#34;:&#34;Mr. Cruz, a candidate who built his name challenging his party’s leadership, has begun wooing entrenched power brokers, and some of them are listening.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-starts-to-crack-gop-establishments-wall-of-opposition.html&#34;,&#34;byline&#34;:&#34;By JONATHAN MARTIN&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:34.653-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:34.653-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Senator Ted Cruz on the campaign trail in Hudson, N.H., on Tuesday. He has quietly begun wooing some of the party’s most entrenched donors and officials.&#34;,&#34;copyright&#34;:&#34;Matt Rourke/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square320-v2.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square640-v2.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;b04d9dfc-0644-41a6-ba3a-799d88fb26a5&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Movies&#34;,&#34;title&#34;:&#34;Oscar Nominations 2016&#34;,&#34;author&#34;:&#34;BROOKS BARNES and MICHAEL CIEPLY&#34;,&#34;abstract&#34;:&#34;“The Revenant” and “Mad Max: Fury Road” were showered with honors by the Academy of Motion Picture Arts and Sciences, picking up Oscar nominations for best picture and best director.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/movies/oscar-nominations.html&#34;,&#34;byline&#34;:&#34;By BROOKS BARNES and MICHAEL CIEPLY&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:32.864-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:32.864-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;“The Revenant” leads this year’s Oscar nominations with 12.&#34;,&#34;copyright&#34;:&#34;20th Century Fox&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:79,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:428,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:855,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;8c495ce4-7c9d-4eec-af4a-6e199d7c6b97&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;The Upshot&#34;,&#34;title&#34;:&#34;Dear Powerball Winner: Take Our Advice and Take the Annuity&#34;,&#34;author&#34;:&#34;JOSH BARRO&#34;,&#34;abstract&#34;:&#34;Comparing payout options is fun to imagine, but also a useful way to think about taxes, investment opportunities and human nature.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/13/upshot/dear-powerball-winner-take-our-advice-and-take-the-annuity.html&#34;,&#34;byline&#34;:&#34;By JOSH BARRO&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:30.919-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:30.919-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-13&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Actually, it’s either $1.5 billion (which the sign cannot accommodate) or $930 million, depending on how you choose to take your winnings.&#34;,&#34;copyright&#34;:&#34;Seth Wenig/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;e9590738-be1f-411e-871c-da5e243a9a0d&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Movies&#34;,&#34;title&#34;:&#34;Alan Rickman, Actor Known for ‘Harry Potter’ and ‘Die Hard,’ Dies at 69&#34;,&#34;author&#34;:&#34;DAVE ITZKOFF and KATIE ROGERS&#34;,&#34;abstract&#34;:&#34;The British actor brought an erudite dignity to film roles like the nefarious mastermind of “Die Hard” and the dour master of potions in the “Harry Potter” series.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/obituaries/alan-rickman-dies-at-69.html&#34;,&#34;byline&#34;:&#34;By DAVE ITZKOFF and KATIE ROGERS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:30.564-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:30.564-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Alan Rickman at the Golden Theater in New York City in 2011.&#34;,&#34;copyright&#34;:&#34;Sara Krulwich/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;83c9a570-f5e5-4aeb-b32b-963aba50ae4a&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Ted Cruz Didn’t Report Goldman Sachs Loan in a Senate Race&#34;,&#34;author&#34;:&#34;MIKE McINTIRE&#34;,&#34;abstract&#34;:&#34;As Mr. Cruz tells it, loyalty and sacrifice helped finance his 2012 Senate bid in Texas. Turns out, a Goldman Sachs loan did as well.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-wall-street-loan-senate-bid-2012.html&#34;,&#34;byline&#34;:&#34;By MIKE McINTIRE&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:28.168-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:28.168-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Ted and Heidi Cruz, after he won the runoff for the Republican nomination for a Senate seat from Texas in July 2012.&#34;,&#34;copyright&#34;:&#34;Johnny Hanson/Houston Chronicle, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:651,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1302,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;ba1fa5f0-50b1-4e0c-8cc7-88e993ae108a&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;Example&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;Example abstract&#34;,&#34;url&#34;:&#34;&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:34:52.506-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:34:52.506-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:false}]</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -        <div id="1top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -                <p><h4> Response Headers</h4></p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td> application/json</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">{&#34;uuid&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;source&#34;:&#34;ssss.comaaaa&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true}</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -        <div id="2top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -                <p><h4> Response Headers</h4></p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td> application/json</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a&#34;,&#34;article_id&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;is_human&#34;:false,&#34;reader_id&#34;:&#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&#34;,&#34;content_url&#34;:&#34;://&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&#34;,&#34;file_type&#34;:&#34;audio/mp3&#34;,&#34;created_date&#34;:&#34;2016-01-21T13:37:35.731-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&#34;,&#34;email&#34;:&#34;&#34;,&#34;name&#34;:&#34;&#34;}},{&#34;uuid&#34;:&#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T23:40:56.972-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a&#34;,&#34;article_id&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:20.658-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;4ee0acef-a0f7-4676-b249-f8d1e2c8582c&#34;,&#34;article_id&#34;:&#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://ssss.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:09:53.15-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;2d9d119f-2b97-45a6-9952-0a14d7f61ecb&#34;,&#34;article_id&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:05:22.602-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;fd047772-939e-40c4-80c3-82cde4c166f0&#34;,&#34;article_id&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd047772-939e-40c4-80c3-82cde4c166f0.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd047772-939e-40c4-80c3-82cde4c166f0.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:02:57.762-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;28295897-f834-4de9-bd5a-ab3ac782cd02&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:51:02.608-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;3386aeaa-1bc4-4220-bd10-f1c859cb92b6&#34;,&#34;article_id&#34;:&#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://google.com/sadasd/asdasd&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:42:07.389-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;989f74de-e748-4ba0-b601-ec1b98d16dac&#34;,&#34;article_id&#34;:&#34;f52a194d-e449-4315-8dc6-4cb87f407588&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://google.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/989f74de-e748-4ba0-b601-ec1b98d16dac.mp4&#34;,&#34;raw_url&#34;:&#34;&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:37:35.432-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}}]</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -        <div id="3top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -                <p><h4> Response Headers</h4></p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td> application/json</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">{&#34;uuid&#34;:&#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T23:40:56.972-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}}</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -        <div id="4top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td>  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">415</pre>
                                                  -
                                                  -                <p><h4> Response Headers</h4></p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td> text/plain; charset=utf-8</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">Please provide an mp3 or mp4 audio file
                                                  -</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -        <div id="5top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td>  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -    </div>
                                                  -</div>
                                                  -</div>
                                                  -<hr>
                                                  -</body>
                                                  -</html>
                                                  - -
                                                  - - -

                                                  Request Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Upgrade-Insecure-Requests 1 -
                                                  - - - - -

                                                  Response Code

                                                  -
                                                  200
                                                  - - -

                                                  Response Body

                                                  -
                                                  <!DOCTYPE html>
                                                  -<html>
                                                  -<head lang="en">
                                                  -    <title> API Documentation </title>
                                                  -    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
                                                  -    <script src="http://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
                                                  -    <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
                                                  -    <link rel="stylesheet" href="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css">
                                                  -
                                                  -    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
                                                  -    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
                                                  -
                                                  -    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
                                                  -    <style type="text/css">
                                                  -        body {
                                                  -            font-family: 'Roboto', sans-serif;
                                                  -        }
                                                  -        .hidden {
                                                  -            display:none;
                                                  -        }
                                                  -    </style>
                                                  -    <style type="text/css">
                                                  -        pre.prettyprint {
                                                  -            border: 1px solid #ccc;
                                                  -            margin-bottom: 0;
                                                  -            padding: 9.5px;
                                                  -        }
                                                  -    </style>
                                                  -    <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
                                                  -    <script>
                                                  -        hljs.initHighlightingOnLoad();
                                                  -        function toggler(divId) {
                                                  -           $("#" + divId).toggle();
                                                  -        }
                                                  -    </script>
                                                  -</head>
                                                  -<body>
                                                  -<nav class="navbar navbar-default navbar-fixed-top">
                                                  -    <div class="container-fluid">
                                                  -
                                                  -        <div class="navbar-header">
                                                  -            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
                                                  -                    data-target="#bs-example-navbar-collapse-1">
                                                  -                <span class="sr-only">Toggle navigation</span>
                                                  -                <span class="icon-bar"></span>
                                                  -                <span class="icon-bar"></span>
                                                  -                <span class="icon-bar"></span>
                                                  -            </button>
                                                  -            <a class="navbar-brand" href="#">Outloud! Api Documentation</a>
                                                  -            <p class="navbar-text">Developed by Gophers at <a href="http://betacraft.co">Betacraft</a></p>
                                                  -        </div>
                                                  -
                                                  -
                                                  -    </div>
                                                  -
                                                  -</nav>
                                                  -<div class="container-fluid" style="margin-top: 70px;margin-bottom: 20px;">
                                                  -    <div class="container-fluid">
                                                  -    <div class="col-md-4">
                                                  -        <div class="panel panel-default">
                                                  -              <div class="panel-heading">Base Urls</div>
                                                  -              <div class="panel-body">
                                                  -
                                                  -              </div>
                                                  -            </div>
                                                  -        <ul class="nav nav-pills nav-stacked" role="tablist">
                                                  -
                                                  -                <li role="presentation"><a href="#0top" role="tab" data-toggle="tab">GET : /api/feed</a></li>
                                                  -
                                                  -                <li role="presentation"><a href="#1top" role="tab" data-toggle="tab">GET : /api/article/98cf2e56-1576-486d-9451-8322bcd0b94d</a></li>
                                                  -
                                                  -                <li role="presentation"><a href="#2top" role="tab" data-toggle="tab">GET : /api/readings</a></li>
                                                  -
                                                  -                <li role="presentation"><a href="#3top" role="tab" data-toggle="tab">GET : /api/reading/2132ccf3-a314-4b33-b647-1f3ebcd9256d</a></li>
                                                  -
                                                  -                <li role="presentation"><a href="#4top" role="tab" data-toggle="tab">POST : /api/reading/new</a></li>
                                                  -
                                                  -                <li role="presentation"><a href="#5top" role="tab" data-toggle="tab">POST : /api/channel/add</a></li>
                                                  -
                                                  -                <li role="presentation"><a href="#6top" role="tab" data-toggle="tab">GET : /api</a></li>
                                                  -
                                                  -        <ul>
                                                  -    </div>
                                                  -    <div class="col-md-8 tab-content">
                                                  -
                                                  -        <div id="0top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -                <p><h4> Response Headers</h4></p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td> application/json</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;source&#34;:&#34;ssss.comaaaa&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&#34;,&#34;source&#34;:&#34;ssss.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:09:51.342-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:09:51.342-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;://a.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:02:46.982-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:02:46.982-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;://a&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:50:52.131-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:50:52.131-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&#34;,&#34;source&#34;:&#34;google.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://google.com/sadasd/asdasd&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:41:56.841-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:41:56.841-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;f52a194d-e449-4315-8dc6-4cb87f407588&#34;,&#34;source&#34;:&#34;google.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://google.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:37:26.731-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:37:26.731-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true}]</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -                <p> <H4> URL Params </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>is_read</td>
                                                  -                        <td> false</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -                <p><h4> Response Headers</h4></p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td> application/json</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;73f9b780-10d3-45e8-946b-2de9541e05e0&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Brutalism of Ted Cruz&#34;,&#34;author&#34;:&#34;DAVID BROOKS&#34;,&#34;abstract&#34;:&#34;The Texas Republican lacks the Christian virtues many evangelical voters may expect.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/12/opinion/the-brutalism-of-ted-cruz.html&#34;,&#34;byline&#34;:&#34;By DAVID BROOKS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T14:12:58.323-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T14:12:58.323-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-12&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Eric Thayer for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:132,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:710,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1419,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;36ecf666-8d81-4a37-be59-a304eef298bc&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;Iran’s Swift Release of U.S. Sailors Hailed as a Sign of Warmer Relations&#34;,&#34;author&#34;:&#34;DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&#34;,&#34;abstract&#34;:&#34;It remained unclear who decided to release the sailors or how their two patrol boats ended up in Iranian territorial waters.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/world/middleeast/iran-navy-crew-release.html&#34;,&#34;byline&#34;:&#34;By DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:58.979-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:58.979-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;A photo released by the Revolutionary Guards on Wednesday shows detained American sailors in an undisclosed location in Iran.&#34;,&#34;copyright&#34;:&#34;Sepahnews, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:107,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-sfSpan-v2.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:576,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1125,&#34;width&#34;:2000},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;79a207ef-6afc-4238-be80-858ed266e550&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Arts&#34;,&#34;title&#34;:&#34;How David Bowie Challenged MTV on Race&#34;,&#34;author&#34;:&#34;WESLEY MORRIS&#34;,&#34;abstract&#34;:&#34;A candid exchange in 1983 is sobering for its continued relevance and useful for what it says about Mr. Bowie’s sense of social awareness.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/arts/music/how-david-bowie-used-his-stardom-and-race-to-challenge-mtv.html&#34;,&#34;byline&#34;:&#34;By WESLEY MORRIS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:57.747-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:57.747-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;David Bowie at Madison Square Garden in 1976.&#34;,&#34;copyright&#34;:&#34;Allan Tannenbaum/Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:379,&#34;width&#34;:594},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:379,&#34;width&#34;:594},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;c119f1f8-dfc5-43dd-b0a3-eac519e8e507&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Arts&#34;,&#34;title&#34;:&#34;Iggy Pop on David Bowie: ‘He Resurrected Me’&#34;,&#34;author&#34;:&#34;JON PARELES&#34;,&#34;abstract&#34;:&#34;In an interview, the Detroit rocker, who collaborated with Mr. Bowie in the 1970s, talked about their friendship and their work through the years.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/arts/music/david-bowie-iggy-pop.html&#34;,&#34;byline&#34;:&#34;By JON PARELES&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:56.43-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:56.43-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Iggy Pop, left, and David Bowie, during the tour for Mr. Pop’s 1977 album “The Idiot.”&#34;,&#34;copyright&#34;:&#34;Rex Features, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:131,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:704,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1408,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;57cfab66-99a1-473d-bec2-f1a2da5c259b&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;El Chapo Enticed by Star Power of Mexican Actress, Not Sean Penn&#34;,&#34;author&#34;:&#34;PAULINA VILLEGAS&#34;,&#34;abstract&#34;:&#34;Conversations between the drug lord Joaquín Guzmán Loera and the actress Kate del Castillo offer a window into the psyche of one of the world’s most wanted criminals.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/world/americas/el-chapo-enticed-by-star-power-of-mexican-tv-actress-not-sean-penn.html&#34;,&#34;byline&#34;:&#34;By PAULINA VILLEGAS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:53.698-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:53.698-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;The actress Kate del Castillo in Hollywood in November.&#34;,&#34;copyright&#34;:&#34;Mark Ralston/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:209,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:1024,&#34;width&#34;:933},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:2048,&#34;width&#34;:1866},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;22dd6af8-0ea9-4cfb-9422-74c5e896d65f&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;Politics: Everything’s Relative&#34;,&#34;author&#34;:&#34;GAIL COLLINS&#34;,&#34;abstract&#34;:&#34;Here are rules for dealing with family members showing up in the presidential race, like when to give them a break and when to go for the jugular.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/politics-everythings-relative.html&#34;,&#34;byline&#34;:&#34;By GAIL COLLINS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:52.612-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:52.612-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Earl Wilson/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbStandard-v5.png&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-articleInline-v5.png&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-jumbo-v5.png&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:228,&#34;width&#34;:342},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-superJumbo-v5.png&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:228,&#34;width&#34;:342},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbLarge-v7.png&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-mediumThreeByTwo210-v5.png&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;686c0ea7-af91-48de-b6db-2c7035408d31&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;Jakarta Attack Kills 2, Raising Fears of Growing ISIS Reach&#34;,&#34;author&#34;:&#34;JOE COCHRANE and THOMAS FULLER&#34;,&#34;abstract&#34;:&#34;The two civilians killed in the explosions and gunfire were a Canadian and an Indonesian, senior officials reported. Five assailants were also killed.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/world/asia/jakarta-explosion.html&#34;,&#34;byline&#34;:&#34;By JOE COCHRANE and THOMAS FULLER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:49.387-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:49.387-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Bay Ismoyo/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:139,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:748,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1496,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;45a78a90-74dc-4958-aef4-d1f3e695c36a&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Other Obama Legacy&#34;,&#34;author&#34;:&#34;CHARLES M. BLOW&#34;,&#34;abstract&#34;:&#34;For many young people, the first president they consciously registered was a black man.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/the-other-obama-legacy.html&#34;,&#34;byline&#34;:&#34;By CHARLES M. BLOW&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:47.456-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:47.456-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;President Obama bends over so the son of a White House staff member can touch his hair during a visit to the Oval Office.&#34;,&#34;copyright&#34;:&#34;Pete Souza/The White House&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:128,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1012},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1012},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;cbb5b09c-bf63-44f0-9bda-c5443b435c89&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Tempting of Bernie Sanders&#34;,&#34;author&#34;:&#34;ROSS DOUTHAT&#34;,&#34;abstract&#34;:&#34;Is he ruthless enough to win?&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/the-tempting-of-bernie-sanders.html&#34;,&#34;byline&#34;:&#34;By ROSS DOUTHAT&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:46.422-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:46.422-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Scott Morgan/Reuters&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:264,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:653,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1305,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;2e8d771a-4d16-4421-83ea-92a599497890&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Food&#34;,&#34;title&#34;:&#34;At Thomas Keller’s Per Se, Slips and Stumbles&#34;,&#34;author&#34;:&#34;PETE WELLS&#34;,&#34;abstract&#34;:&#34;A new look at one of the nation’s landmark restaurants.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/13/dining/pete-wells-per-se-review.html&#34;,&#34;byline&#34;:&#34;By PETE WELLS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:41.353-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:41.353-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-13&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Karsten Moran for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square320-v2.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-sfSpan-v2.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:684,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1367,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square640-v2.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo210-v2.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo440-v2.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;7efce391-6d6f-4153-9bd2-b4022b06ad7d&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;U.S. Will Track Secret Buyers of Luxury Real Estate&#34;,&#34;author&#34;:&#34;LOUISE STORY&#34;,&#34;abstract&#34;:&#34;The initiative will start in Manhattan and Miami-Dade County as part of a broader federal effort to focus on money laundering in real estate.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/us-will-track-secret-buyers-of-luxury-real-estate.html&#34;,&#34;byline&#34;:&#34;By LOUISE STORY&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:40.794-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:40.794-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Condominiums at the Time Warner Center were found to have a number of hidden owners over a decade who had been the subjects of government investigations.&#34;,&#34;copyright&#34;:&#34;Edward Caruso for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:152,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:819,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1639,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;9bfb4871-a656-4e31-a53f-f97cfeaa48bf&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Business Day&#34;,&#34;title&#34;:&#34;Al Jazeera America to Shut Down by April&#34;,&#34;author&#34;:&#34;JOHN KOBLIN&#34;,&#34;abstract&#34;:&#34;The cable news outlet, which began broadcasting in August 2013, said it would expand its digital presence in the United States.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/business/media/al-jazeera-america-to-shut-down-in-april.html&#34;,&#34;byline&#34;:&#34;By JOHN KOBLIN&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:38.092-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:38.092-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Al Jazeera America debuted in August 2013 after it bought Al Gore’s Current TV for $500 million.&#34;,&#34;copyright&#34;:&#34;Suzanne DeChillo/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;7f138454-c7cf-4667-8135-b46f4bd0cdd4&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Powerball Has 3 Big Winners, in California, Florida and Tennessee&#34;,&#34;author&#34;:&#34;ASHLEY SOUTHALL and LIAM STACK&#34;,&#34;abstract&#34;:&#34;The winners will divide a record $1.5 billion jackpot, with a cash option of $983.5 million. In addition, eight tickets that won $2 million were sold in seven states.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/numbers-chosen-for-powerball-with-biggest-jackpot-ever.html&#34;,&#34;byline&#34;:&#34;By ASHLEY SOUTHALL and LIAM STACK&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:36.999-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:36.999-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;People lined up to buy Powerball tickets in Hawthorne, Calif., on Wednesday. Record sales drove up the largest jackpot in United States history to $1.5 billion.&#34;,&#34;copyright&#34;:&#34;Mark Ralston/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:137,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:740,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1480,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;12239fa3-1195-4791-adfd-b8070fbc715b&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;Why I Will Never Vote for Donald Trump&#34;,&#34;author&#34;:&#34;PETER WEHNER&#34;,&#34;abstract&#34;:&#34;Party loyalty has limits. Mr. Trump has altered the political equation because he has altered the moral equation.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/why-i-will-never-vote-for-donald-trump.html&#34;,&#34;byline&#34;:&#34;By PETER WEHNER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:35.752-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:35.752-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;West Des Moines, Iowa&#34;,&#34;copyright&#34;:&#34;Jae C. Hong/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1364,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;34703da9-65ac-402c-91bd-051927152b92&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Ted Cruz Starts to Crack G.O.P. Establishment’s Wall of Opposition&#34;,&#34;author&#34;:&#34;JONATHAN MARTIN&#34;,&#34;abstract&#34;:&#34;Mr. Cruz, a candidate who built his name challenging his party’s leadership, has begun wooing entrenched power brokers, and some of them are listening.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-starts-to-crack-gop-establishments-wall-of-opposition.html&#34;,&#34;byline&#34;:&#34;By JONATHAN MARTIN&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:34.653-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:34.653-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Senator Ted Cruz on the campaign trail in Hudson, N.H., on Tuesday. He has quietly begun wooing some of the party’s most entrenched donors and officials.&#34;,&#34;copyright&#34;:&#34;Matt Rourke/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square320-v2.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square640-v2.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;b04d9dfc-0644-41a6-ba3a-799d88fb26a5&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Movies&#34;,&#34;title&#34;:&#34;Oscar Nominations 2016&#34;,&#34;author&#34;:&#34;BROOKS BARNES and MICHAEL CIEPLY&#34;,&#34;abstract&#34;:&#34;“The Revenant” and “Mad Max: Fury Road” were showered with honors by the Academy of Motion Picture Arts and Sciences, picking up Oscar nominations for best picture and best director.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/movies/oscar-nominations.html&#34;,&#34;byline&#34;:&#34;By BROOKS BARNES and MICHAEL CIEPLY&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:32.864-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:32.864-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;“The Revenant” leads this year’s Oscar nominations with 12.&#34;,&#34;copyright&#34;:&#34;20th Century Fox&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:79,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:428,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:855,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;8c495ce4-7c9d-4eec-af4a-6e199d7c6b97&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;The Upshot&#34;,&#34;title&#34;:&#34;Dear Powerball Winner: Take Our Advice and Take the Annuity&#34;,&#34;author&#34;:&#34;JOSH BARRO&#34;,&#34;abstract&#34;:&#34;Comparing payout options is fun to imagine, but also a useful way to think about taxes, investment opportunities and human nature.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/13/upshot/dear-powerball-winner-take-our-advice-and-take-the-annuity.html&#34;,&#34;byline&#34;:&#34;By JOSH BARRO&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:30.919-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:30.919-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-13&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Actually, it’s either $1.5 billion (which the sign cannot accommodate) or $930 million, depending on how you choose to take your winnings.&#34;,&#34;copyright&#34;:&#34;Seth Wenig/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;e9590738-be1f-411e-871c-da5e243a9a0d&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Movies&#34;,&#34;title&#34;:&#34;Alan Rickman, Actor Known for ‘Harry Potter’ and ‘Die Hard,’ Dies at 69&#34;,&#34;author&#34;:&#34;DAVE ITZKOFF and KATIE ROGERS&#34;,&#34;abstract&#34;:&#34;The British actor brought an erudite dignity to film roles like the nefarious mastermind of “Die Hard” and the dour master of potions in the “Harry Potter” series.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/obituaries/alan-rickman-dies-at-69.html&#34;,&#34;byline&#34;:&#34;By DAVE ITZKOFF and KATIE ROGERS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:30.564-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:30.564-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Alan Rickman at the Golden Theater in New York City in 2011.&#34;,&#34;copyright&#34;:&#34;Sara Krulwich/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;83c9a570-f5e5-4aeb-b32b-963aba50ae4a&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Ted Cruz Didn’t Report Goldman Sachs Loan in a Senate Race&#34;,&#34;author&#34;:&#34;MIKE McINTIRE&#34;,&#34;abstract&#34;:&#34;As Mr. Cruz tells it, loyalty and sacrifice helped finance his 2012 Senate bid in Texas. Turns out, a Goldman Sachs loan did as well.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-wall-street-loan-senate-bid-2012.html&#34;,&#34;byline&#34;:&#34;By MIKE McINTIRE&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:28.168-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:28.168-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Ted and Heidi Cruz, after he won the runoff for the Republican nomination for a Senate seat from Texas in July 2012.&#34;,&#34;copyright&#34;:&#34;Johnny Hanson/Houston Chronicle, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:651,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1302,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;ba1fa5f0-50b1-4e0c-8cc7-88e993ae108a&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;Example&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;Example abstract&#34;,&#34;url&#34;:&#34;&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:34:52.506-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:34:52.506-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:false}]</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -        <div id="1top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -                <p><h4> Response Headers</h4></p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td> application/json</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">{&#34;uuid&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;source&#34;:&#34;ssss.comaaaa&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true}</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -        <div id="2top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -                <p><h4> Response Headers</h4></p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td> application/json</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a&#34;,&#34;article_id&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;is_human&#34;:false,&#34;reader_id&#34;:&#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&#34;,&#34;content_url&#34;:&#34;://&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&#34;,&#34;file_type&#34;:&#34;audio/mp3&#34;,&#34;created_date&#34;:&#34;2016-01-21T13:37:35.731-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&#34;,&#34;email&#34;:&#34;&#34;,&#34;name&#34;:&#34;&#34;}},{&#34;uuid&#34;:&#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T23:40:56.972-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a&#34;,&#34;article_id&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:20.658-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;4ee0acef-a0f7-4676-b249-f8d1e2c8582c&#34;,&#34;article_id&#34;:&#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://ssss.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:09:53.15-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;2d9d119f-2b97-45a6-9952-0a14d7f61ecb&#34;,&#34;article_id&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:05:22.602-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;fd047772-939e-40c4-80c3-82cde4c166f0&#34;,&#34;article_id&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd047772-939e-40c4-80c3-82cde4c166f0.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd047772-939e-40c4-80c3-82cde4c166f0.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:02:57.762-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;28295897-f834-4de9-bd5a-ab3ac782cd02&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:51:02.608-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;3386aeaa-1bc4-4220-bd10-f1c859cb92b6&#34;,&#34;article_id&#34;:&#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://google.com/sadasd/asdasd&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:42:07.389-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;989f74de-e748-4ba0-b601-ec1b98d16dac&#34;,&#34;article_id&#34;:&#34;f52a194d-e449-4315-8dc6-4cb87f407588&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://google.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/989f74de-e748-4ba0-b601-ec1b98d16dac.mp4&#34;,&#34;raw_url&#34;:&#34;&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:37:35.432-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}}]</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -        <div id="3top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -                <p><h4> Response Headers</h4></p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td> application/json</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">{&#34;uuid&#34;:&#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T23:40:56.972-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}}</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -        <div id="4top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td>  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">415</pre>
                                                  -
                                                  -                <p><h4> Response Headers</h4></p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td> text/plain; charset=utf-8</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">Please provide an mp3 or mp4 audio file
                                                  -</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -        <div id="5top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Content-Type</td>
                                                  -                        <td>  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Referer</td>
                                                  -                        <td>
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -        <div id="6top"  role="tabpanel" class="tab-pane col-md-10">
                                                  -
                                                  -
                                                  -                <p> <H4> Request Headers </H4> </p>
                                                  -                <table class="table table-bordered table-striped">
                                                  -                    <tr>
                                                  -                        <th>Key</th>
                                                  -                        <th>Value</th>
                                                  -                    </tr>
                                                  -
                                                  -                    <tr>
                                                  -                        <td>Upgrade-Insecure-Requests</td>
                                                  -                        <td>  1
                                                  -</td>
                                                  -                    </tr>
                                                  -
                                                  -                </table>
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                <p><h4> Response Code</h4></p>
                                                  -                <pre class="prettyprint lang-json">200</pre>
                                                  -
                                                  -
                                                  -                <p> <H4> Response Body </H4> </p>
                                                  -                <pre class="prettyprint lang-json">&lt;!DOCTYPE html&gt;
                                                  -&lt;html&gt;
                                                  -&lt;head lang=&#34;en&#34;&gt;
                                                  -    &lt;title&gt; API Documentation &lt;/title&gt;
                                                  -    &lt;link rel=&#34;stylesheet&#34; href=&#34;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css&#34;&gt;
                                                  -    &lt;script src=&#34;http://google-code-prettify.googlecode.com/svn/loader/run_prettify.js&#34;&gt;&lt;/script&gt;
                                                  -    &lt;link href=&#39;http://fonts.googleapis.com/css?family=Roboto&#39; rel=&#39;stylesheet&#39; type=&#39;text/css&#39;&gt;
                                                  -    &lt;link rel=&#34;stylesheet&#34; href=&#34;http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css&#34;&gt;
                                                  -
                                                  -    &lt;link rel=&#34;stylesheet&#34; href=&#34;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css&#34;&gt;
                                                  -    &lt;script src=&#34;https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js&#34;&gt;&lt;/script&gt;
                                                  -
                                                  -    &lt;script src=&#34;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js&#34;&gt;&lt;/script&gt;
                                                  -    &lt;style type=&#34;text/css&#34;&gt;
                                                  -        body {
                                                  -            font-family: &#39;Roboto&#39;, sans-serif;
                                                  -        }
                                                  -        .hidden {
                                                  -            display:none;
                                                  -        }
                                                  -    &lt;/style&gt;
                                                  -    &lt;style type=&#34;text/css&#34;&gt;
                                                  -        pre.prettyprint {
                                                  -            border: 1px solid #ccc;
                                                  -            margin-bottom: 0;
                                                  -            padding: 9.5px;
                                                  -        }
                                                  -    &lt;/style&gt;
                                                  -    &lt;script src=&#34;https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js&#34;&gt;&lt;/script&gt;
                                                  -    &lt;script&gt;
                                                  -        hljs.initHighlightingOnLoad();
                                                  -        function toggler(divId) {
                                                  -           $(&#34;#&#34; &#43; divId).toggle();
                                                  -        }
                                                  -    &lt;/script&gt;
                                                  -&lt;/head&gt;
                                                  -&lt;body&gt;
                                                  -&lt;nav class=&#34;navbar navbar-default navbar-fixed-top&#34;&gt;
                                                  -    &lt;div class=&#34;container-fluid&#34;&gt;
                                                  -
                                                  -        &lt;div class=&#34;navbar-header&#34;&gt;
                                                  -            &lt;button type=&#34;button&#34; class=&#34;navbar-toggle collapsed&#34; data-toggle=&#34;collapse&#34;
                                                  -                    data-target=&#34;#bs-example-navbar-collapse-1&#34;&gt;
                                                  -                &lt;span class=&#34;sr-only&#34;&gt;Toggle navigation&lt;/span&gt;
                                                  -                &lt;span class=&#34;icon-bar&#34;&gt;&lt;/span&gt;
                                                  -                &lt;span class=&#34;icon-bar&#34;&gt;&lt;/span&gt;
                                                  -                &lt;span class=&#34;icon-bar&#34;&gt;&lt;/span&gt;
                                                  -            &lt;/button&gt;
                                                  -            &lt;a class=&#34;navbar-brand&#34; href=&#34;#&#34;&gt;Outloud! Api Documentation&lt;/a&gt;
                                                  -            &lt;p class=&#34;navbar-text&#34;&gt;Developed by Gophers at &lt;a href=&#34;http://betacraft.co&#34;&gt;Betacraft&lt;/a&gt;&lt;/p&gt;
                                                  -        &lt;/div&gt;
                                                  -
                                                  -
                                                  -    &lt;/div&gt;
                                                  -
                                                  -&lt;/nav&gt;
                                                  -&lt;div class=&#34;container-fluid&#34; style=&#34;margin-top: 70px;margin-bottom: 20px;&#34;&gt;
                                                  -    &lt;div class=&#34;container-fluid&#34;&gt;
                                                  -    &lt;div class=&#34;col-md-4&#34;&gt;
                                                  -        &lt;div class=&#34;panel panel-default&#34;&gt;
                                                  -              &lt;div class=&#34;panel-heading&#34;&gt;Base Urls&lt;/div&gt;
                                                  -              &lt;div class=&#34;panel-body&#34;&gt;
                                                  -
                                                  -              &lt;/div&gt;
                                                  -            &lt;/div&gt;
                                                  -        &lt;ul class=&#34;nav nav-pills nav-stacked&#34; role=&#34;tablist&#34;&gt;
                                                  -
                                                  -                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#0top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;GET : /api/feed&lt;/a&gt;&lt;/li&gt;
                                                  -
                                                  -                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#1top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;GET : /api/article/98cf2e56-1576-486d-9451-8322bcd0b94d&lt;/a&gt;&lt;/li&gt;
                                                  -
                                                  -                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#2top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;GET : /api/readings&lt;/a&gt;&lt;/li&gt;
                                                  -
                                                  -                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#3top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;GET : /api/reading/2132ccf3-a314-4b33-b647-1f3ebcd9256d&lt;/a&gt;&lt;/li&gt;
                                                  -
                                                  -                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#4top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;POST : /api/reading/new&lt;/a&gt;&lt;/li&gt;
                                                  -
                                                  -                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#5top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;POST : /api/channel/add&lt;/a&gt;&lt;/li&gt;
                                                  -
                                                  -        &lt;ul&gt;
                                                  -    &lt;/div&gt;
                                                  -    &lt;div class=&#34;col-md-8 tab-content&#34;&gt;
                                                  -
                                                  -        &lt;div id=&#34;0top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Referer&lt;/td&gt;
                                                  -                        &lt;td&gt;
                                                  -&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                  -                        &lt;td&gt; application/json&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;[{&amp;#34;uuid&amp;#34;:&amp;#34;98cf2e56-1576-486d-9451-8322bcd0b94d&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;ssss.comaaaa&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://ssss.comaaaa&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:16:10.094-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:16:10.094-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;ssss.com&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://ssss.com&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:09:51.342-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:09:51.342-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;://a.com&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:02:46.982-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:02:46.982-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;://a&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T15:50:52.131-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:50:52.131-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;google.com&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://google.com/sadasd/asdasd&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T15:41:56.841-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:41:56.841-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;f52a194d-e449-4315-8dc6-4cb87f407588&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;google.com&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://google.com&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T15:37:26.731-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:37:26.731-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true}]&lt;/pre&gt;
                                                  -
                                                  -                &lt;hr&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Referer&lt;/td&gt;
                                                  -                        &lt;td&gt;
                                                  -&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; URL Params &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;is_read&lt;/td&gt;
                                                  -                        &lt;td&gt; false&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                  -                        &lt;td&gt; application/json&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;[{&amp;#34;uuid&amp;#34;:&amp;#34;73f9b780-10d3-45e8-946b-2de9541e05e0&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;The Brutalism of Ted Cruz&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;DAVID BROOKS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The Texas Republican lacks the Christian virtues many evangelical voters may expect.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/12/opinion/the-brutalism-of-ted-cruz.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By DAVID BROOKS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T14:12:58.323-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T14:12:58.323-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-12&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Eric Thayer for The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:132,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:710,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1419,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;36ecf666-8d81-4a37-be59-a304eef298bc&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;World&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Iran’s Swift Release of U.S. Sailors Hailed as a Sign of Warmer Relations&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;It remained unclear who decided to release the sailors or how their two patrol boats ended up in Iranian territorial waters.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/world/middleeast/iran-navy-crew-release.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:58.979-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:58.979-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;A photo released by the Revolutionary Guards on Wednesday shows detained American sailors in an undisclosed location in Iran.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Sepahnews, via Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbStandard-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:107,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-sfSpan-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:576,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1125,&amp;#34;width&amp;#34;:2000},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbLarge-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;79a207ef-6afc-4238-be80-858ed266e550&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Arts&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;How David Bowie Challenged MTV on Race&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;WESLEY MORRIS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;A candid exchange in 1983 is sobering for its continued relevance and useful for what it says about Mr. Bowie’s sense of social awareness.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/arts/music/how-david-bowie-used-his-stardom-and-race-to-challenge-mtv.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By WESLEY MORRIS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:57.747-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:57.747-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;David Bowie at Madison Square Garden in 1976.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Allan Tannenbaum/Getty Images&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:121,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:379,&amp;#34;width&amp;#34;:594},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:379,&amp;#34;width&amp;#34;:594},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;c119f1f8-dfc5-43dd-b0a3-eac519e8e507&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Arts&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Iggy Pop on David Bowie: ‘He Resurrected Me’&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JON PARELES&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;In an interview, the Detroit rocker, who collaborated with Mr. Bowie in the 1970s, talked about their friendship and their work through the years.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/arts/music/david-bowie-iggy-pop.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JON PARELES&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:56.43-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:56.43-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Iggy Pop, left, and David Bowie, during the tour for Mr. Pop’s 1977 album “The Idiot.”&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Rex Features, via Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:131,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:704,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1408,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;57cfab66-99a1-473d-bec2-f1a2da5c259b&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;World&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;El Chapo Enticed by Star Power of Mexican Actress, Not Sean Penn&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;PAULINA VILLEGAS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Conversations between the drug lord Joaquín Guzmán Loera and the actress Kate del Castillo offer a window into the psyche of one of the world’s most wanted criminals.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/world/americas/el-chapo-enticed-by-star-power-of-mexican-tv-actress-not-sean-penn.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By PAULINA VILLEGAS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:53.698-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:53.698-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;The actress Kate del Castillo in Hollywood in November.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Mark Ralston/Agence France-Presse — Getty Images&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:209,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:1024,&amp;#34;width&amp;#34;:933},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:2048,&amp;#34;width&amp;#34;:1866},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;22dd6af8-0ea9-4cfb-9422-74c5e896d65f&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Politics: Everything’s Relative&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;GAIL COLLINS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Here are rules for dealing with family members showing up in the presidential race, like when to give them a break and when to go for the jugular.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/opinion/politics-everythings-relative.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By GAIL COLLINS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:52.612-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:52.612-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Earl Wilson/The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbStandard-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-articleInline-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-jumbo-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:228,&amp;#34;width&amp;#34;:342},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-superJumbo-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:228,&amp;#34;width&amp;#34;:342},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbLarge-v7.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-mediumThreeByTwo210-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;686c0ea7-af91-48de-b6db-2c7035408d31&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;World&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Jakarta Attack Kills 2, Raising Fears of Growing ISIS Reach&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JOE COCHRANE and THOMAS FULLER&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The two civilians killed in the explosions and gunfire were a Canadian and an Indonesian, senior officials reported. Five assailants were also killed.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/15/world/asia/jakarta-explosion.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JOE COCHRANE and THOMAS FULLER&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:49.387-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:49.387-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-15&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Bay Ismoyo/Agence France-Presse — Getty Images&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:139,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:748,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1496,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;45a78a90-74dc-4958-aef4-d1f3e695c36a&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;The Other Obama Legacy&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;CHARLES M. BLOW&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;For many young people, the first president they consciously registered was a black man.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/opinion/the-other-obama-legacy.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By CHARLES M. BLOW&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:47.456-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:47.456-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;President Obama bends over so the son of a White House staff member can touch his hair during a visit to the Oval Office.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Pete Souza/The White House&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:128,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:682,&amp;#34;width&amp;#34;:1012},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:682,&amp;#34;width&amp;#34;:1012},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;cbb5b09c-bf63-44f0-9bda-c5443b435c89&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;The Tempting of Bernie Sanders&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;ROSS DOUTHAT&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Is he ruthless enough to win?&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/the-tempting-of-bernie-sanders.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By ROSS DOUTHAT&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:46.422-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:46.422-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Scott Morgan/Reuters&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:121,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:264,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:653,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1305,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;2e8d771a-4d16-4421-83ea-92a599497890&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Food&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;At Thomas Keller’s Per Se, Slips and Stumbles&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;PETE WELLS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;A new look at one of the nation’s landmark restaurants.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/13/dining/pete-wells-per-se-review.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By PETE WELLS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:41.353-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:41.353-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-13&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Karsten Moran for The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square320-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbStandard-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-sfSpan-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:684,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1367,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square640-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbLarge-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo210-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo440-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;7efce391-6d6f-4153-9bd2-b4022b06ad7d&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;U.S.&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;U.S. Will Track Secret Buyers of Luxury Real Estate&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;LOUISE STORY&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The initiative will start in Manhattan and Miami-Dade County as part of a broader federal effort to focus on money laundering in real estate.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/us/us-will-track-secret-buyers-of-luxury-real-estate.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By LOUISE STORY&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:40.794-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:40.794-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Condominiums at the Time Warner Center were found to have a number of hidden owners over a decade who had been the subjects of government investigations.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Edward Caruso for The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:152,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:819,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1639,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;9bfb4871-a656-4e31-a53f-f97cfeaa48bf&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Business Day&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Al Jazeera America to Shut Down by April&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JOHN KOBLIN&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The cable news outlet, which began broadcasting in August 2013, said it would expand its digital presence in the United States.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/business/media/al-jazeera-america-to-shut-down-in-april.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JOHN KOBLIN&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:38.092-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:38.092-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Al Jazeera America debuted in August 2013 after it bought Al Gore’s Current TV for $500 million.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Suzanne DeChillo/The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:683,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1365,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;7f138454-c7cf-4667-8135-b46f4bd0cdd4&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;U.S.&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Powerball Has 3 Big Winners, in California, Florida and Tennessee&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;ASHLEY SOUTHALL and LIAM STACK&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The winners will divide a record $1.5 billion jackpot, with a cash option of $983.5 million. In addition, eight tickets that won $2 million were sold in seven states.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/us/numbers-chosen-for-powerball-with-biggest-jackpot-ever.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By ASHLEY SOUTHALL and LIAM STACK&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:36.999-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:36.999-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;People lined up to buy Powerball tickets in Hawthorne, Calif., on Wednesday. Record sales drove up the largest jackpot in United States history to $1.5 billion.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Mark Ralston/Agence France-Presse — Getty Images&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:137,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:740,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1480,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;12239fa3-1195-4791-adfd-b8070fbc715b&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Why I Will Never Vote for Donald Trump&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;PETER WEHNER&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Party loyalty has limits. Mr. Trump has altered the political equation because he has altered the moral equation.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/why-i-will-never-vote-for-donald-trump.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By PETER WEHNER&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:35.752-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:35.752-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;West Des Moines, Iowa&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Jae C. Hong/Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:682,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1364,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;34703da9-65ac-402c-91bd-051927152b92&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;U.S.&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Ted Cruz Starts to Crack G.O.P. Establishment’s Wall of Opposition&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JONATHAN MARTIN&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Mr. Cruz, a candidate who built his name challenging his party’s leadership, has begun wooing entrenched power brokers, and some of them are listening.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-starts-to-crack-gop-establishments-wall-of-opposition.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JONATHAN MARTIN&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:34.653-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:34.653-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Senator Ted Cruz on the campaign trail in Hudson, N.H., on Tuesday. He has quietly begun wooing some of the party’s most entrenched donors and officials.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Matt Rourke/Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square320-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbStandard-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:683,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1365,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square640-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbLarge-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;b04d9dfc-0644-41a6-ba3a-799d88fb26a5&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Movies&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Oscar Nominations 2016&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;BROOKS BARNES and MICHAEL CIEPLY&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;“The Revenant” and “Mad Max: Fury Road” were showered with honors by the Academy of Motion Picture Arts and Sciences, picking up Oscar nominations for best picture and best director.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/15/movies/oscar-nominations.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By BROOKS BARNES and MICHAEL CIEPLY&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:32.864-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:32.864-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-15&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;“The Revenant” leads this year’s Oscar nominations with 12.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;20th Century Fox&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:79,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:428,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:855,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;8c495ce4-7c9d-4eec-af4a-6e199d7c6b97&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;The Upshot&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Dear Powerball Winner: Take Our Advice and Take the Annuity&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JOSH BARRO&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Comparing payout options is fun to imagine, but also a useful way to think about taxes, investment opportunities and human nature.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/13/upshot/dear-powerball-winner-take-our-advice-and-take-the-annuity.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JOSH BARRO&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:30.919-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:30.919-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-13&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Actually, it’s either $1.5 billion (which the sign cannot accommodate) or $930 million, depending on how you choose to take your winnings.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Seth Wenig/Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:683,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1365,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;e9590738-be1f-411e-871c-da5e243a9a0d&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Movies&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Alan Rickman, Actor Known for ‘Harry Potter’ and ‘Die Hard,’ Dies at 69&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;DAVE ITZKOFF and KATIE ROGERS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The British actor brought an erudite dignity to film roles like the nefarious mastermind of “Die Hard” and the dour master of potions in the “Harry Potter” series.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/15/obituaries/alan-rickman-dies-at-69.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By DAVE ITZKOFF and KATIE ROGERS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:30.564-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:30.564-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-15&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Alan Rickman at the Golden Theater in New York City in 2011.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Sara Krulwich/The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:683,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1365,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;83c9a570-f5e5-4aeb-b32b-963aba50ae4a&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;U.S.&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Ted Cruz Didn’t Report Goldman Sachs Loan in a Senate Race&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;MIKE McINTIRE&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;As Mr. Cruz tells it, loyalty and sacrifice helped finance his 2012 Senate bid in Texas. Turns out, a Goldman Sachs loan did as well.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-wall-street-loan-senate-bid-2012.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By MIKE McINTIRE&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:28.168-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:28.168-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Ted and Heidi Cruz, after he won the runoff for the Republican nomination for a Senate seat from Texas in July 2012.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Johnny Hanson/Houston Chronicle, via Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:121,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:651,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1302,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;ba1fa5f0-50b1-4e0c-8cc7-88e993ae108a&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Example&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Example abstract&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:34:52.506-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:34:52.506-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:false}]&lt;/pre&gt;
                                                  -
                                                  -                &lt;hr&gt;
                                                  -
                                                  -        &lt;/div&gt;
                                                  -
                                                  -        &lt;div id=&#34;1top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Referer&lt;/td&gt;
                                                  -                        &lt;td&gt;
                                                  -&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                  -                        &lt;td&gt; application/json&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;{&amp;#34;uuid&amp;#34;:&amp;#34;98cf2e56-1576-486d-9451-8322bcd0b94d&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;ssss.comaaaa&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://ssss.comaaaa&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:16:10.094-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:16:10.094-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true}&lt;/pre&gt;
                                                  -
                                                  -                &lt;hr&gt;
                                                  -
                                                  -        &lt;/div&gt;
                                                  -
                                                  -        &lt;div id=&#34;2top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Referer&lt;/td&gt;
                                                  -                        &lt;td&gt;
                                                  -&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                  -                        &lt;td&gt; application/json&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;[{&amp;#34;uuid&amp;#34;:&amp;#34;fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;98cf2e56-1576-486d-9451-8322bcd0b94d&amp;#34;,&amp;#34;is_human&amp;#34;:false,&amp;#34;reader_id&amp;#34;:&amp;#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/mp3&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-21T13:37:35.731-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T23:40:56.972-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;98cf2e56-1576-486d-9451-8322bcd0b94d&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;http://ssss.comaaaa&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:16:20.658-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;4ee0acef-a0f7-4676-b249-f8d1e2c8582c&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;http://ssss.com&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:09:53.15-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;2d9d119f-2b97-45a6-9952-0a14d7f61ecb&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a.com&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:05:22.602-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;fd047772-939e-40c4-80c3-82cde4c166f0&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a.com&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd047772-939e-40c4-80c3-82cde4c166f0.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd047772-939e-40c4-80c3-82cde4c166f0.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:02:57.762-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;28295897-f834-4de9-bd5a-ab3ac782cd02&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:51:02.608-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;3386aeaa-1bc4-4220-bd10-f1c859cb92b6&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;http://google.com/sadasd/asdasd&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:42:07.389-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;989f74de-e748-4ba0-b601-ec1b98d16dac&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;f52a194d-e449-4315-8dc6-4cb87f407588&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;http://google.com&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/989f74de-e748-4ba0-b601-ec1b98d16dac.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:37:35.432-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}}]&lt;/pre&gt;
                                                  -
                                                  -                &lt;hr&gt;
                                                  -
                                                  -        &lt;/div&gt;
                                                  -
                                                  -        &lt;div id=&#34;3top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Referer&lt;/td&gt;
                                                  -                        &lt;td&gt;
                                                  -&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                  -                        &lt;td&gt; application/json&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;{&amp;#34;uuid&amp;#34;:&amp;#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T23:40:56.972-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}}&lt;/pre&gt;
                                                  -
                                                  -                &lt;hr&gt;
                                                  -
                                                  -        &lt;/div&gt;
                                                  -
                                                  -        &lt;div id=&#34;4top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                  -                        &lt;td&gt;  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                  -&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Referer&lt;/td&gt;
                                                  -                        &lt;td&gt;
                                                  -&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;415&lt;/pre&gt;
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                  -                        &lt;td&gt; text/plain; charset=utf-8&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;Please provide an mp3 or mp4 audio file
                                                  -&lt;/pre&gt;
                                                  -
                                                  -                &lt;hr&gt;
                                                  -
                                                  -        &lt;/div&gt;
                                                  -
                                                  -        &lt;div id=&#34;5top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                  -
                                                  -
                                                  -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                  -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;th&gt;Key&lt;/th&gt;
                                                  -                        &lt;th&gt;Value&lt;/th&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                  -                        &lt;td&gt;  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                  -&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                    &lt;tr&gt;
                                                  -                        &lt;td&gt;Referer&lt;/td&gt;
                                                  -                        &lt;td&gt;
                                                  -&lt;/td&gt;
                                                  -                    &lt;/tr&gt;
                                                  -
                                                  -                &lt;/table&gt;
                                                  -
                                                  -
                                                  -
                                                  -
                                                  -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                  -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                  -
                                                  -
                                                  -                &lt;hr&gt;
                                                  -
                                                  -        &lt;/div&gt;
                                                  -
                                                  -    &lt;/div&gt;
                                                  -&lt;/div&gt;
                                                  -&lt;/div&gt;
                                                  -&lt;hr&gt;
                                                  -&lt;/body&gt;
                                                  -&lt;/html&gt;</pre>
                                                  -
                                                  -                <hr>
                                                  -
                                                  -        </div>
                                                  -
                                                  -    </div>
                                                  -</div>
                                                  -</div>
                                                  -<hr>
                                                  -</body>
                                                  -</html>
                                                  - -
                                                  - -
                                                  - -
                                                  -
                                                  -
                                                  -
                                                  - diff --git a/src/apps/todos/index.html b/src/apps/todos/index.html index 805ea5d5..b6829412 100755 --- a/src/apps/todos/index.html +++ b/src/apps/todos/index.html @@ -1,1761 +1,103 @@ - - API Documentation - - - - - - - - - - - + + + + + + + + + - - -
                                                  -
                                                  - -
                                                  - -
                                                  - - -

                                                  Request Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Referer -
                                                  - - - - -

                                                  Response Code

                                                  -
                                                  200
                                                  - -

                                                  Response Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Content-Type application/json
                                                  - - -

                                                  Response Body

                                                  -
                                                  [{"uuid":"98cf2e56-1576-486d-9451-8322bcd0b94d","source":"ssss.comaaaa","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://ssss.comaaaa","byline":"","updated_date":"2016-01-03T16:16:10.094-07:00","created_date":"2016-01-03T16:16:10.094-07:00","published_date":"","media":[],"is_read":true},{"uuid":"d085529c-dfbd-4e1f-9da6-a35119e0c6d7","source":"ssss.com","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://ssss.com","byline":"","updated_date":"2016-01-03T16:09:51.342-07:00","created_date":"2016-01-03T16:09:51.342-07:00","published_date":"","media":[],"is_read":true},{"uuid":"1965ded8-9fe5-474d-b164-2ef9eabf4ced","source":"","popularity":"","section":"","title":"","author":"","abstract":"","url":"://a.com","byline":"","updated_date":"2016-01-03T16:02:46.982-07:00","created_date":"2016-01-03T16:02:46.982-07:00","published_date":"","media":[],"is_read":true},{"uuid":"bb44c161-07a3-4641-9323-e21b3e8bbcd8","source":"","popularity":"","section":"","title":"","author":"","abstract":"","url":"://a","byline":"","updated_date":"2016-01-03T15:50:52.131-07:00","created_date":"2016-01-03T15:50:52.131-07:00","published_date":"","media":[],"is_read":true},{"uuid":"cc99e58d-6f9a-4990-b266-0cc7fade8fe9","source":"google.com","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://google.com/sadasd/asdasd","byline":"","updated_date":"2016-01-03T15:41:56.841-07:00","created_date":"2016-01-03T15:41:56.841-07:00","published_date":"","media":[],"is_read":true},{"uuid":"f52a194d-e449-4315-8dc6-4cb87f407588","source":"google.com","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://google.com","byline":"","updated_date":"2016-01-03T15:37:26.731-07:00","created_date":"2016-01-03T15:37:26.731-07:00","published_date":"","media":[],"is_read":true}]
                                                  - -
                                                  - - -

                                                  Request Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Referer -
                                                  - - - -

                                                  URL Params

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  is_read false
                                                  - - -

                                                  Response Code

                                                  -
                                                  200
                                                  - -

                                                  Response Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Content-Type application/json
                                                  - - -

                                                  Response Body

                                                  -
                                                  [{"uuid":"73f9b780-10d3-45e8-946b-2de9541e05e0","source":"The New York Times","popularity":"","section":"Opinion","title":"The Brutalism of Ted Cruz","author":"DAVID BROOKS","abstract":"The Texas Republican lacks the Christian virtues many evangelical voters may expect.","url":"http://www.nytimes.com/2016/01/12/opinion/the-brutalism-of-ted-cruz.html","byline":"By DAVID BROOKS","updated_date":"2016-01-14T14:12:58.323-07:00","created_date":"2016-01-14T14:12:58.323-07:00","published_date":"2016-01-12","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Eric Thayer for The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-articleInline.jpg","format":"Normal","height":132,"width":190},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-jumbo.jpg","format":"Jumbo","height":710,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-superJumbo.jpg","format":"superJumbo","height":1419,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"36ecf666-8d81-4a37-be59-a304eef298bc","source":"The New York Times","popularity":"","section":"World","title":"Iran’s Swift Release of U.S. Sailors Hailed as a Sign of Warmer Relations","author":"DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER","abstract":"It remained unclear who decided to release the sailors or how their two patrol boats ended up in Iranian territorial waters.","url":"http://www.nytimes.com/2016/01/14/world/middleeast/iran-navy-crew-release.html","byline":"By DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER","updated_date":"2016-01-14T13:22:58.979-07:00","created_date":"2016-01-14T13:22:58.979-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"A photo released by the Revolutionary Guards on Wednesday shows detained American sailors in an undisclosed location in Iran.","copyright":"Sepahnews, via Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbStandard-v2.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-articleInline.jpg","format":"Normal","height":107,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-sfSpan-v2.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-jumbo.jpg","format":"Jumbo","height":576,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-superJumbo.jpg","format":"superJumbo","height":1125,"width":2000},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbLarge-v2.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"79a207ef-6afc-4238-be80-858ed266e550","source":"The New York Times","popularity":"","section":"Arts","title":"How David Bowie Challenged MTV on Race","author":"WESLEY MORRIS","abstract":"A candid exchange in 1983 is sobering for its continued relevance and useful for what it says about Mr. Bowie’s sense of social awareness.","url":"http://www.nytimes.com/2016/01/14/arts/music/how-david-bowie-used-his-stardom-and-race-to-challenge-mtv.html","byline":"By WESLEY MORRIS","updated_date":"2016-01-14T13:22:57.747-07:00","created_date":"2016-01-14T13:22:57.747-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"David Bowie at Madison Square Garden in 1976.","copyright":"Allan Tannenbaum/Getty Images","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-articleInline.jpg","format":"Normal","height":121,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-jumbo.jpg","format":"Jumbo","height":379,"width":594},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-superJumbo.jpg","format":"superJumbo","height":379,"width":594},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"c119f1f8-dfc5-43dd-b0a3-eac519e8e507","source":"The New York Times","popularity":"","section":"Arts","title":"Iggy Pop on David Bowie: ‘He Resurrected Me’","author":"JON PARELES","abstract":"In an interview, the Detroit rocker, who collaborated with Mr. Bowie in the 1970s, talked about their friendship and their work through the years.","url":"http://www.nytimes.com/2016/01/14/arts/music/david-bowie-iggy-pop.html","byline":"By JON PARELES","updated_date":"2016-01-14T13:22:56.43-07:00","created_date":"2016-01-14T13:22:56.43-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Iggy Pop, left, and David Bowie, during the tour for Mr. Pop’s 1977 album “The Idiot.”","copyright":"Rex Features, via Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-articleInline.jpg","format":"Normal","height":131,"width":190},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-jumbo.jpg","format":"Jumbo","height":704,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-superJumbo.jpg","format":"superJumbo","height":1408,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"57cfab66-99a1-473d-bec2-f1a2da5c259b","source":"The New York Times","popularity":"","section":"World","title":"El Chapo Enticed by Star Power of Mexican Actress, Not Sean Penn","author":"PAULINA VILLEGAS","abstract":"Conversations between the drug lord Joaquín Guzmán Loera and the actress Kate del Castillo offer a window into the psyche of one of the world’s most wanted criminals.","url":"http://www.nytimes.com/2016/01/14/world/americas/el-chapo-enticed-by-star-power-of-mexican-tv-actress-not-sean-penn.html","byline":"By PAULINA VILLEGAS","updated_date":"2016-01-14T13:22:53.698-07:00","created_date":"2016-01-14T13:22:53.698-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"The actress Kate del Castillo in Hollywood in November.","copyright":"Mark Ralston/Agence France-Presse — Getty Images","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-articleInline.jpg","format":"Normal","height":209,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-jumbo.jpg","format":"Jumbo","height":1024,"width":933},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-superJumbo.jpg","format":"superJumbo","height":2048,"width":1866},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"22dd6af8-0ea9-4cfb-9422-74c5e896d65f","source":"The New York Times","popularity":"","section":"Opinion","title":"Politics: Everything’s Relative","author":"GAIL COLLINS","abstract":"Here are rules for dealing with family members showing up in the presidential race, like when to give them a break and when to go for the jugular.","url":"http://www.nytimes.com/2016/01/14/opinion/politics-everythings-relative.html","byline":"By GAIL COLLINS","updated_date":"2016-01-14T13:22:52.612-07:00","created_date":"2016-01-14T13:22:52.612-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Earl Wilson/The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbStandard-v5.png","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-articleInline-v5.png","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-jumbo-v5.png","format":"Jumbo","height":228,"width":342},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-superJumbo-v5.png","format":"superJumbo","height":228,"width":342},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbLarge-v7.png","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-mediumThreeByTwo210-v5.png","format":"mediumThreeByTwo210","height":140,"width":210}]}],"is_read":false},{"uuid":"686c0ea7-af91-48de-b6db-2c7035408d31","source":"The New York Times","popularity":"","section":"World","title":"Jakarta Attack Kills 2, Raising Fears of Growing ISIS Reach","author":"JOE COCHRANE and THOMAS FULLER","abstract":"The two civilians killed in the explosions and gunfire were a Canadian and an Indonesian, senior officials reported. Five assailants were also killed.","url":"http://www.nytimes.com/2016/01/15/world/asia/jakarta-explosion.html","byline":"By JOE COCHRANE and THOMAS FULLER","updated_date":"2016-01-14T13:22:49.387-07:00","created_date":"2016-01-14T13:22:49.387-07:00","published_date":"2016-01-15","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Bay Ismoyo/Agence France-Presse — Getty Images","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-articleInline.jpg","format":"Normal","height":139,"width":190},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-jumbo.jpg","format":"Jumbo","height":748,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-superJumbo.jpg","format":"superJumbo","height":1496,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"45a78a90-74dc-4958-aef4-d1f3e695c36a","source":"The New York Times","popularity":"","section":"Opinion","title":"The Other Obama Legacy","author":"CHARLES M. BLOW","abstract":"For many young people, the first president they consciously registered was a black man.","url":"http://www.nytimes.com/2016/01/14/opinion/the-other-obama-legacy.html","byline":"By CHARLES M. BLOW","updated_date":"2016-01-14T13:22:47.456-07:00","created_date":"2016-01-14T13:22:47.456-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"President Obama bends over so the son of a White House staff member can touch his hair during a visit to the Oval Office.","copyright":"Pete Souza/The White House","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-articleInline.jpg","format":"Normal","height":128,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-jumbo.jpg","format":"Jumbo","height":682,"width":1012},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-superJumbo.jpg","format":"superJumbo","height":682,"width":1012},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"cbb5b09c-bf63-44f0-9bda-c5443b435c89","source":"The New York Times","popularity":"","section":"Opinion","title":"The Tempting of Bernie Sanders","author":"ROSS DOUTHAT","abstract":"Is he ruthless enough to win?","url":"http://www.nytimes.com/2016/01/14/opinion/campaign-stops/the-tempting-of-bernie-sanders.html","byline":"By ROSS DOUTHAT","updated_date":"2016-01-14T13:22:46.422-07:00","created_date":"2016-01-14T13:22:46.422-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Scott Morgan/Reuters","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-articleInline.jpg","format":"Normal","height":121,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-sfSpan.jpg","format":"Large","height":264,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-jumbo.jpg","format":"Jumbo","height":653,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-superJumbo.jpg","format":"superJumbo","height":1305,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"2e8d771a-4d16-4421-83ea-92a599497890","source":"The New York Times","popularity":"","section":"Food","title":"At Thomas Keller’s Per Se, Slips and Stumbles","author":"PETE WELLS","abstract":"A new look at one of the nation’s landmark restaurants.","url":"http://www.nytimes.com/2016/01/13/dining/pete-wells-per-se-review.html","byline":"By PETE WELLS","updated_date":"2016-01-14T13:22:41.353-07:00","created_date":"2016-01-14T13:22:41.353-07:00","published_date":"2016-01-13","media":[{"type":"image","subtype":"photo","caption":"","copyright":"Karsten Moran for The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square320-v2.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbStandard-v2.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-sfSpan-v2.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-jumbo.jpg","format":"Jumbo","height":684,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-superJumbo.jpg","format":"superJumbo","height":1367,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square640-v2.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbLarge-v2.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo210-v2.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo440-v2.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"7efce391-6d6f-4153-9bd2-b4022b06ad7d","source":"The New York Times","popularity":"","section":"U.S.","title":"U.S. Will Track Secret Buyers of Luxury Real Estate","author":"LOUISE STORY","abstract":"The initiative will start in Manhattan and Miami-Dade County as part of a broader federal effort to focus on money laundering in real estate.","url":"http://www.nytimes.com/2016/01/14/us/us-will-track-secret-buyers-of-luxury-real-estate.html","byline":"By LOUISE STORY","updated_date":"2016-01-14T13:22:40.794-07:00","created_date":"2016-01-14T13:22:40.794-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Condominiums at the Time Warner Center were found to have a number of hidden owners over a decade who had been the subjects of government investigations.","copyright":"Edward Caruso for The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-articleInline.jpg","format":"Normal","height":152,"width":190},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-jumbo.jpg","format":"Jumbo","height":819,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-superJumbo.jpg","format":"superJumbo","height":1639,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"9bfb4871-a656-4e31-a53f-f97cfeaa48bf","source":"The New York Times","popularity":"","section":"Business Day","title":"Al Jazeera America to Shut Down by April","author":"JOHN KOBLIN","abstract":"The cable news outlet, which began broadcasting in August 2013, said it would expand its digital presence in the United States.","url":"http://www.nytimes.com/2016/01/14/business/media/al-jazeera-america-to-shut-down-in-april.html","byline":"By JOHN KOBLIN","updated_date":"2016-01-14T13:22:38.092-07:00","created_date":"2016-01-14T13:22:38.092-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Al Jazeera America debuted in August 2013 after it bought Al Gore’s Current TV for $500 million.","copyright":"Suzanne DeChillo/The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-jumbo.jpg","format":"Jumbo","height":683,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-superJumbo.jpg","format":"superJumbo","height":1365,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"7f138454-c7cf-4667-8135-b46f4bd0cdd4","source":"The New York Times","popularity":"","section":"U.S.","title":"Powerball Has 3 Big Winners, in California, Florida and Tennessee","author":"ASHLEY SOUTHALL and LIAM STACK","abstract":"The winners will divide a record $1.5 billion jackpot, with a cash option of $983.5 million. In addition, eight tickets that won $2 million were sold in seven states.","url":"http://www.nytimes.com/2016/01/14/us/numbers-chosen-for-powerball-with-biggest-jackpot-ever.html","byline":"By ASHLEY SOUTHALL and LIAM STACK","updated_date":"2016-01-14T13:22:36.999-07:00","created_date":"2016-01-14T13:22:36.999-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"People lined up to buy Powerball tickets in Hawthorne, Calif., on Wednesday. Record sales drove up the largest jackpot in United States history to $1.5 billion.","copyright":"Mark Ralston/Agence France-Presse — Getty Images","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-articleInline.jpg","format":"Normal","height":137,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-jumbo.jpg","format":"Jumbo","height":740,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-superJumbo.jpg","format":"superJumbo","height":1480,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"12239fa3-1195-4791-adfd-b8070fbc715b","source":"The New York Times","popularity":"","section":"Opinion","title":"Why I Will Never Vote for Donald Trump","author":"PETER WEHNER","abstract":"Party loyalty has limits. Mr. Trump has altered the political equation because he has altered the moral equation.","url":"http://www.nytimes.com/2016/01/14/opinion/campaign-stops/why-i-will-never-vote-for-donald-trump.html","byline":"By PETER WEHNER","updated_date":"2016-01-14T13:22:35.752-07:00","created_date":"2016-01-14T13:22:35.752-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"West Des Moines, Iowa","copyright":"Jae C. Hong/Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-jumbo.jpg","format":"Jumbo","height":682,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-superJumbo.jpg","format":"superJumbo","height":1364,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"34703da9-65ac-402c-91bd-051927152b92","source":"The New York Times","popularity":"","section":"U.S.","title":"Ted Cruz Starts to Crack G.O.P. Establishment’s Wall of Opposition","author":"JONATHAN MARTIN","abstract":"Mr. Cruz, a candidate who built his name challenging his party’s leadership, has begun wooing entrenched power brokers, and some of them are listening.","url":"http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-starts-to-crack-gop-establishments-wall-of-opposition.html","byline":"By JONATHAN MARTIN","updated_date":"2016-01-14T13:22:34.653-07:00","created_date":"2016-01-14T13:22:34.653-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Senator Ted Cruz on the campaign trail in Hudson, N.H., on Tuesday. He has quietly begun wooing some of the party’s most entrenched donors and officials.","copyright":"Matt Rourke/Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square320-v2.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbStandard-v2.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-jumbo.jpg","format":"Jumbo","height":683,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-superJumbo.jpg","format":"superJumbo","height":1365,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square640-v2.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbLarge-v2.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"b04d9dfc-0644-41a6-ba3a-799d88fb26a5","source":"The New York Times","popularity":"","section":"Movies","title":"Oscar Nominations 2016","author":"BROOKS BARNES and MICHAEL CIEPLY","abstract":"“The Revenant” and “Mad Max: Fury Road” were showered with honors by the Academy of Motion Picture Arts and Sciences, picking up Oscar nominations for best picture and best director.","url":"http://www.nytimes.com/2016/01/15/movies/oscar-nominations.html","byline":"By BROOKS BARNES and MICHAEL CIEPLY","updated_date":"2016-01-14T13:22:32.864-07:00","created_date":"2016-01-14T13:22:32.864-07:00","published_date":"2016-01-15","media":[{"type":"image","subtype":"photo","caption":"“The Revenant” leads this year’s Oscar nominations with 12.","copyright":"20th Century Fox","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-articleInline.jpg","format":"Normal","height":79,"width":190},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-jumbo.jpg","format":"Jumbo","height":428,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-superJumbo.jpg","format":"superJumbo","height":855,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"8c495ce4-7c9d-4eec-af4a-6e199d7c6b97","source":"The New York Times","popularity":"","section":"The Upshot","title":"Dear Powerball Winner: Take Our Advice and Take the Annuity","author":"JOSH BARRO","abstract":"Comparing payout options is fun to imagine, but also a useful way to think about taxes, investment opportunities and human nature.","url":"http://www.nytimes.com/2016/01/13/upshot/dear-powerball-winner-take-our-advice-and-take-the-annuity.html","byline":"By JOSH BARRO","updated_date":"2016-01-14T13:22:30.919-07:00","created_date":"2016-01-14T13:22:30.919-07:00","published_date":"2016-01-13","media":[{"type":"image","subtype":"photo","caption":"Actually, it’s either $1.5 billion (which the sign cannot accommodate) or $930 million, depending on how you choose to take your winnings.","copyright":"Seth Wenig/Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-jumbo.jpg","format":"Jumbo","height":683,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-superJumbo.jpg","format":"superJumbo","height":1365,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"e9590738-be1f-411e-871c-da5e243a9a0d","source":"The New York Times","popularity":"","section":"Movies","title":"Alan Rickman, Actor Known for ‘Harry Potter’ and ‘Die Hard,’ Dies at 69","author":"DAVE ITZKOFF and KATIE ROGERS","abstract":"The British actor brought an erudite dignity to film roles like the nefarious mastermind of “Die Hard” and the dour master of potions in the “Harry Potter” series.","url":"http://www.nytimes.com/2016/01/15/obituaries/alan-rickman-dies-at-69.html","byline":"By DAVE ITZKOFF and KATIE ROGERS","updated_date":"2016-01-14T13:22:30.564-07:00","created_date":"2016-01-14T13:22:30.564-07:00","published_date":"2016-01-15","media":[{"type":"image","subtype":"photo","caption":"Alan Rickman at the Golden Theater in New York City in 2011.","copyright":"Sara Krulwich/The New York Times","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-articleInline.jpg","format":"Normal","height":127,"width":190},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-jumbo.jpg","format":"Jumbo","height":683,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-superJumbo.jpg","format":"superJumbo","height":1365,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"83c9a570-f5e5-4aeb-b32b-963aba50ae4a","source":"The New York Times","popularity":"","section":"U.S.","title":"Ted Cruz Didn’t Report Goldman Sachs Loan in a Senate Race","author":"MIKE McINTIRE","abstract":"As Mr. Cruz tells it, loyalty and sacrifice helped finance his 2012 Senate bid in Texas. Turns out, a Goldman Sachs loan did as well.","url":"http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-wall-street-loan-senate-bid-2012.html","byline":"By MIKE McINTIRE","updated_date":"2016-01-14T13:22:28.168-07:00","created_date":"2016-01-14T13:22:28.168-07:00","published_date":"2016-01-14","media":[{"type":"image","subtype":"photo","caption":"Ted and Heidi Cruz, after he won the runoff for the Republican nomination for a Senate seat from Texas in July 2012.","copyright":"Johnny Hanson/Houston Chronicle, via Associated Press","media-metadata":[{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square320.jpg","format":"square320","height":320,"width":320},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbStandard.jpg","format":"Standard Thumbnail","height":75,"width":75},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-articleInline.jpg","format":"Normal","height":121,"width":190},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-sfSpan.jpg","format":"Large","height":263,"width":395},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-jumbo.jpg","format":"Jumbo","height":651,"width":1024},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-superJumbo.jpg","format":"superJumbo","height":1302,"width":2048},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square640.jpg","format":"square640","height":640,"width":640},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbLarge.jpg","format":"Large Thumbnail","height":150,"width":150},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo210.jpg","format":"mediumThreeByTwo210","height":140,"width":210},{"url":"http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo440.jpg","format":"mediumThreeByTwo440","height":293,"width":440}]}],"is_read":false},{"uuid":"ba1fa5f0-50b1-4e0c-8cc7-88e993ae108a","source":"","popularity":"","section":"","title":"Example","author":"","abstract":"Example abstract","url":"","byline":"","updated_date":"2016-01-03T16:34:52.506-07:00","created_date":"2016-01-03T16:34:52.506-07:00","published_date":"","media":[],"is_read":false}]
                                                  - -
                                                  - -
                                                  - -
                                                  - - -

                                                  Request Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Referer -
                                                  - - - - -

                                                  Response Code

                                                  -
                                                  200
                                                  - -

                                                  Response Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Content-Type application/json
                                                  - - -

                                                  Response Body

                                                  -
                                                  {"uuid":"98cf2e56-1576-486d-9451-8322bcd0b94d","source":"ssss.comaaaa","popularity":"","section":"","title":"","author":"","abstract":"","url":"http://ssss.comaaaa","byline":"","updated_date":"2016-01-03T16:16:10.094-07:00","created_date":"2016-01-03T16:16:10.094-07:00","published_date":"","media":[],"is_read":true}
                                                  - -
                                                  - -
                                                  - -
                                                  - - -

                                                  Request Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Referer -
                                                  - - - - -

                                                  Response Code

                                                  -
                                                  200
                                                  - -

                                                  Response Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Content-Type application/json
                                                  - - -

                                                  Response Body

                                                  -
                                                  [{"uuid":"fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a","article_id":"98cf2e56-1576-486d-9451-8322bcd0b94d","is_human":false,"reader_id":"0bf971e2-f655-44ef-8e6d-8bd7ec02e605","content_url":"://","url":"https://s3-us-west-2.amazonaws.com/appoutloud/fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3","file_type":"audio/mp3","created_date":"2016-01-21T13:37:35.731-07:00","reader":{"uuid":"0bf971e2-f655-44ef-8e6d-8bd7ec02e605","email":"","name":""}},{"uuid":"2132ccf3-a314-4b33-b647-1f3ebcd9256d","article_id":"bb44c161-07a3-4641-9323-e21b3e8bbcd8","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a","url":"https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T23:40:56.972-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a","article_id":"98cf2e56-1576-486d-9451-8322bcd0b94d","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"http://ssss.comaaaa","url":"https://s3-us-west-2.amazonaws.com/appoutloud/12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T16:16:20.658-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"4ee0acef-a0f7-4676-b249-f8d1e2c8582c","article_id":"d085529c-dfbd-4e1f-9da6-a35119e0c6d7","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"http://ssss.com","url":"https://s3-us-west-2.amazonaws.com/appoutloud/4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T16:09:53.15-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"2d9d119f-2b97-45a6-9952-0a14d7f61ecb","article_id":"1965ded8-9fe5-474d-b164-2ef9eabf4ced","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a.com","url":"https://s3-us-west-2.amazonaws.com/appoutloud/2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T16:05:22.602-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"fd047772-939e-40c4-80c3-82cde4c166f0","article_id":"1965ded8-9fe5-474d-b164-2ef9eabf4ced","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a.com","url":"https://s3-us-west-2.amazonaws.com/appoutloud/fd047772-939e-40c4-80c3-82cde4c166f0.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd047772-939e-40c4-80c3-82cde4c166f0.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T16:02:57.762-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"28295897-f834-4de9-bd5a-ab3ac782cd02","article_id":"bb44c161-07a3-4641-9323-e21b3e8bbcd8","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a","url":"https://s3-us-west-2.amazonaws.com/appoutloud/28295897-f834-4de9-bd5a-ab3ac782cd02.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-28295897-f834-4de9-bd5a-ab3ac782cd02.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T15:51:02.608-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"3386aeaa-1bc4-4220-bd10-f1c859cb92b6","article_id":"cc99e58d-6f9a-4990-b266-0cc7fade8fe9","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"http://google.com/sadasd/asdasd","url":"https://s3-us-west-2.amazonaws.com/appoutloud/3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T15:42:07.389-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}},{"uuid":"989f74de-e748-4ba0-b601-ec1b98d16dac","article_id":"f52a194d-e449-4315-8dc6-4cb87f407588","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"http://google.com","url":"https://s3-us-west-2.amazonaws.com/appoutloud/989f74de-e748-4ba0-b601-ec1b98d16dac.mp4","raw_url":"","file_type":"audio/x-m4a","created_date":"2016-01-03T15:37:35.432-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}}]
                                                  - -
                                                  - -
                                                  - -
                                                  - - -

                                                  Request Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Referer -
                                                  - - - - -

                                                  Response Code

                                                  -
                                                  200
                                                  - -

                                                  Response Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Content-Type application/json
                                                  - - -

                                                  Response Body

                                                  -
                                                  {"uuid":"2132ccf3-a314-4b33-b647-1f3ebcd9256d","article_id":"bb44c161-07a3-4641-9323-e21b3e8bbcd8","is_human":true,"reader_id":"dda083de-f999-441b-bad4-bfd1dccd7f48","content_url":"://a","url":"https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4","raw_url":"https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4","file_type":"audio/x-m4a","created_date":"2016-01-03T23:40:56.972-07:00","reader":{"uuid":"dda083de-f999-441b-bad4-bfd1dccd7f48","email":"a@a.com","name":"a"}}
                                                  - -
                                                  + + + + + + - -
                                                  - - -

                                                  Request Headers

                                                  - - - - - - - - - - - - - - - - -
                                                  KeyValue
                                                  Content-Type multipart/form-data; boundary=----------------------------98ff7c75a7ac -
                                                  Referer -
                                                  - - - - -

                                                  Response Code

                                                  -
                                                  415
                                                  - -

                                                  Response Headers

                                                  - - - - - - - - - - - -
                                                  KeyValue
                                                  Content-Type text/plain; charset=utf-8
                                                  - - -

                                                  Response Body

                                                  -
                                                  Please provide an mp3 or mp4 audio file
                                                  -
                                                  - -
                                                  - +
                                                  +

                                                  +
                                                  + + + +
                                                    +
                                                    - -
                                                    - - -

                                                    Request Headers

                                                    - - - - - - - - - - - - - - - - -
                                                    KeyValue
                                                    Content-Type multipart/form-data; boundary=----------------------------98ff7c75a7ac -
                                                    Referer -
                                                    - - - - -

                                                    Response Code

                                                    -
                                                    200
                                                    - - -
                                                    - +
                                                    + Add
                                                    +
                                                    +
                                                    +

                                                     

                                                    +
                                                    +

                                                    Tasks

                                                    +
                                                      +
                                                    +
                                                    + + P + -
                                                    - - -

                                                    Request Headers

                                                    - - - - - - - - - - - -
                                                    KeyValue
                                                    Upgrade-Insecure-Requests 1 -
                                                    - - - - -

                                                    Response Code

                                                    -
                                                    200
                                                    - - -

                                                    Response Body

                                                    -
                                                    <!DOCTYPE html>
                                                    -<html>
                                                    -<head lang="en">
                                                    -    <title> API Documentation </title>
                                                    -    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
                                                    -    <script src="http://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
                                                    -    <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
                                                    -    <link rel="stylesheet" href="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css">
                                                    -
                                                    -    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
                                                    -    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
                                                    -
                                                    -    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
                                                    -    <style type="text/css">
                                                    -        body {
                                                    -            font-family: 'Roboto', sans-serif;
                                                    -        }
                                                    -        .hidden {
                                                    -            display:none;
                                                    -        }
                                                    -    </style>
                                                    -    <style type="text/css">
                                                    -        pre.prettyprint {
                                                    -            border: 1px solid #ccc;
                                                    -            margin-bottom: 0;
                                                    -            padding: 9.5px;
                                                    -        }
                                                    -    </style>
                                                    -    <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
                                                    -    <script>
                                                    -        hljs.initHighlightingOnLoad();
                                                    -        function toggler(divId) {
                                                    -           $("#" + divId).toggle();
                                                    -        }
                                                    -    </script>
                                                    -</head>
                                                    -<body>
                                                    -<nav class="navbar navbar-default navbar-fixed-top">
                                                    -    <div class="container-fluid">
                                                    -
                                                    -        <div class="navbar-header">
                                                    -            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
                                                    -                    data-target="#bs-example-navbar-collapse-1">
                                                    -                <span class="sr-only">Toggle navigation</span>
                                                    -                <span class="icon-bar"></span>
                                                    -                <span class="icon-bar"></span>
                                                    -                <span class="icon-bar"></span>
                                                    -            </button>
                                                    -            <a class="navbar-brand" href="#">Outloud! Api Documentation</a>
                                                    -            <p class="navbar-text">Developed by Gophers at <a href="http://betacraft.co">Betacraft</a></p>
                                                    -        </div>
                                                    -
                                                    -
                                                    -    </div>
                                                    -
                                                    -</nav>
                                                    -<div class="container-fluid" style="margin-top: 70px;margin-bottom: 20px;">
                                                    -    <div class="container-fluid">
                                                    -    <div class="col-md-4">
                                                    -        <div class="panel panel-default">
                                                    -              <div class="panel-heading">Base Urls</div>
                                                    -              <div class="panel-body">
                                                    -
                                                    -              </div>
                                                    -            </div>
                                                    -        <ul class="nav nav-pills nav-stacked" role="tablist">
                                                    -
                                                    -                <li role="presentation"><a href="#0top" role="tab" data-toggle="tab">GET : /api/feed</a></li>
                                                    -
                                                    -                <li role="presentation"><a href="#1top" role="tab" data-toggle="tab">GET : /api/article/98cf2e56-1576-486d-9451-8322bcd0b94d</a></li>
                                                    -
                                                    -                <li role="presentation"><a href="#2top" role="tab" data-toggle="tab">GET : /api/readings</a></li>
                                                    -
                                                    -                <li role="presentation"><a href="#3top" role="tab" data-toggle="tab">GET : /api/reading/2132ccf3-a314-4b33-b647-1f3ebcd9256d</a></li>
                                                    -
                                                    -                <li role="presentation"><a href="#4top" role="tab" data-toggle="tab">POST : /api/reading/new</a></li>
                                                    -
                                                    -                <li role="presentation"><a href="#5top" role="tab" data-toggle="tab">POST : /api/channel/add</a></li>
                                                    -
                                                    -        <ul>
                                                    -    </div>
                                                    -    <div class="col-md-8 tab-content">
                                                    -
                                                    -        <div id="0top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -                <p><h4> Response Headers</h4></p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td> application/json</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;source&#34;:&#34;ssss.comaaaa&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&#34;,&#34;source&#34;:&#34;ssss.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:09:51.342-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:09:51.342-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;://a.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:02:46.982-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:02:46.982-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;://a&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:50:52.131-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:50:52.131-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&#34;,&#34;source&#34;:&#34;google.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://google.com/sadasd/asdasd&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:41:56.841-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:41:56.841-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;f52a194d-e449-4315-8dc6-4cb87f407588&#34;,&#34;source&#34;:&#34;google.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://google.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:37:26.731-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:37:26.731-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true}]</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -                <p> <H4> URL Params </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>is_read</td>
                                                    -                        <td> false</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -                <p><h4> Response Headers</h4></p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td> application/json</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;73f9b780-10d3-45e8-946b-2de9541e05e0&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Brutalism of Ted Cruz&#34;,&#34;author&#34;:&#34;DAVID BROOKS&#34;,&#34;abstract&#34;:&#34;The Texas Republican lacks the Christian virtues many evangelical voters may expect.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/12/opinion/the-brutalism-of-ted-cruz.html&#34;,&#34;byline&#34;:&#34;By DAVID BROOKS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T14:12:58.323-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T14:12:58.323-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-12&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Eric Thayer for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:132,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:710,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1419,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;36ecf666-8d81-4a37-be59-a304eef298bc&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;Iran’s Swift Release of U.S. Sailors Hailed as a Sign of Warmer Relations&#34;,&#34;author&#34;:&#34;DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&#34;,&#34;abstract&#34;:&#34;It remained unclear who decided to release the sailors or how their two patrol boats ended up in Iranian territorial waters.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/world/middleeast/iran-navy-crew-release.html&#34;,&#34;byline&#34;:&#34;By DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:58.979-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:58.979-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;A photo released by the Revolutionary Guards on Wednesday shows detained American sailors in an undisclosed location in Iran.&#34;,&#34;copyright&#34;:&#34;Sepahnews, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:107,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-sfSpan-v2.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:576,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1125,&#34;width&#34;:2000},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;79a207ef-6afc-4238-be80-858ed266e550&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Arts&#34;,&#34;title&#34;:&#34;How David Bowie Challenged MTV on Race&#34;,&#34;author&#34;:&#34;WESLEY MORRIS&#34;,&#34;abstract&#34;:&#34;A candid exchange in 1983 is sobering for its continued relevance and useful for what it says about Mr. Bowie’s sense of social awareness.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/arts/music/how-david-bowie-used-his-stardom-and-race-to-challenge-mtv.html&#34;,&#34;byline&#34;:&#34;By WESLEY MORRIS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:57.747-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:57.747-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;David Bowie at Madison Square Garden in 1976.&#34;,&#34;copyright&#34;:&#34;Allan Tannenbaum/Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:379,&#34;width&#34;:594},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:379,&#34;width&#34;:594},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;c119f1f8-dfc5-43dd-b0a3-eac519e8e507&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Arts&#34;,&#34;title&#34;:&#34;Iggy Pop on David Bowie: ‘He Resurrected Me’&#34;,&#34;author&#34;:&#34;JON PARELES&#34;,&#34;abstract&#34;:&#34;In an interview, the Detroit rocker, who collaborated with Mr. Bowie in the 1970s, talked about their friendship and their work through the years.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/arts/music/david-bowie-iggy-pop.html&#34;,&#34;byline&#34;:&#34;By JON PARELES&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:56.43-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:56.43-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Iggy Pop, left, and David Bowie, during the tour for Mr. Pop’s 1977 album “The Idiot.”&#34;,&#34;copyright&#34;:&#34;Rex Features, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:131,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:704,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1408,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;57cfab66-99a1-473d-bec2-f1a2da5c259b&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;El Chapo Enticed by Star Power of Mexican Actress, Not Sean Penn&#34;,&#34;author&#34;:&#34;PAULINA VILLEGAS&#34;,&#34;abstract&#34;:&#34;Conversations between the drug lord Joaquín Guzmán Loera and the actress Kate del Castillo offer a window into the psyche of one of the world’s most wanted criminals.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/world/americas/el-chapo-enticed-by-star-power-of-mexican-tv-actress-not-sean-penn.html&#34;,&#34;byline&#34;:&#34;By PAULINA VILLEGAS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:53.698-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:53.698-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;The actress Kate del Castillo in Hollywood in November.&#34;,&#34;copyright&#34;:&#34;Mark Ralston/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:209,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:1024,&#34;width&#34;:933},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:2048,&#34;width&#34;:1866},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;22dd6af8-0ea9-4cfb-9422-74c5e896d65f&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;Politics: Everything’s Relative&#34;,&#34;author&#34;:&#34;GAIL COLLINS&#34;,&#34;abstract&#34;:&#34;Here are rules for dealing with family members showing up in the presidential race, like when to give them a break and when to go for the jugular.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/politics-everythings-relative.html&#34;,&#34;byline&#34;:&#34;By GAIL COLLINS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:52.612-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:52.612-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Earl Wilson/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbStandard-v5.png&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-articleInline-v5.png&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-jumbo-v5.png&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:228,&#34;width&#34;:342},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-superJumbo-v5.png&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:228,&#34;width&#34;:342},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbLarge-v7.png&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-mediumThreeByTwo210-v5.png&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;686c0ea7-af91-48de-b6db-2c7035408d31&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;Jakarta Attack Kills 2, Raising Fears of Growing ISIS Reach&#34;,&#34;author&#34;:&#34;JOE COCHRANE and THOMAS FULLER&#34;,&#34;abstract&#34;:&#34;The two civilians killed in the explosions and gunfire were a Canadian and an Indonesian, senior officials reported. Five assailants were also killed.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/world/asia/jakarta-explosion.html&#34;,&#34;byline&#34;:&#34;By JOE COCHRANE and THOMAS FULLER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:49.387-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:49.387-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Bay Ismoyo/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:139,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:748,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1496,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;45a78a90-74dc-4958-aef4-d1f3e695c36a&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Other Obama Legacy&#34;,&#34;author&#34;:&#34;CHARLES M. BLOW&#34;,&#34;abstract&#34;:&#34;For many young people, the first president they consciously registered was a black man.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/the-other-obama-legacy.html&#34;,&#34;byline&#34;:&#34;By CHARLES M. BLOW&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:47.456-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:47.456-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;President Obama bends over so the son of a White House staff member can touch his hair during a visit to the Oval Office.&#34;,&#34;copyright&#34;:&#34;Pete Souza/The White House&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:128,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1012},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1012},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;cbb5b09c-bf63-44f0-9bda-c5443b435c89&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Tempting of Bernie Sanders&#34;,&#34;author&#34;:&#34;ROSS DOUTHAT&#34;,&#34;abstract&#34;:&#34;Is he ruthless enough to win?&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/the-tempting-of-bernie-sanders.html&#34;,&#34;byline&#34;:&#34;By ROSS DOUTHAT&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:46.422-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:46.422-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Scott Morgan/Reuters&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:264,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:653,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1305,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;2e8d771a-4d16-4421-83ea-92a599497890&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Food&#34;,&#34;title&#34;:&#34;At Thomas Keller’s Per Se, Slips and Stumbles&#34;,&#34;author&#34;:&#34;PETE WELLS&#34;,&#34;abstract&#34;:&#34;A new look at one of the nation’s landmark restaurants.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/13/dining/pete-wells-per-se-review.html&#34;,&#34;byline&#34;:&#34;By PETE WELLS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:41.353-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:41.353-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-13&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Karsten Moran for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square320-v2.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-sfSpan-v2.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:684,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1367,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square640-v2.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo210-v2.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo440-v2.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;7efce391-6d6f-4153-9bd2-b4022b06ad7d&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;U.S. Will Track Secret Buyers of Luxury Real Estate&#34;,&#34;author&#34;:&#34;LOUISE STORY&#34;,&#34;abstract&#34;:&#34;The initiative will start in Manhattan and Miami-Dade County as part of a broader federal effort to focus on money laundering in real estate.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/us-will-track-secret-buyers-of-luxury-real-estate.html&#34;,&#34;byline&#34;:&#34;By LOUISE STORY&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:40.794-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:40.794-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Condominiums at the Time Warner Center were found to have a number of hidden owners over a decade who had been the subjects of government investigations.&#34;,&#34;copyright&#34;:&#34;Edward Caruso for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:152,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:819,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1639,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;9bfb4871-a656-4e31-a53f-f97cfeaa48bf&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Business Day&#34;,&#34;title&#34;:&#34;Al Jazeera America to Shut Down by April&#34;,&#34;author&#34;:&#34;JOHN KOBLIN&#34;,&#34;abstract&#34;:&#34;The cable news outlet, which began broadcasting in August 2013, said it would expand its digital presence in the United States.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/business/media/al-jazeera-america-to-shut-down-in-april.html&#34;,&#34;byline&#34;:&#34;By JOHN KOBLIN&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:38.092-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:38.092-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Al Jazeera America debuted in August 2013 after it bought Al Gore’s Current TV for $500 million.&#34;,&#34;copyright&#34;:&#34;Suzanne DeChillo/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;7f138454-c7cf-4667-8135-b46f4bd0cdd4&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Powerball Has 3 Big Winners, in California, Florida and Tennessee&#34;,&#34;author&#34;:&#34;ASHLEY SOUTHALL and LIAM STACK&#34;,&#34;abstract&#34;:&#34;The winners will divide a record $1.5 billion jackpot, with a cash option of $983.5 million. In addition, eight tickets that won $2 million were sold in seven states.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/numbers-chosen-for-powerball-with-biggest-jackpot-ever.html&#34;,&#34;byline&#34;:&#34;By ASHLEY SOUTHALL and LIAM STACK&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:36.999-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:36.999-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;People lined up to buy Powerball tickets in Hawthorne, Calif., on Wednesday. Record sales drove up the largest jackpot in United States history to $1.5 billion.&#34;,&#34;copyright&#34;:&#34;Mark Ralston/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:137,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:740,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1480,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;12239fa3-1195-4791-adfd-b8070fbc715b&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;Why I Will Never Vote for Donald Trump&#34;,&#34;author&#34;:&#34;PETER WEHNER&#34;,&#34;abstract&#34;:&#34;Party loyalty has limits. Mr. Trump has altered the political equation because he has altered the moral equation.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/why-i-will-never-vote-for-donald-trump.html&#34;,&#34;byline&#34;:&#34;By PETER WEHNER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:35.752-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:35.752-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;West Des Moines, Iowa&#34;,&#34;copyright&#34;:&#34;Jae C. Hong/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1364,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;34703da9-65ac-402c-91bd-051927152b92&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Ted Cruz Starts to Crack G.O.P. Establishment’s Wall of Opposition&#34;,&#34;author&#34;:&#34;JONATHAN MARTIN&#34;,&#34;abstract&#34;:&#34;Mr. Cruz, a candidate who built his name challenging his party’s leadership, has begun wooing entrenched power brokers, and some of them are listening.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-starts-to-crack-gop-establishments-wall-of-opposition.html&#34;,&#34;byline&#34;:&#34;By JONATHAN MARTIN&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:34.653-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:34.653-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Senator Ted Cruz on the campaign trail in Hudson, N.H., on Tuesday. He has quietly begun wooing some of the party’s most entrenched donors and officials.&#34;,&#34;copyright&#34;:&#34;Matt Rourke/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square320-v2.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square640-v2.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;b04d9dfc-0644-41a6-ba3a-799d88fb26a5&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Movies&#34;,&#34;title&#34;:&#34;Oscar Nominations 2016&#34;,&#34;author&#34;:&#34;BROOKS BARNES and MICHAEL CIEPLY&#34;,&#34;abstract&#34;:&#34;“The Revenant” and “Mad Max: Fury Road” were showered with honors by the Academy of Motion Picture Arts and Sciences, picking up Oscar nominations for best picture and best director.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/movies/oscar-nominations.html&#34;,&#34;byline&#34;:&#34;By BROOKS BARNES and MICHAEL CIEPLY&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:32.864-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:32.864-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;“The Revenant” leads this year’s Oscar nominations with 12.&#34;,&#34;copyright&#34;:&#34;20th Century Fox&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:79,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:428,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:855,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;8c495ce4-7c9d-4eec-af4a-6e199d7c6b97&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;The Upshot&#34;,&#34;title&#34;:&#34;Dear Powerball Winner: Take Our Advice and Take the Annuity&#34;,&#34;author&#34;:&#34;JOSH BARRO&#34;,&#34;abstract&#34;:&#34;Comparing payout options is fun to imagine, but also a useful way to think about taxes, investment opportunities and human nature.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/13/upshot/dear-powerball-winner-take-our-advice-and-take-the-annuity.html&#34;,&#34;byline&#34;:&#34;By JOSH BARRO&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:30.919-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:30.919-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-13&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Actually, it’s either $1.5 billion (which the sign cannot accommodate) or $930 million, depending on how you choose to take your winnings.&#34;,&#34;copyright&#34;:&#34;Seth Wenig/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;e9590738-be1f-411e-871c-da5e243a9a0d&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Movies&#34;,&#34;title&#34;:&#34;Alan Rickman, Actor Known for ‘Harry Potter’ and ‘Die Hard,’ Dies at 69&#34;,&#34;author&#34;:&#34;DAVE ITZKOFF and KATIE ROGERS&#34;,&#34;abstract&#34;:&#34;The British actor brought an erudite dignity to film roles like the nefarious mastermind of “Die Hard” and the dour master of potions in the “Harry Potter” series.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/obituaries/alan-rickman-dies-at-69.html&#34;,&#34;byline&#34;:&#34;By DAVE ITZKOFF and KATIE ROGERS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:30.564-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:30.564-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Alan Rickman at the Golden Theater in New York City in 2011.&#34;,&#34;copyright&#34;:&#34;Sara Krulwich/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;83c9a570-f5e5-4aeb-b32b-963aba50ae4a&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Ted Cruz Didn’t Report Goldman Sachs Loan in a Senate Race&#34;,&#34;author&#34;:&#34;MIKE McINTIRE&#34;,&#34;abstract&#34;:&#34;As Mr. Cruz tells it, loyalty and sacrifice helped finance his 2012 Senate bid in Texas. Turns out, a Goldman Sachs loan did as well.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-wall-street-loan-senate-bid-2012.html&#34;,&#34;byline&#34;:&#34;By MIKE McINTIRE&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:28.168-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:28.168-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Ted and Heidi Cruz, after he won the runoff for the Republican nomination for a Senate seat from Texas in July 2012.&#34;,&#34;copyright&#34;:&#34;Johnny Hanson/Houston Chronicle, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:651,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1302,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;ba1fa5f0-50b1-4e0c-8cc7-88e993ae108a&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;Example&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;Example abstract&#34;,&#34;url&#34;:&#34;&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:34:52.506-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:34:52.506-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:false}]</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -        <div id="1top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -                <p><h4> Response Headers</h4></p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td> application/json</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">{&#34;uuid&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;source&#34;:&#34;ssss.comaaaa&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true}</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -        <div id="2top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -                <p><h4> Response Headers</h4></p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td> application/json</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a&#34;,&#34;article_id&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;is_human&#34;:false,&#34;reader_id&#34;:&#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&#34;,&#34;content_url&#34;:&#34;://&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&#34;,&#34;file_type&#34;:&#34;audio/mp3&#34;,&#34;created_date&#34;:&#34;2016-01-21T13:37:35.731-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&#34;,&#34;email&#34;:&#34;&#34;,&#34;name&#34;:&#34;&#34;}},{&#34;uuid&#34;:&#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T23:40:56.972-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a&#34;,&#34;article_id&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:20.658-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;4ee0acef-a0f7-4676-b249-f8d1e2c8582c&#34;,&#34;article_id&#34;:&#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://ssss.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:09:53.15-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;2d9d119f-2b97-45a6-9952-0a14d7f61ecb&#34;,&#34;article_id&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:05:22.602-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;fd047772-939e-40c4-80c3-82cde4c166f0&#34;,&#34;article_id&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd047772-939e-40c4-80c3-82cde4c166f0.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd047772-939e-40c4-80c3-82cde4c166f0.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:02:57.762-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;28295897-f834-4de9-bd5a-ab3ac782cd02&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:51:02.608-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;3386aeaa-1bc4-4220-bd10-f1c859cb92b6&#34;,&#34;article_id&#34;:&#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://google.com/sadasd/asdasd&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:42:07.389-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;989f74de-e748-4ba0-b601-ec1b98d16dac&#34;,&#34;article_id&#34;:&#34;f52a194d-e449-4315-8dc6-4cb87f407588&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://google.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/989f74de-e748-4ba0-b601-ec1b98d16dac.mp4&#34;,&#34;raw_url&#34;:&#34;&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:37:35.432-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}}]</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -        <div id="3top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -                <p><h4> Response Headers</h4></p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td> application/json</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">{&#34;uuid&#34;:&#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T23:40:56.972-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}}</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -        <div id="4top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td>  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">415</pre>
                                                    -
                                                    -                <p><h4> Response Headers</h4></p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td> text/plain; charset=utf-8</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">Please provide an mp3 or mp4 audio file
                                                    -</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -        <div id="5top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td>  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -    </div>
                                                    -</div>
                                                    -</div>
                                                    -<hr>
                                                    -</body>
                                                    -</html>
                                                    - -
                                                    - - -

                                                    Request Headers

                                                    - - - - - - - - - - - -
                                                    KeyValue
                                                    Upgrade-Insecure-Requests 1 -
                                                    - - - - -

                                                    Response Code

                                                    -
                                                    200
                                                    - - -

                                                    Response Body

                                                    -
                                                    <!DOCTYPE html>
                                                    -<html>
                                                    -<head lang="en">
                                                    -    <title> API Documentation </title>
                                                    -    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
                                                    -    <script src="http://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
                                                    -    <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
                                                    -    <link rel="stylesheet" href="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css">
                                                    -
                                                    -    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
                                                    -    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
                                                    -
                                                    -    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
                                                    -    <style type="text/css">
                                                    -        body {
                                                    -            font-family: 'Roboto', sans-serif;
                                                    -        }
                                                    -        .hidden {
                                                    -            display:none;
                                                    -        }
                                                    -    </style>
                                                    -    <style type="text/css">
                                                    -        pre.prettyprint {
                                                    -            border: 1px solid #ccc;
                                                    -            margin-bottom: 0;
                                                    -            padding: 9.5px;
                                                    -        }
                                                    -    </style>
                                                    -    <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
                                                    -    <script>
                                                    -        hljs.initHighlightingOnLoad();
                                                    -        function toggler(divId) {
                                                    -           $("#" + divId).toggle();
                                                    -        }
                                                    -    </script>
                                                    -</head>
                                                    -<body>
                                                    -<nav class="navbar navbar-default navbar-fixed-top">
                                                    -    <div class="container-fluid">
                                                    -
                                                    -        <div class="navbar-header">
                                                    -            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
                                                    -                    data-target="#bs-example-navbar-collapse-1">
                                                    -                <span class="sr-only">Toggle navigation</span>
                                                    -                <span class="icon-bar"></span>
                                                    -                <span class="icon-bar"></span>
                                                    -                <span class="icon-bar"></span>
                                                    -            </button>
                                                    -            <a class="navbar-brand" href="#">Outloud! Api Documentation</a>
                                                    -            <p class="navbar-text">Developed by Gophers at <a href="http://betacraft.co">Betacraft</a></p>
                                                    -        </div>
                                                    -
                                                    -
                                                    -    </div>
                                                    -
                                                    -</nav>
                                                    -<div class="container-fluid" style="margin-top: 70px;margin-bottom: 20px;">
                                                    -    <div class="container-fluid">
                                                    -    <div class="col-md-4">
                                                    -        <div class="panel panel-default">
                                                    -              <div class="panel-heading">Base Urls</div>
                                                    -              <div class="panel-body">
                                                    -
                                                    -              </div>
                                                    -            </div>
                                                    -        <ul class="nav nav-pills nav-stacked" role="tablist">
                                                    -
                                                    -                <li role="presentation"><a href="#0top" role="tab" data-toggle="tab">GET : /api/feed</a></li>
                                                    -
                                                    -                <li role="presentation"><a href="#1top" role="tab" data-toggle="tab">GET : /api/article/98cf2e56-1576-486d-9451-8322bcd0b94d</a></li>
                                                    -
                                                    -                <li role="presentation"><a href="#2top" role="tab" data-toggle="tab">GET : /api/readings</a></li>
                                                    -
                                                    -                <li role="presentation"><a href="#3top" role="tab" data-toggle="tab">GET : /api/reading/2132ccf3-a314-4b33-b647-1f3ebcd9256d</a></li>
                                                    -
                                                    -                <li role="presentation"><a href="#4top" role="tab" data-toggle="tab">POST : /api/reading/new</a></li>
                                                    -
                                                    -                <li role="presentation"><a href="#5top" role="tab" data-toggle="tab">POST : /api/channel/add</a></li>
                                                    -
                                                    -                <li role="presentation"><a href="#6top" role="tab" data-toggle="tab">GET : /api</a></li>
                                                    -
                                                    -        <ul>
                                                    -    </div>
                                                    -    <div class="col-md-8 tab-content">
                                                    -
                                                    -        <div id="0top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -                <p><h4> Response Headers</h4></p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td> application/json</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;source&#34;:&#34;ssss.comaaaa&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&#34;,&#34;source&#34;:&#34;ssss.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:09:51.342-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:09:51.342-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;://a.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:02:46.982-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:02:46.982-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;://a&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:50:52.131-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:50:52.131-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&#34;,&#34;source&#34;:&#34;google.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://google.com/sadasd/asdasd&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:41:56.841-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:41:56.841-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true},{&#34;uuid&#34;:&#34;f52a194d-e449-4315-8dc6-4cb87f407588&#34;,&#34;source&#34;:&#34;google.com&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://google.com&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T15:37:26.731-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:37:26.731-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true}]</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -                <p> <H4> URL Params </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>is_read</td>
                                                    -                        <td> false</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -                <p><h4> Response Headers</h4></p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td> application/json</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;73f9b780-10d3-45e8-946b-2de9541e05e0&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Brutalism of Ted Cruz&#34;,&#34;author&#34;:&#34;DAVID BROOKS&#34;,&#34;abstract&#34;:&#34;The Texas Republican lacks the Christian virtues many evangelical voters may expect.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/12/opinion/the-brutalism-of-ted-cruz.html&#34;,&#34;byline&#34;:&#34;By DAVID BROOKS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T14:12:58.323-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T14:12:58.323-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-12&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Eric Thayer for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:132,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:710,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1419,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;36ecf666-8d81-4a37-be59-a304eef298bc&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;Iran’s Swift Release of U.S. Sailors Hailed as a Sign of Warmer Relations&#34;,&#34;author&#34;:&#34;DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&#34;,&#34;abstract&#34;:&#34;It remained unclear who decided to release the sailors or how their two patrol boats ended up in Iranian territorial waters.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/world/middleeast/iran-navy-crew-release.html&#34;,&#34;byline&#34;:&#34;By DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:58.979-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:58.979-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;A photo released by the Revolutionary Guards on Wednesday shows detained American sailors in an undisclosed location in Iran.&#34;,&#34;copyright&#34;:&#34;Sepahnews, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:107,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-sfSpan-v2.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:576,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1125,&#34;width&#34;:2000},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;79a207ef-6afc-4238-be80-858ed266e550&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Arts&#34;,&#34;title&#34;:&#34;How David Bowie Challenged MTV on Race&#34;,&#34;author&#34;:&#34;WESLEY MORRIS&#34;,&#34;abstract&#34;:&#34;A candid exchange in 1983 is sobering for its continued relevance and useful for what it says about Mr. Bowie’s sense of social awareness.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/arts/music/how-david-bowie-used-his-stardom-and-race-to-challenge-mtv.html&#34;,&#34;byline&#34;:&#34;By WESLEY MORRIS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:57.747-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:57.747-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;David Bowie at Madison Square Garden in 1976.&#34;,&#34;copyright&#34;:&#34;Allan Tannenbaum/Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:379,&#34;width&#34;:594},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:379,&#34;width&#34;:594},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;c119f1f8-dfc5-43dd-b0a3-eac519e8e507&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Arts&#34;,&#34;title&#34;:&#34;Iggy Pop on David Bowie: ‘He Resurrected Me’&#34;,&#34;author&#34;:&#34;JON PARELES&#34;,&#34;abstract&#34;:&#34;In an interview, the Detroit rocker, who collaborated with Mr. Bowie in the 1970s, talked about their friendship and their work through the years.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/arts/music/david-bowie-iggy-pop.html&#34;,&#34;byline&#34;:&#34;By JON PARELES&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:56.43-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:56.43-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Iggy Pop, left, and David Bowie, during the tour for Mr. Pop’s 1977 album “The Idiot.”&#34;,&#34;copyright&#34;:&#34;Rex Features, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:131,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:704,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1408,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;57cfab66-99a1-473d-bec2-f1a2da5c259b&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;El Chapo Enticed by Star Power of Mexican Actress, Not Sean Penn&#34;,&#34;author&#34;:&#34;PAULINA VILLEGAS&#34;,&#34;abstract&#34;:&#34;Conversations between the drug lord Joaquín Guzmán Loera and the actress Kate del Castillo offer a window into the psyche of one of the world’s most wanted criminals.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/world/americas/el-chapo-enticed-by-star-power-of-mexican-tv-actress-not-sean-penn.html&#34;,&#34;byline&#34;:&#34;By PAULINA VILLEGAS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:53.698-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:53.698-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;The actress Kate del Castillo in Hollywood in November.&#34;,&#34;copyright&#34;:&#34;Mark Ralston/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:209,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:1024,&#34;width&#34;:933},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:2048,&#34;width&#34;:1866},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;22dd6af8-0ea9-4cfb-9422-74c5e896d65f&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;Politics: Everything’s Relative&#34;,&#34;author&#34;:&#34;GAIL COLLINS&#34;,&#34;abstract&#34;:&#34;Here are rules for dealing with family members showing up in the presidential race, like when to give them a break and when to go for the jugular.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/politics-everythings-relative.html&#34;,&#34;byline&#34;:&#34;By GAIL COLLINS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:52.612-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:52.612-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Earl Wilson/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbStandard-v5.png&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-articleInline-v5.png&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-jumbo-v5.png&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:228,&#34;width&#34;:342},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-superJumbo-v5.png&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:228,&#34;width&#34;:342},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbLarge-v7.png&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-mediumThreeByTwo210-v5.png&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;686c0ea7-af91-48de-b6db-2c7035408d31&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;World&#34;,&#34;title&#34;:&#34;Jakarta Attack Kills 2, Raising Fears of Growing ISIS Reach&#34;,&#34;author&#34;:&#34;JOE COCHRANE and THOMAS FULLER&#34;,&#34;abstract&#34;:&#34;The two civilians killed in the explosions and gunfire were a Canadian and an Indonesian, senior officials reported. Five assailants were also killed.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/world/asia/jakarta-explosion.html&#34;,&#34;byline&#34;:&#34;By JOE COCHRANE and THOMAS FULLER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:49.387-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:49.387-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Bay Ismoyo/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:139,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:748,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1496,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;45a78a90-74dc-4958-aef4-d1f3e695c36a&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Other Obama Legacy&#34;,&#34;author&#34;:&#34;CHARLES M. BLOW&#34;,&#34;abstract&#34;:&#34;For many young people, the first president they consciously registered was a black man.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/the-other-obama-legacy.html&#34;,&#34;byline&#34;:&#34;By CHARLES M. BLOW&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:47.456-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:47.456-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;President Obama bends over so the son of a White House staff member can touch his hair during a visit to the Oval Office.&#34;,&#34;copyright&#34;:&#34;Pete Souza/The White House&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:128,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1012},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1012},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;cbb5b09c-bf63-44f0-9bda-c5443b435c89&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;The Tempting of Bernie Sanders&#34;,&#34;author&#34;:&#34;ROSS DOUTHAT&#34;,&#34;abstract&#34;:&#34;Is he ruthless enough to win?&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/the-tempting-of-bernie-sanders.html&#34;,&#34;byline&#34;:&#34;By ROSS DOUTHAT&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:46.422-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:46.422-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Scott Morgan/Reuters&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:264,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:653,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1305,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;2e8d771a-4d16-4421-83ea-92a599497890&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Food&#34;,&#34;title&#34;:&#34;At Thomas Keller’s Per Se, Slips and Stumbles&#34;,&#34;author&#34;:&#34;PETE WELLS&#34;,&#34;abstract&#34;:&#34;A new look at one of the nation’s landmark restaurants.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/13/dining/pete-wells-per-se-review.html&#34;,&#34;byline&#34;:&#34;By PETE WELLS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:41.353-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:41.353-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-13&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;&#34;,&#34;copyright&#34;:&#34;Karsten Moran for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square320-v2.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-sfSpan-v2.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:684,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1367,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square640-v2.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo210-v2.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo440-v2.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;7efce391-6d6f-4153-9bd2-b4022b06ad7d&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;U.S. Will Track Secret Buyers of Luxury Real Estate&#34;,&#34;author&#34;:&#34;LOUISE STORY&#34;,&#34;abstract&#34;:&#34;The initiative will start in Manhattan and Miami-Dade County as part of a broader federal effort to focus on money laundering in real estate.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/us-will-track-secret-buyers-of-luxury-real-estate.html&#34;,&#34;byline&#34;:&#34;By LOUISE STORY&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:40.794-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:40.794-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Condominiums at the Time Warner Center were found to have a number of hidden owners over a decade who had been the subjects of government investigations.&#34;,&#34;copyright&#34;:&#34;Edward Caruso for The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:152,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:819,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1639,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;9bfb4871-a656-4e31-a53f-f97cfeaa48bf&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Business Day&#34;,&#34;title&#34;:&#34;Al Jazeera America to Shut Down by April&#34;,&#34;author&#34;:&#34;JOHN KOBLIN&#34;,&#34;abstract&#34;:&#34;The cable news outlet, which began broadcasting in August 2013, said it would expand its digital presence in the United States.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/business/media/al-jazeera-america-to-shut-down-in-april.html&#34;,&#34;byline&#34;:&#34;By JOHN KOBLIN&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:38.092-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:38.092-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Al Jazeera America debuted in August 2013 after it bought Al Gore’s Current TV for $500 million.&#34;,&#34;copyright&#34;:&#34;Suzanne DeChillo/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;7f138454-c7cf-4667-8135-b46f4bd0cdd4&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Powerball Has 3 Big Winners, in California, Florida and Tennessee&#34;,&#34;author&#34;:&#34;ASHLEY SOUTHALL and LIAM STACK&#34;,&#34;abstract&#34;:&#34;The winners will divide a record $1.5 billion jackpot, with a cash option of $983.5 million. In addition, eight tickets that won $2 million were sold in seven states.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/numbers-chosen-for-powerball-with-biggest-jackpot-ever.html&#34;,&#34;byline&#34;:&#34;By ASHLEY SOUTHALL and LIAM STACK&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:36.999-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:36.999-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;People lined up to buy Powerball tickets in Hawthorne, Calif., on Wednesday. Record sales drove up the largest jackpot in United States history to $1.5 billion.&#34;,&#34;copyright&#34;:&#34;Mark Ralston/Agence France-Presse — Getty Images&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:137,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:740,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1480,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;12239fa3-1195-4791-adfd-b8070fbc715b&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Opinion&#34;,&#34;title&#34;:&#34;Why I Will Never Vote for Donald Trump&#34;,&#34;author&#34;:&#34;PETER WEHNER&#34;,&#34;abstract&#34;:&#34;Party loyalty has limits. Mr. Trump has altered the political equation because he has altered the moral equation.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/why-i-will-never-vote-for-donald-trump.html&#34;,&#34;byline&#34;:&#34;By PETER WEHNER&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:35.752-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:35.752-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;West Des Moines, Iowa&#34;,&#34;copyright&#34;:&#34;Jae C. Hong/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:682,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1364,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;34703da9-65ac-402c-91bd-051927152b92&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Ted Cruz Starts to Crack G.O.P. Establishment’s Wall of Opposition&#34;,&#34;author&#34;:&#34;JONATHAN MARTIN&#34;,&#34;abstract&#34;:&#34;Mr. Cruz, a candidate who built his name challenging his party’s leadership, has begun wooing entrenched power brokers, and some of them are listening.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-starts-to-crack-gop-establishments-wall-of-opposition.html&#34;,&#34;byline&#34;:&#34;By JONATHAN MARTIN&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:34.653-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:34.653-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Senator Ted Cruz on the campaign trail in Hudson, N.H., on Tuesday. He has quietly begun wooing some of the party’s most entrenched donors and officials.&#34;,&#34;copyright&#34;:&#34;Matt Rourke/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square320-v2.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbStandard-v2.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square640-v2.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbLarge-v2.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;b04d9dfc-0644-41a6-ba3a-799d88fb26a5&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Movies&#34;,&#34;title&#34;:&#34;Oscar Nominations 2016&#34;,&#34;author&#34;:&#34;BROOKS BARNES and MICHAEL CIEPLY&#34;,&#34;abstract&#34;:&#34;“The Revenant” and “Mad Max: Fury Road” were showered with honors by the Academy of Motion Picture Arts and Sciences, picking up Oscar nominations for best picture and best director.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/movies/oscar-nominations.html&#34;,&#34;byline&#34;:&#34;By BROOKS BARNES and MICHAEL CIEPLY&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:32.864-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:32.864-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;“The Revenant” leads this year’s Oscar nominations with 12.&#34;,&#34;copyright&#34;:&#34;20th Century Fox&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:79,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:428,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:855,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;8c495ce4-7c9d-4eec-af4a-6e199d7c6b97&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;The Upshot&#34;,&#34;title&#34;:&#34;Dear Powerball Winner: Take Our Advice and Take the Annuity&#34;,&#34;author&#34;:&#34;JOSH BARRO&#34;,&#34;abstract&#34;:&#34;Comparing payout options is fun to imagine, but also a useful way to think about taxes, investment opportunities and human nature.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/13/upshot/dear-powerball-winner-take-our-advice-and-take-the-annuity.html&#34;,&#34;byline&#34;:&#34;By JOSH BARRO&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:30.919-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:30.919-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-13&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Actually, it’s either $1.5 billion (which the sign cannot accommodate) or $930 million, depending on how you choose to take your winnings.&#34;,&#34;copyright&#34;:&#34;Seth Wenig/Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;e9590738-be1f-411e-871c-da5e243a9a0d&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;Movies&#34;,&#34;title&#34;:&#34;Alan Rickman, Actor Known for ‘Harry Potter’ and ‘Die Hard,’ Dies at 69&#34;,&#34;author&#34;:&#34;DAVE ITZKOFF and KATIE ROGERS&#34;,&#34;abstract&#34;:&#34;The British actor brought an erudite dignity to film roles like the nefarious mastermind of “Die Hard” and the dour master of potions in the “Harry Potter” series.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/15/obituaries/alan-rickman-dies-at-69.html&#34;,&#34;byline&#34;:&#34;By DAVE ITZKOFF and KATIE ROGERS&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:30.564-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:30.564-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-15&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Alan Rickman at the Golden Theater in New York City in 2011.&#34;,&#34;copyright&#34;:&#34;Sara Krulwich/The New York Times&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:127,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:683,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1365,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;83c9a570-f5e5-4aeb-b32b-963aba50ae4a&#34;,&#34;source&#34;:&#34;The New York Times&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;U.S.&#34;,&#34;title&#34;:&#34;Ted Cruz Didn’t Report Goldman Sachs Loan in a Senate Race&#34;,&#34;author&#34;:&#34;MIKE McINTIRE&#34;,&#34;abstract&#34;:&#34;As Mr. Cruz tells it, loyalty and sacrifice helped finance his 2012 Senate bid in Texas. Turns out, a Goldman Sachs loan did as well.&#34;,&#34;url&#34;:&#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-wall-street-loan-senate-bid-2012.html&#34;,&#34;byline&#34;:&#34;By MIKE McINTIRE&#34;,&#34;updated_date&#34;:&#34;2016-01-14T13:22:28.168-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-14T13:22:28.168-07:00&#34;,&#34;published_date&#34;:&#34;2016-01-14&#34;,&#34;media&#34;:[{&#34;type&#34;:&#34;image&#34;,&#34;subtype&#34;:&#34;photo&#34;,&#34;caption&#34;:&#34;Ted and Heidi Cruz, after he won the runoff for the Republican nomination for a Senate seat from Texas in July 2012.&#34;,&#34;copyright&#34;:&#34;Johnny Hanson/Houston Chronicle, via Associated Press&#34;,&#34;media-metadata&#34;:[{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square320.jpg&#34;,&#34;format&#34;:&#34;square320&#34;,&#34;height&#34;:320,&#34;width&#34;:320},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbStandard.jpg&#34;,&#34;format&#34;:&#34;Standard Thumbnail&#34;,&#34;height&#34;:75,&#34;width&#34;:75},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-articleInline.jpg&#34;,&#34;format&#34;:&#34;Normal&#34;,&#34;height&#34;:121,&#34;width&#34;:190},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-sfSpan.jpg&#34;,&#34;format&#34;:&#34;Large&#34;,&#34;height&#34;:263,&#34;width&#34;:395},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-jumbo.jpg&#34;,&#34;format&#34;:&#34;Jumbo&#34;,&#34;height&#34;:651,&#34;width&#34;:1024},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-superJumbo.jpg&#34;,&#34;format&#34;:&#34;superJumbo&#34;,&#34;height&#34;:1302,&#34;width&#34;:2048},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square640.jpg&#34;,&#34;format&#34;:&#34;square640&#34;,&#34;height&#34;:640,&#34;width&#34;:640},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbLarge.jpg&#34;,&#34;format&#34;:&#34;Large Thumbnail&#34;,&#34;height&#34;:150,&#34;width&#34;:150},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo210.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo210&#34;,&#34;height&#34;:140,&#34;width&#34;:210},{&#34;url&#34;:&#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo440.jpg&#34;,&#34;format&#34;:&#34;mediumThreeByTwo440&#34;,&#34;height&#34;:293,&#34;width&#34;:440}]}],&#34;is_read&#34;:false},{&#34;uuid&#34;:&#34;ba1fa5f0-50b1-4e0c-8cc7-88e993ae108a&#34;,&#34;source&#34;:&#34;&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;Example&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;Example abstract&#34;,&#34;url&#34;:&#34;&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:34:52.506-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:34:52.506-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:false}]</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -        <div id="1top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -                <p><h4> Response Headers</h4></p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td> application/json</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">{&#34;uuid&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;source&#34;:&#34;ssss.comaaaa&#34;,&#34;popularity&#34;:&#34;&#34;,&#34;section&#34;:&#34;&#34;,&#34;title&#34;:&#34;&#34;,&#34;author&#34;:&#34;&#34;,&#34;abstract&#34;:&#34;&#34;,&#34;url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;byline&#34;:&#34;&#34;,&#34;updated_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:10.094-07:00&#34;,&#34;published_date&#34;:&#34;&#34;,&#34;media&#34;:[],&#34;is_read&#34;:true}</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -        <div id="2top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -                <p><h4> Response Headers</h4></p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td> application/json</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">[{&#34;uuid&#34;:&#34;fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a&#34;,&#34;article_id&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;is_human&#34;:false,&#34;reader_id&#34;:&#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&#34;,&#34;content_url&#34;:&#34;://&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&#34;,&#34;file_type&#34;:&#34;audio/mp3&#34;,&#34;created_date&#34;:&#34;2016-01-21T13:37:35.731-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&#34;,&#34;email&#34;:&#34;&#34;,&#34;name&#34;:&#34;&#34;}},{&#34;uuid&#34;:&#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T23:40:56.972-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a&#34;,&#34;article_id&#34;:&#34;98cf2e56-1576-486d-9451-8322bcd0b94d&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://ssss.comaaaa&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:16:20.658-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;4ee0acef-a0f7-4676-b249-f8d1e2c8582c&#34;,&#34;article_id&#34;:&#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://ssss.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:09:53.15-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;2d9d119f-2b97-45a6-9952-0a14d7f61ecb&#34;,&#34;article_id&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:05:22.602-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;fd047772-939e-40c4-80c3-82cde4c166f0&#34;,&#34;article_id&#34;:&#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd047772-939e-40c4-80c3-82cde4c166f0.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd047772-939e-40c4-80c3-82cde4c166f0.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T16:02:57.762-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;28295897-f834-4de9-bd5a-ab3ac782cd02&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:51:02.608-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;3386aeaa-1bc4-4220-bd10-f1c859cb92b6&#34;,&#34;article_id&#34;:&#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://google.com/sadasd/asdasd&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:42:07.389-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}},{&#34;uuid&#34;:&#34;989f74de-e748-4ba0-b601-ec1b98d16dac&#34;,&#34;article_id&#34;:&#34;f52a194d-e449-4315-8dc6-4cb87f407588&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;http://google.com&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/989f74de-e748-4ba0-b601-ec1b98d16dac.mp4&#34;,&#34;raw_url&#34;:&#34;&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T15:37:35.432-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}}]</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -        <div id="3top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -                <p><h4> Response Headers</h4></p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td> application/json</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">{&#34;uuid&#34;:&#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&#34;,&#34;article_id&#34;:&#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&#34;,&#34;is_human&#34;:true,&#34;reader_id&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;content_url&#34;:&#34;://a&#34;,&#34;url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;raw_url&#34;:&#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&#34;,&#34;file_type&#34;:&#34;audio/x-m4a&#34;,&#34;created_date&#34;:&#34;2016-01-03T23:40:56.972-07:00&#34;,&#34;reader&#34;:{&#34;uuid&#34;:&#34;dda083de-f999-441b-bad4-bfd1dccd7f48&#34;,&#34;email&#34;:&#34;a@a.com&#34;,&#34;name&#34;:&#34;a&#34;}}</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -        <div id="4top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td>  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">415</pre>
                                                    -
                                                    -                <p><h4> Response Headers</h4></p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td> text/plain; charset=utf-8</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">Please provide an mp3 or mp4 audio file
                                                    -</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -        <div id="5top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Content-Type</td>
                                                    -                        <td>  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Referer</td>
                                                    -                        <td>
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -        <div id="6top"  role="tabpanel" class="tab-pane col-md-10">
                                                    -
                                                    -
                                                    -                <p> <H4> Request Headers </H4> </p>
                                                    -                <table class="table table-bordered table-striped">
                                                    -                    <tr>
                                                    -                        <th>Key</th>
                                                    -                        <th>Value</th>
                                                    -                    </tr>
                                                    -
                                                    -                    <tr>
                                                    -                        <td>Upgrade-Insecure-Requests</td>
                                                    -                        <td>  1
                                                    -</td>
                                                    -                    </tr>
                                                    -
                                                    -                </table>
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                <p><h4> Response Code</h4></p>
                                                    -                <pre class="prettyprint lang-json">200</pre>
                                                    -
                                                    -
                                                    -                <p> <H4> Response Body </H4> </p>
                                                    -                <pre class="prettyprint lang-json">&lt;!DOCTYPE html&gt;
                                                    -&lt;html&gt;
                                                    -&lt;head lang=&#34;en&#34;&gt;
                                                    -    &lt;title&gt; API Documentation &lt;/title&gt;
                                                    -    &lt;link rel=&#34;stylesheet&#34; href=&#34;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css&#34;&gt;
                                                    -    &lt;script src=&#34;http://google-code-prettify.googlecode.com/svn/loader/run_prettify.js&#34;&gt;&lt;/script&gt;
                                                    -    &lt;link href=&#39;http://fonts.googleapis.com/css?family=Roboto&#39; rel=&#39;stylesheet&#39; type=&#39;text/css&#39;&gt;
                                                    -    &lt;link rel=&#34;stylesheet&#34; href=&#34;http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.css&#34;&gt;
                                                    -
                                                    -    &lt;link rel=&#34;stylesheet&#34; href=&#34;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css&#34;&gt;
                                                    -    &lt;script src=&#34;https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js&#34;&gt;&lt;/script&gt;
                                                    -
                                                    -    &lt;script src=&#34;https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js&#34;&gt;&lt;/script&gt;
                                                    -    &lt;style type=&#34;text/css&#34;&gt;
                                                    -        body {
                                                    -            font-family: &#39;Roboto&#39;, sans-serif;
                                                    -        }
                                                    -        .hidden {
                                                    -            display:none;
                                                    -        }
                                                    -    &lt;/style&gt;
                                                    -    &lt;style type=&#34;text/css&#34;&gt;
                                                    -        pre.prettyprint {
                                                    -            border: 1px solid #ccc;
                                                    -            margin-bottom: 0;
                                                    -            padding: 9.5px;
                                                    -        }
                                                    -    &lt;/style&gt;
                                                    -    &lt;script src=&#34;https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js&#34;&gt;&lt;/script&gt;
                                                    -    &lt;script&gt;
                                                    -        hljs.initHighlightingOnLoad();
                                                    -        function toggler(divId) {
                                                    -           $(&#34;#&#34; &#43; divId).toggle();
                                                    -        }
                                                    -    &lt;/script&gt;
                                                    -&lt;/head&gt;
                                                    -&lt;body&gt;
                                                    -&lt;nav class=&#34;navbar navbar-default navbar-fixed-top&#34;&gt;
                                                    -    &lt;div class=&#34;container-fluid&#34;&gt;
                                                    -
                                                    -        &lt;div class=&#34;navbar-header&#34;&gt;
                                                    -            &lt;button type=&#34;button&#34; class=&#34;navbar-toggle collapsed&#34; data-toggle=&#34;collapse&#34;
                                                    -                    data-target=&#34;#bs-example-navbar-collapse-1&#34;&gt;
                                                    -                &lt;span class=&#34;sr-only&#34;&gt;Toggle navigation&lt;/span&gt;
                                                    -                &lt;span class=&#34;icon-bar&#34;&gt;&lt;/span&gt;
                                                    -                &lt;span class=&#34;icon-bar&#34;&gt;&lt;/span&gt;
                                                    -                &lt;span class=&#34;icon-bar&#34;&gt;&lt;/span&gt;
                                                    -            &lt;/button&gt;
                                                    -            &lt;a class=&#34;navbar-brand&#34; href=&#34;#&#34;&gt;Outloud! Api Documentation&lt;/a&gt;
                                                    -            &lt;p class=&#34;navbar-text&#34;&gt;Developed by Gophers at &lt;a href=&#34;http://betacraft.co&#34;&gt;Betacraft&lt;/a&gt;&lt;/p&gt;
                                                    -        &lt;/div&gt;
                                                    -
                                                    -
                                                    -    &lt;/div&gt;
                                                    -
                                                    -&lt;/nav&gt;
                                                    -&lt;div class=&#34;container-fluid&#34; style=&#34;margin-top: 70px;margin-bottom: 20px;&#34;&gt;
                                                    -    &lt;div class=&#34;container-fluid&#34;&gt;
                                                    -    &lt;div class=&#34;col-md-4&#34;&gt;
                                                    -        &lt;div class=&#34;panel panel-default&#34;&gt;
                                                    -              &lt;div class=&#34;panel-heading&#34;&gt;Base Urls&lt;/div&gt;
                                                    -              &lt;div class=&#34;panel-body&#34;&gt;
                                                    -
                                                    -              &lt;/div&gt;
                                                    -            &lt;/div&gt;
                                                    -        &lt;ul class=&#34;nav nav-pills nav-stacked&#34; role=&#34;tablist&#34;&gt;
                                                    -
                                                    -                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#0top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;GET : /api/feed&lt;/a&gt;&lt;/li&gt;
                                                    -
                                                    -                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#1top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;GET : /api/article/98cf2e56-1576-486d-9451-8322bcd0b94d&lt;/a&gt;&lt;/li&gt;
                                                    -
                                                    -                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#2top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;GET : /api/readings&lt;/a&gt;&lt;/li&gt;
                                                    -
                                                    -                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#3top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;GET : /api/reading/2132ccf3-a314-4b33-b647-1f3ebcd9256d&lt;/a&gt;&lt;/li&gt;
                                                    -
                                                    -                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#4top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;POST : /api/reading/new&lt;/a&gt;&lt;/li&gt;
                                                    -
                                                    -                &lt;li role=&#34;presentation&#34;&gt;&lt;a href=&#34;#5top&#34; role=&#34;tab&#34; data-toggle=&#34;tab&#34;&gt;POST : /api/channel/add&lt;/a&gt;&lt;/li&gt;
                                                    -
                                                    -        &lt;ul&gt;
                                                    -    &lt;/div&gt;
                                                    -    &lt;div class=&#34;col-md-8 tab-content&#34;&gt;
                                                    -
                                                    -        &lt;div id=&#34;0top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Referer&lt;/td&gt;
                                                    -                        &lt;td&gt;
                                                    -&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                    -                        &lt;td&gt; application/json&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;[{&amp;#34;uuid&amp;#34;:&amp;#34;98cf2e56-1576-486d-9451-8322bcd0b94d&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;ssss.comaaaa&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://ssss.comaaaa&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:16:10.094-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:16:10.094-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;ssss.com&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://ssss.com&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:09:51.342-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:09:51.342-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;://a.com&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:02:46.982-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:02:46.982-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;://a&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T15:50:52.131-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:50:52.131-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;google.com&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://google.com/sadasd/asdasd&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T15:41:56.841-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:41:56.841-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true},{&amp;#34;uuid&amp;#34;:&amp;#34;f52a194d-e449-4315-8dc6-4cb87f407588&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;google.com&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://google.com&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T15:37:26.731-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:37:26.731-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true}]&lt;/pre&gt;
                                                    -
                                                    -                &lt;hr&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Referer&lt;/td&gt;
                                                    -                        &lt;td&gt;
                                                    -&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; URL Params &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;is_read&lt;/td&gt;
                                                    -                        &lt;td&gt; false&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                    -                        &lt;td&gt; application/json&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;[{&amp;#34;uuid&amp;#34;:&amp;#34;73f9b780-10d3-45e8-946b-2de9541e05e0&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;The Brutalism of Ted Cruz&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;DAVID BROOKS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The Texas Republican lacks the Christian virtues many evangelical voters may expect.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/12/opinion/the-brutalism-of-ted-cruz.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By DAVID BROOKS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T14:12:58.323-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T14:12:58.323-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-12&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Eric Thayer for The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:132,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:710,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1419,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/opinion/12brooksWeb/12brooksWeb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;36ecf666-8d81-4a37-be59-a304eef298bc&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;World&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Iran’s Swift Release of U.S. Sailors Hailed as a Sign of Warmer Relations&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;It remained unclear who decided to release the sailors or how their two patrol boats ended up in Iranian territorial waters.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/world/middleeast/iran-navy-crew-release.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By DAVID E. SANGER, ERIC SCHMITT and HELENE COOPER&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:58.979-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:58.979-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;A photo released by the Revolutionary Guards on Wednesday shows detained American sailors in an undisclosed location in Iran.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Sepahnews, via Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbStandard-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:107,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-sfSpan-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:576,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1125,&amp;#34;width&amp;#34;:2000},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-thumbLarge-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14SHIPS-3/14SHIPS-3-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;79a207ef-6afc-4238-be80-858ed266e550&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Arts&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;How David Bowie Challenged MTV on Race&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;WESLEY MORRIS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;A candid exchange in 1983 is sobering for its continued relevance and useful for what it says about Mr. Bowie’s sense of social awareness.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/arts/music/how-david-bowie-used-his-stardom-and-race-to-challenge-mtv.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By WESLEY MORRIS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:57.747-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:57.747-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;David Bowie at Madison Square Garden in 1976.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Allan Tannenbaum/Getty Images&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:121,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:379,&amp;#34;width&amp;#34;:594},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:379,&amp;#34;width&amp;#34;:594},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/arts/14BOWIEBLACK/14BOWIEBLACK-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;c119f1f8-dfc5-43dd-b0a3-eac519e8e507&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Arts&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Iggy Pop on David Bowie: ‘He Resurrected Me’&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JON PARELES&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;In an interview, the Detroit rocker, who collaborated with Mr. Bowie in the 1970s, talked about their friendship and their work through the years.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/arts/music/david-bowie-iggy-pop.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JON PARELES&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:56.43-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:56.43-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Iggy Pop, left, and David Bowie, during the tour for Mr. Pop’s 1977 album “The Idiot.”&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Rex Features, via Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:131,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:704,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1408,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/14IGGY-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/arts/14IGGY/13IGGYBOWIE-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;57cfab66-99a1-473d-bec2-f1a2da5c259b&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;World&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;El Chapo Enticed by Star Power of Mexican Actress, Not Sean Penn&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;PAULINA VILLEGAS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Conversations between the drug lord Joaquín Guzmán Loera and the actress Kate del Castillo offer a window into the psyche of one of the world’s most wanted criminals.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/world/americas/el-chapo-enticed-by-star-power-of-mexican-tv-actress-not-sean-penn.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By PAULINA VILLEGAS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:53.698-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:53.698-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;The actress Kate del Castillo in Hollywood in November.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Mark Ralston/Agence France-Presse — Getty Images&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:209,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:1024,&amp;#34;width&amp;#34;:933},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:2048,&amp;#34;width&amp;#34;:1866},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/world/14elchapo-web/14elchapo-web-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;22dd6af8-0ea9-4cfb-9422-74c5e896d65f&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Politics: Everything’s Relative&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;GAIL COLLINS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Here are rules for dealing with family members showing up in the presidential race, like when to give them a break and when to go for the jugular.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/opinion/politics-everythings-relative.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By GAIL COLLINS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:52.612-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:52.612-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Earl Wilson/The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbStandard-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-articleInline-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-jumbo-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:228,&amp;#34;width&amp;#34;:342},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-superJumbo-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:228,&amp;#34;width&amp;#34;:342},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-thumbLarge-v7.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2014/11/01/opinion/collins-circular/collins-circular-mediumThreeByTwo210-v5.png&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;686c0ea7-af91-48de-b6db-2c7035408d31&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;World&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Jakarta Attack Kills 2, Raising Fears of Growing ISIS Reach&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JOE COCHRANE and THOMAS FULLER&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The two civilians killed in the explosions and gunfire were a Canadian and an Indonesian, senior officials reported. Five assailants were also killed.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/15/world/asia/jakarta-explosion.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JOE COCHRANE and THOMAS FULLER&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:49.387-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:49.387-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-15&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Bay Ismoyo/Agence France-Presse — Getty Images&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:139,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:748,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1496,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/world/20160115_INDONESIA_HP-slide-MEZB/20160115_INDONESIA_HP-slide-MEZB-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;45a78a90-74dc-4958-aef4-d1f3e695c36a&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;The Other Obama Legacy&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;CHARLES M. BLOW&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;For many young people, the first president they consciously registered was a black man.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/opinion/the-other-obama-legacy.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By CHARLES M. BLOW&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:47.456-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:47.456-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;President Obama bends over so the son of a White House staff member can touch his hair during a visit to the Oval Office.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Pete Souza/The White House&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:128,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:682,&amp;#34;width&amp;#34;:1012},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:682,&amp;#34;width&amp;#34;:1012},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14blowWeb/14blowWeb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;cbb5b09c-bf63-44f0-9bda-c5443b435c89&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;The Tempting of Bernie Sanders&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;ROSS DOUTHAT&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Is he ruthless enough to win?&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/the-tempting-of-bernie-sanders.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By ROSS DOUTHAT&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:46.422-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:46.422-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Scott Morgan/Reuters&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:121,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:264,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:653,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1305,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14douthatWeb/14douthatWeb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;2e8d771a-4d16-4421-83ea-92a599497890&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Food&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;At Thomas Keller’s Per Se, Slips and Stumbles&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;PETE WELLS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;A new look at one of the nation’s landmark restaurants.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/13/dining/pete-wells-per-se-review.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By PETE WELLS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:41.353-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:41.353-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-13&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Karsten Moran for The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square320-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbStandard-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-sfSpan-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:684,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1367,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-square640-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-thumbLarge-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo210-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/dining/13REST-slide-DPTT/13REST-slide-DPTT-mediumThreeByTwo440-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;7efce391-6d6f-4153-9bd2-b4022b06ad7d&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;U.S.&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;U.S. Will Track Secret Buyers of Luxury Real Estate&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;LOUISE STORY&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The initiative will start in Manhattan and Miami-Dade County as part of a broader federal effort to focus on money laundering in real estate.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/us/us-will-track-secret-buyers-of-luxury-real-estate.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By LOUISE STORY&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:40.794-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:40.794-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Condominiums at the Time Warner Center were found to have a number of hidden owners over a decade who had been the subjects of government investigations.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Edward Caruso for The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:152,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:819,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1639,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/xxLLC1/xxLLC1-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;9bfb4871-a656-4e31-a53f-f97cfeaa48bf&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Business Day&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Al Jazeera America to Shut Down by April&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JOHN KOBLIN&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The cable news outlet, which began broadcasting in August 2013, said it would expand its digital presence in the United States.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/business/media/al-jazeera-america-to-shut-down-in-april.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JOHN KOBLIN&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:38.092-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:38.092-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Al Jazeera America debuted in August 2013 after it bought Al Gore’s Current TV for $500 million.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Suzanne DeChillo/The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:683,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1365,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/business/14jazeera-web1/14jazeera-web1-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;7f138454-c7cf-4667-8135-b46f4bd0cdd4&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;U.S.&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Powerball Has 3 Big Winners, in California, Florida and Tennessee&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;ASHLEY SOUTHALL and LIAM STACK&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The winners will divide a record $1.5 billion jackpot, with a cash option of $983.5 million. In addition, eight tickets that won $2 million were sold in seven states.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/us/numbers-chosen-for-powerball-with-biggest-jackpot-ever.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By ASHLEY SOUTHALL and LIAM STACK&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:36.999-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:36.999-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;People lined up to buy Powerball tickets in Hawthorne, Calif., on Wednesday. Record sales drove up the largest jackpot in United States history to $1.5 billion.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Mark Ralston/Agence France-Presse — Getty Images&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:137,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:740,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1480,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/14xp-powerball-WEB1/14xp-powerball-WEB1-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;12239fa3-1195-4791-adfd-b8070fbc715b&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Opinion&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Why I Will Never Vote for Donald Trump&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;PETER WEHNER&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Party loyalty has limits. Mr. Trump has altered the political equation because he has altered the moral equation.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/opinion/campaign-stops/why-i-will-never-vote-for-donald-trump.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By PETER WEHNER&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:35.752-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:35.752-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;West Des Moines, Iowa&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Jae C. Hong/Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:682,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1364,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/opinion/14wehnerWeb/14wehnerWeb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;34703da9-65ac-402c-91bd-051927152b92&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;U.S.&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Ted Cruz Starts to Crack G.O.P. Establishment’s Wall of Opposition&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JONATHAN MARTIN&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Mr. Cruz, a candidate who built his name challenging his party’s leadership, has begun wooing entrenched power brokers, and some of them are listening.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-starts-to-crack-gop-establishments-wall-of-opposition.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JONATHAN MARTIN&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:34.653-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:34.653-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Senator Ted Cruz on the campaign trail in Hudson, N.H., on Tuesday. He has quietly begun wooing some of the party’s most entrenched donors and officials.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Matt Rourke/Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square320-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbStandard-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:683,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1365,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-square640-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-thumbLarge-v2.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/13/us/13CRUZELITE/13CRUZELITE-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;b04d9dfc-0644-41a6-ba3a-799d88fb26a5&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Movies&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Oscar Nominations 2016&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;BROOKS BARNES and MICHAEL CIEPLY&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;“The Revenant” and “Mad Max: Fury Road” were showered with honors by the Academy of Motion Picture Arts and Sciences, picking up Oscar nominations for best picture and best director.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/15/movies/oscar-nominations.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By BROOKS BARNES and MICHAEL CIEPLY&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:32.864-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:32.864-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-15&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;“The Revenant” leads this year’s Oscar nominations with 12.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;20th Century Fox&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:79,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:428,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:855,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/oscars4/oscars4-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;8c495ce4-7c9d-4eec-af4a-6e199d7c6b97&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;The Upshot&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Dear Powerball Winner: Take Our Advice and Take the Annuity&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;JOSH BARRO&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Comparing payout options is fun to imagine, but also a useful way to think about taxes, investment opportunities and human nature.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/13/upshot/dear-powerball-winner-take-our-advice-and-take-the-annuity.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By JOSH BARRO&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:30.919-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:30.919-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-13&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Actually, it’s either $1.5 billion (which the sign cannot accommodate) or $930 million, depending on how you choose to take your winnings.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Seth Wenig/Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:683,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1365,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/12/upshot/13UP-LOTTERY/13UP-LOTTERY-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;e9590738-be1f-411e-871c-da5e243a9a0d&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;Movies&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Alan Rickman, Actor Known for ‘Harry Potter’ and ‘Die Hard,’ Dies at 69&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;DAVE ITZKOFF and KATIE ROGERS&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;The British actor brought an erudite dignity to film roles like the nefarious mastermind of “Die Hard” and the dour master of potions in the “Harry Potter” series.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/15/obituaries/alan-rickman-dies-at-69.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By DAVE ITZKOFF and KATIE ROGERS&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:30.564-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:30.564-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-15&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Alan Rickman at the Golden Theater in New York City in 2011.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Sara Krulwich/The New York Times&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:127,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:683,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1365,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/15/arts/15rickman-obit-web/15rickman-obit-web-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;83c9a570-f5e5-4aeb-b32b-963aba50ae4a&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;The New York Times&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;U.S.&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Ted Cruz Didn’t Report Goldman Sachs Loan in a Senate Race&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;MIKE McINTIRE&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;As Mr. Cruz tells it, loyalty and sacrifice helped finance his 2012 Senate bid in Texas. Turns out, a Goldman Sachs loan did as well.&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://www.nytimes.com/2016/01/14/us/politics/ted-cruz-wall-street-loan-senate-bid-2012.html&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;By MIKE McINTIRE&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-14T13:22:28.168-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-14T13:22:28.168-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;2016-01-14&amp;#34;,&amp;#34;media&amp;#34;:[{&amp;#34;type&amp;#34;:&amp;#34;image&amp;#34;,&amp;#34;subtype&amp;#34;:&amp;#34;photo&amp;#34;,&amp;#34;caption&amp;#34;:&amp;#34;Ted and Heidi Cruz, after he won the runoff for the Republican nomination for a Senate seat from Texas in July 2012.&amp;#34;,&amp;#34;copyright&amp;#34;:&amp;#34;Johnny Hanson/Houston Chronicle, via Associated Press&amp;#34;,&amp;#34;media-metadata&amp;#34;:[{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square320.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square320&amp;#34;,&amp;#34;height&amp;#34;:320,&amp;#34;width&amp;#34;:320},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbStandard.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Standard Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:75,&amp;#34;width&amp;#34;:75},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-articleInline.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Normal&amp;#34;,&amp;#34;height&amp;#34;:121,&amp;#34;width&amp;#34;:190},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-sfSpan.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large&amp;#34;,&amp;#34;height&amp;#34;:263,&amp;#34;width&amp;#34;:395},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-jumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Jumbo&amp;#34;,&amp;#34;height&amp;#34;:651,&amp;#34;width&amp;#34;:1024},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-superJumbo.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;superJumbo&amp;#34;,&amp;#34;height&amp;#34;:1302,&amp;#34;width&amp;#34;:2048},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-square640.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;square640&amp;#34;,&amp;#34;height&amp;#34;:640,&amp;#34;width&amp;#34;:640},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-thumbLarge.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;Large Thumbnail&amp;#34;,&amp;#34;height&amp;#34;:150,&amp;#34;width&amp;#34;:150},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo210.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo210&amp;#34;,&amp;#34;height&amp;#34;:140,&amp;#34;width&amp;#34;:210},{&amp;#34;url&amp;#34;:&amp;#34;http://static01.nyt.com/images/2016/01/14/us/15CRUZweb/15CRUZweb-mediumThreeByTwo440.jpg&amp;#34;,&amp;#34;format&amp;#34;:&amp;#34;mediumThreeByTwo440&amp;#34;,&amp;#34;height&amp;#34;:293,&amp;#34;width&amp;#34;:440}]}],&amp;#34;is_read&amp;#34;:false},{&amp;#34;uuid&amp;#34;:&amp;#34;ba1fa5f0-50b1-4e0c-8cc7-88e993ae108a&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;Example&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;Example abstract&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:34:52.506-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:34:52.506-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:false}]&lt;/pre&gt;
                                                    -
                                                    -                &lt;hr&gt;
                                                    -
                                                    -        &lt;/div&gt;
                                                    -
                                                    -        &lt;div id=&#34;1top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Referer&lt;/td&gt;
                                                    -                        &lt;td&gt;
                                                    -&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                    -                        &lt;td&gt; application/json&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;{&amp;#34;uuid&amp;#34;:&amp;#34;98cf2e56-1576-486d-9451-8322bcd0b94d&amp;#34;,&amp;#34;source&amp;#34;:&amp;#34;ssss.comaaaa&amp;#34;,&amp;#34;popularity&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;section&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;title&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;author&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;abstract&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;http://ssss.comaaaa&amp;#34;,&amp;#34;byline&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;updated_date&amp;#34;:&amp;#34;2016-01-03T16:16:10.094-07:00&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:16:10.094-07:00&amp;#34;,&amp;#34;published_date&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;media&amp;#34;:[],&amp;#34;is_read&amp;#34;:true}&lt;/pre&gt;
                                                    -
                                                    -                &lt;hr&gt;
                                                    -
                                                    -        &lt;/div&gt;
                                                    -
                                                    -        &lt;div id=&#34;2top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Referer&lt;/td&gt;
                                                    -                        &lt;td&gt;
                                                    -&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                    -                        &lt;td&gt; application/json&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;[{&amp;#34;uuid&amp;#34;:&amp;#34;fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;98cf2e56-1576-486d-9451-8322bcd0b94d&amp;#34;,&amp;#34;is_human&amp;#34;:false,&amp;#34;reader_id&amp;#34;:&amp;#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd21cb8f-2a81-44e0-a9e5-82ebc9fe328a.mp3&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/mp3&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-21T13:37:35.731-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;0bf971e2-f655-44ef-8e6d-8bd7ec02e605&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T23:40:56.972-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;98cf2e56-1576-486d-9451-8322bcd0b94d&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;http://ssss.comaaaa&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-12102a8a-5da7-4f14-ba9b-0c64d2e9ca8a.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:16:20.658-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;4ee0acef-a0f7-4676-b249-f8d1e2c8582c&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;d085529c-dfbd-4e1f-9da6-a35119e0c6d7&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;http://ssss.com&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-4ee0acef-a0f7-4676-b249-f8d1e2c8582c.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:09:53.15-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;2d9d119f-2b97-45a6-9952-0a14d7f61ecb&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a.com&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2d9d119f-2b97-45a6-9952-0a14d7f61ecb.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:05:22.602-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;fd047772-939e-40c4-80c3-82cde4c166f0&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;1965ded8-9fe5-474d-b164-2ef9eabf4ced&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a.com&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/fd047772-939e-40c4-80c3-82cde4c166f0.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-fd047772-939e-40c4-80c3-82cde4c166f0.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T16:02:57.762-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;28295897-f834-4de9-bd5a-ab3ac782cd02&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-28295897-f834-4de9-bd5a-ab3ac782cd02.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:51:02.608-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;3386aeaa-1bc4-4220-bd10-f1c859cb92b6&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;cc99e58d-6f9a-4990-b266-0cc7fade8fe9&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;http://google.com/sadasd/asdasd&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-3386aeaa-1bc4-4220-bd10-f1c859cb92b6.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:42:07.389-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}},{&amp;#34;uuid&amp;#34;:&amp;#34;989f74de-e748-4ba0-b601-ec1b98d16dac&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;f52a194d-e449-4315-8dc6-4cb87f407588&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;http://google.com&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/989f74de-e748-4ba0-b601-ec1b98d16dac.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T15:37:35.432-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}}]&lt;/pre&gt;
                                                    -
                                                    -                &lt;hr&gt;
                                                    -
                                                    -        &lt;/div&gt;
                                                    -
                                                    -        &lt;div id=&#34;3top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Referer&lt;/td&gt;
                                                    -                        &lt;td&gt;
                                                    -&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                    -                        &lt;td&gt; application/json&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;{&amp;#34;uuid&amp;#34;:&amp;#34;2132ccf3-a314-4b33-b647-1f3ebcd9256d&amp;#34;,&amp;#34;article_id&amp;#34;:&amp;#34;bb44c161-07a3-4641-9323-e21b3e8bbcd8&amp;#34;,&amp;#34;is_human&amp;#34;:true,&amp;#34;reader_id&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;content_url&amp;#34;:&amp;#34;://a&amp;#34;,&amp;#34;url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&amp;#34;,&amp;#34;raw_url&amp;#34;:&amp;#34;https://s3-us-west-2.amazonaws.com/appoutloud/raw-2132ccf3-a314-4b33-b647-1f3ebcd9256d.mp4&amp;#34;,&amp;#34;file_type&amp;#34;:&amp;#34;audio/x-m4a&amp;#34;,&amp;#34;created_date&amp;#34;:&amp;#34;2016-01-03T23:40:56.972-07:00&amp;#34;,&amp;#34;reader&amp;#34;:{&amp;#34;uuid&amp;#34;:&amp;#34;dda083de-f999-441b-bad4-bfd1dccd7f48&amp;#34;,&amp;#34;email&amp;#34;:&amp;#34;a@a.com&amp;#34;,&amp;#34;name&amp;#34;:&amp;#34;a&amp;#34;}}&lt;/pre&gt;
                                                    -
                                                    -                &lt;hr&gt;
                                                    -
                                                    -        &lt;/div&gt;
                                                    -
                                                    -        &lt;div id=&#34;4top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                    -                        &lt;td&gt;  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                    -&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Referer&lt;/td&gt;
                                                    -                        &lt;td&gt;
                                                    -&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;415&lt;/pre&gt;
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Headers&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                    -                        &lt;td&gt; text/plain; charset=utf-8&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Response Body &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;Please provide an mp3 or mp4 audio file
                                                    -&lt;/pre&gt;
                                                    -
                                                    -                &lt;hr&gt;
                                                    -
                                                    -        &lt;/div&gt;
                                                    -
                                                    -        &lt;div id=&#34;5top&#34;  role=&#34;tabpanel&#34; class=&#34;tab-pane col-md-10&#34;&gt;
                                                    -
                                                    -
                                                    -                &lt;p&gt; &lt;H4&gt; Request Headers &lt;/H4&gt; &lt;/p&gt;
                                                    -                &lt;table class=&#34;table table-bordered table-striped&#34;&gt;
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;th&gt;Key&lt;/th&gt;
                                                    -                        &lt;th&gt;Value&lt;/th&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Content-Type&lt;/td&gt;
                                                    -                        &lt;td&gt;  multipart/form-data; boundary=----------------------------98ff7c75a7ac
                                                    -&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                    &lt;tr&gt;
                                                    -                        &lt;td&gt;Referer&lt;/td&gt;
                                                    -                        &lt;td&gt;
                                                    -&lt;/td&gt;
                                                    -                    &lt;/tr&gt;
                                                    -
                                                    -                &lt;/table&gt;
                                                    -
                                                    -
                                                    -
                                                    -
                                                    -                &lt;p&gt;&lt;h4&gt; Response Code&lt;/h4&gt;&lt;/p&gt;
                                                    -                &lt;pre class=&#34;prettyprint lang-json&#34;&gt;200&lt;/pre&gt;
                                                    -
                                                    -
                                                    -                &lt;hr&gt;
                                                    -
                                                    -        &lt;/div&gt;
                                                    -
                                                    -    &lt;/div&gt;
                                                    -&lt;/div&gt;
                                                    -&lt;/div&gt;
                                                    -&lt;hr&gt;
                                                    -&lt;/body&gt;
                                                    -&lt;/html&gt;</pre>
                                                    -
                                                    -                <hr>
                                                    -
                                                    -        </div>
                                                    -
                                                    -    </div>
                                                    -</div>
                                                    -</div>
                                                    -<hr>
                                                    -</body>
                                                    -</html>
                                                    - -
                                                    - -
                                                    - -
                                                    -
                                                    -
                                                    -
                                                    - From ca29f0e4a0dd65a696bed9ff9b361b724969bd85 Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Sat, 23 Jan 2016 17:06:00 -0700 Subject: [PATCH 17/32] Implemented Week 2 changes for resume --- build/apps/resume/index.html | 138 +++++++++++++++++++------------ build/apps/resume/subscribe.html | 115 +++++++++++++++++--------- build/apps/todos/index.html | 8 +- build/learning/week2/index.html | 4 +- src/apps/resume/index.html | 138 +++++++++++++++++++------------ src/apps/resume/subscribe.html | 115 +++++++++++++++++--------- src/apps/todos/index.html | 8 +- src/learning/week2/index.md | 4 +- 8 files changed, 332 insertions(+), 198 deletions(-) diff --git a/build/apps/resume/index.html b/build/apps/resume/index.html index bac2111f..517e8812 100644 --- a/build/apps/resume/index.html +++ b/build/apps/resume/index.html @@ -1,67 +1,101 @@ + - - - - - - + + + + + + - - - - - -
                                                    -
                                                    -
                                                    Frederik Löhner
                                                    -
                                                    Frederik.Lohner@colorado.edu
                                                    -
                                                    Github.com/FredLoh
                                                    -
                                                    720-474-2885
                                                    -
                                                    -
                                                    -

                                                    Education

                                                    -
                                                      -
                                                      -
                                                      -
                                                      -

                                                      Experience

                                                      -
                                                        -
                                                        + + + + + + -
                                                        -
                                                        -

                                                        Projects

                                                        -
                                                          -
                                                          +
                                                          +
                                                          +
                                                          Frederik Löhner
                                                          +
                                                          Frederik.Lohner@colorado.edu
                                                          +
                                                          Github.com/FredLoh
                                                          +
                                                          720-474-2885
                                                          +
                                                          +
                                                          +

                                                          Education

                                                          +
                                                            +
                                                            +
                                                            +
                                                            +

                                                            Experience

                                                            +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +

                                                              Projects

                                                              +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +

                                                                Tasks

                                                                +
                                                                  +
                                                                  +
                                                                  -
                                                                  - - - - + }) + + + + + diff --git a/build/apps/resume/subscribe.html b/build/apps/resume/subscribe.html index fadeadce..8adddfbd 100644 --- a/build/apps/resume/subscribe.html +++ b/build/apps/resume/subscribe.html @@ -1,58 +1,91 @@ - - - - - - + - - - - - - - - - -
                                                                  + + + + + + + + + + + + + + + + + + +

                                                                  Subscribe

                                                                  -
                                                                  -
                                                                  - - -
                                                                  +
                                                                  + + +
                                                                  -
                                                                  -
                                                                  - Submit -
                                                                  +
                                                                  + Submit +
                                                                  -
                                                                  -

                                                                  Current Subscribers

                                                                  -
                                                                    -
                                                                  +

                                                                  Current Subscribers

                                                                  +
                                                                    +
                                                                  -
                                                                  - - + - - - + diff --git a/build/apps/todos/index.html b/build/apps/todos/index.html index b6829412..71130a08 100755 --- a/build/apps/todos/index.html +++ b/build/apps/todos/index.html @@ -38,7 +38,7 @@

                                                                  -
                                                                  + +

                                                                   

                                                                  diff --git a/build/learning/week2/index.html b/build/learning/week2/index.html index 9d83d085..0b2980bc 100644 --- a/build/learning/week2/index.html +++ b/build/learning/week2/index.html @@ -61,9 +61,9 @@

                                                                  Due

                                                                  Sunday @ 11:59pm, 1/24/2016

                                                                  Requirements

                                                                    -
                                                                  • [ ] Add a Tasks section the main page of your resume app (index.html). +
                                                                  • [x] Add a Tasks section the main page of your resume app (index.html). This section should displays a list of tasks assigned to you. These tasks are pulled from your team’s Firebase.
                                                                  • -
                                                                  • [ ] Create a Subscribe page (subscribe.html). +
                                                                  • [x] Create a Subscribe page (subscribe.html). This page should have a simple text box for a visitor (e.g., prospective employer) to enter an email address to subscribe to a mailing list. Each email address should be stored to the Firebase. Also, the page should display all the subscribers’ emails.
                                                                  • diff --git a/src/apps/resume/index.html b/src/apps/resume/index.html index bac2111f..517e8812 100644 --- a/src/apps/resume/index.html +++ b/src/apps/resume/index.html @@ -1,67 +1,101 @@ + - - - - - - + + + + + + - - - - - -
                                                                    -
                                                                    -
                                                                    Frederik Löhner
                                                                    -
                                                                    Frederik.Lohner@colorado.edu
                                                                    -
                                                                    Github.com/FredLoh
                                                                    -
                                                                    720-474-2885
                                                                    -
                                                                    -
                                                                    -

                                                                    Education

                                                                    -
                                                                      -
                                                                      -
                                                                      -
                                                                      -

                                                                      Experience

                                                                      -
                                                                        -
                                                                        + + + + + + -
                                                                        -
                                                                        -

                                                                        Projects

                                                                        -
                                                                          -
                                                                          +
                                                                          +
                                                                          +
                                                                          Frederik Löhner
                                                                          +
                                                                          Frederik.Lohner@colorado.edu
                                                                          +
                                                                          Github.com/FredLoh
                                                                          +
                                                                          720-474-2885
                                                                          +
                                                                          +
                                                                          +

                                                                          Education

                                                                          +
                                                                            +
                                                                            +
                                                                            +
                                                                            +

                                                                            Experience

                                                                            +
                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Projects

                                                                              +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +

                                                                                Tasks

                                                                                +
                                                                                  +
                                                                                  +
                                                                                  -
                                                                                  - - - - + }) + + + + + diff --git a/src/apps/resume/subscribe.html b/src/apps/resume/subscribe.html index fadeadce..8adddfbd 100644 --- a/src/apps/resume/subscribe.html +++ b/src/apps/resume/subscribe.html @@ -1,58 +1,91 @@ - - - - - - + - - - - - - - - - -
                                                                                  + + + + + + + + + + + + + + + + + + +

                                                                                  Subscribe

                                                                                  -
                                                                                  -
                                                                                  - - -
                                                                                  +
                                                                                  + + +
                                                                                  -
                                                                                  -
                                                                                  - Submit -
                                                                                  +
                                                                                  + Submit +
                                                                                  -
                                                                                  -

                                                                                  Current Subscribers

                                                                                  -
                                                                                    -
                                                                                  +

                                                                                  Current Subscribers

                                                                                  +
                                                                                    +
                                                                                  -
                                                                                  - - + - - - + diff --git a/src/apps/todos/index.html b/src/apps/todos/index.html index b6829412..71130a08 100755 --- a/src/apps/todos/index.html +++ b/src/apps/todos/index.html @@ -38,7 +38,7 @@

                                                                                  -
                                                                                  + +

                                                                                   

                                                                                  diff --git a/src/learning/week2/index.md b/src/learning/week2/index.md index d9e501dc..339c2fdd 100644 --- a/src/learning/week2/index.md +++ b/src/learning/week2/index.md @@ -39,9 +39,9 @@ Sunday @ 11:59pm, 1/24/2016 ### Requirements -* [ ] Add a __Tasks__ section the main page of your resume app ([index.html](/apps/resume/index.html)). +* [x] Add a __Tasks__ section the main page of your resume app ([index.html](/apps/resume/index.html)). This section should displays a list of tasks assigned to you. These tasks are pulled from your team's Firebase. -* [ ] Create a __Subscribe__ page ([subscribe.html](/apps/resume/subscribe.html)). +* [x] Create a __Subscribe__ page ([subscribe.html](/apps/resume/subscribe.html)). This page should have a simple text box for a visitor (e.g., prospective employer) to enter an email address to subscribe to a mailing list. Each email address should be stored to the Firebase. Also, the page should display all the subscribers' emails. From 09d01b5a5c86895b9817bcc54461547e69b9738f Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Mon, 25 Jan 2016 18:09:21 -0700 Subject: [PATCH 18/32] Added changes pushed to branch --- build/apps/parking/garages.html | 56 +++++++++++++++ build/apps/parking/garages_map.html | 93 ++++++++++++++++++++++++ build/apps/parking/index.html | 1 + build/apps/resume/cities.html | 84 ++++++++++++++++++++++ build/apps/todos/index.html | 2 +- build/css/leaflet.label.css | 54 ++++++++++++++ build/hackathons/01-25/index.html | 49 +++++++++++++ build/index.html | 4 +- build/js/leaflet.label.js | 9 +++ build/learning/week3/index.html | 106 ++++++++++++++++++++++++++++ src/apps/todos/index.html | 2 +- 11 files changed, 457 insertions(+), 3 deletions(-) create mode 100644 build/apps/parking/garages.html create mode 100644 build/apps/parking/garages_map.html create mode 100644 build/apps/parking/index.html create mode 100644 build/apps/resume/cities.html create mode 100644 build/css/leaflet.label.css create mode 100644 build/hackathons/01-25/index.html create mode 100644 build/js/leaflet.label.js create mode 100644 build/learning/week3/index.html diff --git a/build/apps/parking/garages.html b/build/apps/parking/garages.html new file mode 100644 index 00000000..df7b253d --- /dev/null +++ b/build/apps/parking/garages.html @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + +
                                                                                  + +

                                                                                  Garages

                                                                                  +
                                                                                    +
                                                                                  + +
                                                                                  + + + + diff --git a/build/apps/parking/garages_map.html b/build/apps/parking/garages_map.html new file mode 100644 index 00000000..ddaec15a --- /dev/null +++ b/build/apps/parking/garages_map.html @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                  + +

                                                                                  Garages Map

                                                                                  +
                                                                                  + +
                                                                                  + + + + diff --git a/build/apps/parking/index.html b/build/apps/parking/index.html new file mode 100644 index 00000000..bc60bf4b --- /dev/null +++ b/build/apps/parking/index.html @@ -0,0 +1 @@ +TODO: diff --git a/build/apps/resume/cities.html b/build/apps/resume/cities.html new file mode 100644 index 00000000..bed687fc --- /dev/null +++ b/build/apps/resume/cities.html @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                  + +

                                                                                  My Favoirte Cities

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + + + diff --git a/build/apps/todos/index.html b/build/apps/todos/index.html index 71130a08..41681a3e 100755 --- a/build/apps/todos/index.html +++ b/build/apps/todos/index.html @@ -97,7 +97,7 @@

                                                                                  Tasks

                                                                                  console.log("OK") // alert("Handler for .click() called."); }); - P + diff --git a/build/css/leaflet.label.css b/build/css/leaflet.label.css new file mode 100644 index 00000000..95e60964 --- /dev/null +++ b/build/css/leaflet.label.css @@ -0,0 +1,54 @@ +.leaflet-label { + background: rgb(235, 235, 235); + background: rgba(235, 235, 235, 0.81); + background-clip: padding-box; + border-color: #777; + border-color: rgba(0,0,0,0.25); + border-radius: 4px; + border-style: solid; + border-width: 4px; + color: #111; + display: block; + font: 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif; + font-weight: bold; + padding: 1px 6px; + position: absolute; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + pointer-events: none; + white-space: nowrap; + z-index: 6; +} + +.leaflet-label.leaflet-clickable { + cursor: pointer; + pointer-events: auto; +} + +.leaflet-label:before, +.leaflet-label:after { + border-top: 6px solid transparent; + border-bottom: 6px solid transparent; + content: none; + position: absolute; + top: 5px; +} + +.leaflet-label:before { + border-right: 6px solid black; + border-right-color: inherit; + left: -10px; +} + +.leaflet-label:after { + border-left: 6px solid black; + border-left-color: inherit; + right: -10px; +} + +.leaflet-label-right:before, +.leaflet-label-left:after { + content: ""; +} diff --git a/build/hackathons/01-25/index.html b/build/hackathons/01-25/index.html new file mode 100644 index 00000000..a230a197 --- /dev/null +++ b/build/hackathons/01-25/index.html @@ -0,0 +1,49 @@ + + + + + + + + + + + +
                                                                                  +

                                                                                  Date: 01-25-2016

                                                                                  +

                                                                                  Special Guest

                                                                                  +

                                                                                  Heather Dykstra and Alana Russell from Zayo will be visiting our class to give +a presentation about Zayo and a business case for our class to build apps for.

                                                                                  +

                                                                                  Hackathon: Demo

                                                                                  +

                                                                                  Objective

                                                                                  +

                                                                                  Demo the ToDo’s app your team has built over the first two weeks of the class.

                                                                                  +

                                                                                  Time

                                                                                  +

                                                                                  5 minutes each team

                                                                                  + +
                                                                                  + + + + diff --git a/build/index.html b/build/index.html index b6d1c60b..0aaf2ce5 100644 --- a/build/index.html +++ b/build/index.html @@ -44,10 +44,12 @@

                                                                                  Learning

                                                                                • Intro
                                                                                • Week 1
                                                                                • Week 2
                                                                                • +
                                                                                • Week 3

                                                                                Hackathons

                                                                                diff --git a/build/js/leaflet.label.js b/build/js/leaflet.label.js new file mode 100644 index 00000000..c9caec6e --- /dev/null +++ b/build/js/leaflet.label.js @@ -0,0 +1,9 @@ +/* + Leaflet.label, a plugin that adds labels to markers and vectors for Leaflet powered maps. + (c) 2012-2013, Jacob Toye, Smartrak + + https://github.com/Leaflet/Leaflet.label + http://leafletjs.com + https://github.com/jacobtoye +*/ +(function(t){var e=t.L;e.labelVersion="0.2.2-dev",e.Label=(e.Layer?e.Layer:e.Class).extend({includes:e.Mixin.Events,options:{className:"",clickable:!1,direction:"right",noHide:!1,offset:[12,-15],opacity:1,zoomAnimation:!0},initialize:function(t,i){e.setOptions(this,t),this._source=i,this._animated=e.Browser.any3d&&this.options.zoomAnimation,this._isOpen=!1},onAdd:function(t){this._map=t,this._pane=this.options.pane?t._panes[this.options.pane]:this._source instanceof e.Marker?t._panes.markerPane:t._panes.popupPane,this._container||this._initLayout(),this._pane.appendChild(this._container),this._initInteraction(),this._update(),this.setOpacity(this.options.opacity),t.on("moveend",this._onMoveEnd,this).on("viewreset",this._onViewReset,this),this._animated&&t.on("zoomanim",this._zoomAnimation,this),e.Browser.touch&&!this.options.noHide&&(e.DomEvent.on(this._container,"click",this.close,this),t.on("click",this.close,this))},onRemove:function(t){this._pane.removeChild(this._container),t.off({zoomanim:this._zoomAnimation,moveend:this._onMoveEnd,viewreset:this._onViewReset},this),this._removeInteraction(),this._map=null},setLatLng:function(t){return this._latlng=e.latLng(t),this._map&&this._updatePosition(),this},setContent:function(t){return this._previousContent=this._content,this._content=t,this._updateContent(),this},close:function(){var t=this._map;t&&(e.Browser.touch&&!this.options.noHide&&(e.DomEvent.off(this._container,"click",this.close),t.off("click",this.close,this)),t.removeLayer(this))},updateZIndex:function(t){this._zIndex=t,this._container&&this._zIndex&&(this._container.style.zIndex=t)},setOpacity:function(t){this.options.opacity=t,this._container&&e.DomUtil.setOpacity(this._container,t)},_initLayout:function(){this._container=e.DomUtil.create("div","leaflet-label "+this.options.className+" leaflet-zoom-animated"),this.updateZIndex(this._zIndex)},_update:function(){this._map&&(this._container.style.visibility="hidden",this._updateContent(),this._updatePosition(),this._container.style.visibility="")},_updateContent:function(){this._content&&this._map&&this._prevContent!==this._content&&"string"==typeof this._content&&(this._container.innerHTML=this._content,this._prevContent=this._content,this._labelWidth=this._container.offsetWidth)},_updatePosition:function(){var t=this._map.latLngToLayerPoint(this._latlng);this._setPosition(t)},_setPosition:function(t){var i=this._map,n=this._container,o=i.latLngToContainerPoint(i.getCenter()),s=i.layerPointToContainerPoint(t),a=this.options.direction,l=this._labelWidth,h=e.point(this.options.offset);"right"===a||"auto"===a&&s.xn;n++)e.DomEvent.on(t,i[n],this._fireMouseEvent,this)}},_removeInteraction:function(){if(this.options.clickable){var t=this._container,i=["dblclick","mousedown","mouseover","mouseout","contextmenu"];e.DomUtil.removeClass(t,"leaflet-clickable"),e.DomEvent.off(t,"click",this._onMouseClick,this);for(var n=0;i.length>n;n++)e.DomEvent.off(t,i[n],this._fireMouseEvent,this)}},_onMouseClick:function(t){this.hasEventListeners(t.type)&&e.DomEvent.stopPropagation(t),this.fire(t.type,{originalEvent:t})},_fireMouseEvent:function(t){this.fire(t.type,{originalEvent:t}),"contextmenu"===t.type&&this.hasEventListeners(t.type)&&e.DomEvent.preventDefault(t),"mousedown"!==t.type?e.DomEvent.stopPropagation(t):e.DomEvent.preventDefault(t)}}),e.BaseMarkerMethods={showLabel:function(){return this.label&&this._map&&(this.label.setLatLng(this._latlng),this._map.showLabel(this.label)),this},hideLabel:function(){return this.label&&this.label.close(),this},setLabelNoHide:function(t){this._labelNoHide!==t&&(this._labelNoHide=t,t?(this._removeLabelRevealHandlers(),this.showLabel()):(this._addLabelRevealHandlers(),this.hideLabel()))},bindLabel:function(t,i){var n=this.options.icon?this.options.icon.options.labelAnchor:this.options.labelAnchor,o=e.point(n)||e.point(0,0);return o=o.add(e.Label.prototype.options.offset),i&&i.offset&&(o=o.add(i.offset)),i=e.Util.extend({offset:o},i),this._labelNoHide=i.noHide,this.label||(this._labelNoHide||this._addLabelRevealHandlers(),this.on("remove",this.hideLabel,this).on("move",this._moveLabel,this).on("add",this._onMarkerAdd,this),this._hasLabelHandlers=!0),this.label=new e.Label(i,this).setContent(t),this},unbindLabel:function(){return this.label&&(this.hideLabel(),this.label=null,this._hasLabelHandlers&&(this._labelNoHide||this._removeLabelRevealHandlers(),this.off("remove",this.hideLabel,this).off("move",this._moveLabel,this).off("add",this._onMarkerAdd,this)),this._hasLabelHandlers=!1),this},updateLabelContent:function(t){this.label&&this.label.setContent(t)},getLabel:function(){return this.label},_onMarkerAdd:function(){this._labelNoHide&&this.showLabel()},_addLabelRevealHandlers:function(){this.on("mouseover",this.showLabel,this).on("mouseout",this.hideLabel,this),e.Browser.touch&&this.on("click",this.showLabel,this)},_removeLabelRevealHandlers:function(){this.off("mouseover",this.showLabel,this).off("mouseout",this.hideLabel,this),e.Browser.touch&&this.off("click",this.showLabel,this)},_moveLabel:function(t){this.label.setLatLng(t.latlng)}},e.Icon.Default.mergeOptions({labelAnchor:new e.Point(9,-20)}),e.Marker.mergeOptions({icon:new e.Icon.Default}),e.Marker.include(e.BaseMarkerMethods),e.Marker.include({_originalUpdateZIndex:e.Marker.prototype._updateZIndex,_updateZIndex:function(t){var e=this._zIndex+t;this._originalUpdateZIndex(t),this.label&&this.label.updateZIndex(e)},_originalSetOpacity:e.Marker.prototype.setOpacity,setOpacity:function(t,e){this.options.labelHasSemiTransparency=e,this._originalSetOpacity(t)},_originalUpdateOpacity:e.Marker.prototype._updateOpacity,_updateOpacity:function(){var t=0===this.options.opacity?0:1;this._originalUpdateOpacity(),this.label&&this.label.setOpacity(this.options.labelHasSemiTransparency?this.options.opacity:t)},_originalSetLatLng:e.Marker.prototype.setLatLng,setLatLng:function(t){return this.label&&!this._labelNoHide&&this.hideLabel(),this._originalSetLatLng(t)}}),e.CircleMarker.mergeOptions({labelAnchor:new e.Point(0,0)}),e.CircleMarker.include(e.BaseMarkerMethods),e.Path.include({bindLabel:function(t,i){return this.label&&this.label.options===i||(this.label=new e.Label(i,this)),this.label.setContent(t),this._showLabelAdded||(this.on("mouseover",this._showLabel,this).on("mousemove",this._moveLabel,this).on("mouseout remove",this._hideLabel,this),e.Browser.touch&&this.on("click",this._showLabel,this),this._showLabelAdded=!0),this},unbindLabel:function(){return this.label&&(this._hideLabel(),this.label=null,this._showLabelAdded=!1,this.off("mouseover",this._showLabel,this).off("mousemove",this._moveLabel,this).off("mouseout remove",this._hideLabel,this)),this},updateLabelContent:function(t){this.label&&this.label.setContent(t)},_showLabel:function(t){this.label.setLatLng(t.latlng),this._map.showLabel(this.label)},_moveLabel:function(t){this.label.setLatLng(t.latlng)},_hideLabel:function(){this.label.close()}}),e.Map.include({showLabel:function(t){return this.addLayer(t)}}),e.FeatureGroup.include({clearLayers:function(){return this.unbindLabel(),this.eachLayer(this.removeLayer,this),this},bindLabel:function(t,e){return this.invoke("bindLabel",t,e)},unbindLabel:function(){return this.invoke("unbindLabel")},updateLabelContent:function(t){this.invoke("updateLabelContent",t)}})})(window,document); \ No newline at end of file diff --git a/build/learning/week3/index.html b/build/learning/week3/index.html new file mode 100644 index 00000000..d1ab6717 --- /dev/null +++ b/build/learning/week3/index.html @@ -0,0 +1,106 @@ + + + + + + + + + + + +
                                                                                +

                                                                                Week 3

                                                                                +

                                                                                The main topic this week is building map-based apps backed by realtime data.

                                                                                +

                                                                                Team Learning

                                                                                +

                                                                                Teaming

                                                                                +

                                                                                We will make new teaming arrangements this week. Thank your current teammates +for their contributions during the past two weeks. Say hello to your new teammates.

                                                                                +

                                                                                Objective

                                                                                +

                                                                                Designing and building a parking app for the city of San Francisco.

                                                                                +

                                                                                Resources

                                                                                + +

                                                                                Due

                                                                                +

                                                                                Friday @ 11:59pm, 1/29/2016

                                                                                +

                                                                                Requirements

                                                                                +
                                                                                  +
                                                                                • [ ] There should be a page providing a list view of all the garages and +their current statuses (garages.html).
                                                                                    +
                                                                                  • Nicely display and organize key information about each garage using +a styling toolkit (e.g., materializecss or something similar).
                                                                                  • +
                                                                                  +
                                                                                • +
                                                                                • [ ] There should be a page providing a map view of all the garage sand +their current statuses (garages_map.html).
                                                                                    +
                                                                                  • Use a combination of the sizes, colors, and types of markers, and text labels to visualize +important information such as the number of open parking spaces, cost …etc.
                                                                                  • +
                                                                                  +
                                                                                • +
                                                                                • [ ] There should be an index page that serves as a landing page to these +two pages (index.html).
                                                                                • +
                                                                                • [ ] The information on these two pages should be updated / refreshed in realtime.
                                                                                • +
                                                                                +

                                                                                Individual Learning

                                                                                +

                                                                                Objective

                                                                                +

                                                                                Add a My Favorite Cities that will display the +weather of the five major US cities that are your favorites.

                                                                                +

                                                                                Resources

                                                                                + +

                                                                                Due

                                                                                +

                                                                                Sunday @ 11:59pm, 1/31/2016

                                                                                +

                                                                                Requirements

                                                                                +
                                                                                  +
                                                                                • [ ] On the cities page (cities.html), show FIVE of your favorite cities’ weather information.
                                                                                • +
                                                                                • [ ] For each city, show the weather details of this city as an item inside +<div id="cities">. Provide as much useful weather information as possible. It must look nice.
                                                                                • +
                                                                                • [ ] For each city, show a marker to indicate the location of this city on the +US map. Use colors, symbols, or sizes to visualize its current weather.
                                                                                • +
                                                                                • [ ] The information on the cities page should get refreshed automatically +in realtime when there’s an update. Hint: You may need to add markersLayerGroup.clearLayers() +somewhere to clear all the markers before redrawing the markers.
                                                                                • +
                                                                                +

                                                                                Submission

                                                                                +
                                                                                  +
                                                                                • Commit/Push your source code to Github.
                                                                                • +
                                                                                • Deploy your resume app to Firebase
                                                                                • +
                                                                                + +
                                                                                + + + + diff --git a/src/apps/todos/index.html b/src/apps/todos/index.html index 71130a08..41681a3e 100755 --- a/src/apps/todos/index.html +++ b/src/apps/todos/index.html @@ -97,7 +97,7 @@

                                                                                Tasks

                                                                                console.log("OK") // alert("Handler for .click() called."); }); - P + From ea3f22ddfd88b0612fd66df1fc3f22d3c3c035c1 Mon Sep 17 00:00:00 2001 From: Frederik Lohner Date: Sun, 31 Jan 2016 15:17:12 -0700 Subject: [PATCH 19/32] Week 3 --- build/apps/parking/react/lib/react-dom.min.js | 12 + .../parking/react/lib/react-with-addons.js | 20771 ++++++++++++++++ .../react/lib/react-with-addons.min.js | 16 + build/apps/parking/react/lib/react.js | 18808 ++++++++++++++ build/apps/parking/react/lib/react.min.js | 16 + build/apps/resume/cities.html | 227 +- build/apps/resume/index.html | 1 + build/apps/resume/react/components/about.js | 15 + .../apps/resume/react/components/city-list.js | 35 + build/apps/resume/react/components/navbar.js | 16 + .../resume/react/components/skill-list.js | 35 + .../apps/resume/react/components/task-list.js | 35 + build/apps/resume/react/index.html | 88 + .../apps/resume/react/lib/react-dom-server.js | 42 + .../resume/react/lib/react-dom-server.min.js | 12 + build/apps/resume/react/lib/react-dom.js | 42 + build/apps/resume/react/lib/react-dom.min.js | 12 + .../resume/react/lib/react-with-addons.js | 20771 ++++++++++++++++ .../resume/react/lib/react-with-addons.min.js | 16 + build/apps/resume/react/lib/react.js | 18808 ++++++++++++++ build/apps/resume/react/lib/react.min.js | 16 + build/apps/resume/resume.css | 4 + build/hackathons/02-01/index.html | 76 + build/hackathons/02-01/screen.png | Bin 0 -> 34228 bytes build/index.html | 19 +- build/learning/week3/index.html | 8 +- build/learning/week4/index.html | 107 + src/apps/resume/cities.html | 227 +- src/apps/resume/index.html | 1 + src/apps/resume/resume.css | 4 + src/learning/week3/index.md | 8 +- 31 files changed, 80087 insertions(+), 161 deletions(-) create mode 100644 build/apps/parking/react/lib/react-dom.min.js create mode 100644 build/apps/parking/react/lib/react-with-addons.js create mode 100644 build/apps/parking/react/lib/react-with-addons.min.js create mode 100644 build/apps/parking/react/lib/react.js create mode 100644 build/apps/parking/react/lib/react.min.js create mode 100644 build/apps/resume/react/components/about.js create mode 100644 build/apps/resume/react/components/city-list.js create mode 100644 build/apps/resume/react/components/navbar.js create mode 100644 build/apps/resume/react/components/skill-list.js create mode 100644 build/apps/resume/react/components/task-list.js create mode 100644 build/apps/resume/react/index.html create mode 100644 build/apps/resume/react/lib/react-dom-server.js create mode 100644 build/apps/resume/react/lib/react-dom-server.min.js create mode 100644 build/apps/resume/react/lib/react-dom.js create mode 100644 build/apps/resume/react/lib/react-dom.min.js create mode 100644 build/apps/resume/react/lib/react-with-addons.js create mode 100644 build/apps/resume/react/lib/react-with-addons.min.js create mode 100644 build/apps/resume/react/lib/react.js create mode 100644 build/apps/resume/react/lib/react.min.js create mode 100644 build/hackathons/02-01/index.html create mode 100644 build/hackathons/02-01/screen.png create mode 100644 build/learning/week4/index.html diff --git a/build/apps/parking/react/lib/react-dom.min.js b/build/apps/parking/react/lib/react-dom.min.js new file mode 100644 index 00000000..da44b0ff --- /dev/null +++ b/build/apps/parking/react/lib/react-dom.min.js @@ -0,0 +1,12 @@ +/** + * ReactDOM v0.14.7 + * + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + */ +!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e(require("react"));else if("function"==typeof define&&define.amd)define(["react"],e);else{var f;f="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,f.ReactDOM=e(f.React)}}(function(e){return e.__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED}); \ No newline at end of file diff --git a/build/apps/parking/react/lib/react-with-addons.js b/build/apps/parking/react/lib/react-with-addons.js new file mode 100644 index 00000000..b48b55ae --- /dev/null +++ b/build/apps/parking/react/lib/react-with-addons.js @@ -0,0 +1,20771 @@ + /** + * React (with addons) v0.14.7 + */ +(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.React = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o 8 && documentMode <= 11); + +/** + * Opera <= 12 includes TextEvent in window, but does not fire + * text input events. Rely on keypress instead. + */ +function isPresto() { + var opera = window.opera; + return typeof opera === 'object' && typeof opera.version === 'function' && parseInt(opera.version(), 10) <= 12; +} + +var SPACEBAR_CODE = 32; +var SPACEBAR_CHAR = String.fromCharCode(SPACEBAR_CODE); + +var topLevelTypes = EventConstants.topLevelTypes; + +// Events and their corresponding property names. +var eventTypes = { + beforeInput: { + phasedRegistrationNames: { + bubbled: keyOf({ onBeforeInput: null }), + captured: keyOf({ onBeforeInputCapture: null }) + }, + dependencies: [topLevelTypes.topCompositionEnd, topLevelTypes.topKeyPress, topLevelTypes.topTextInput, topLevelTypes.topPaste] + }, + compositionEnd: { + phasedRegistrationNames: { + bubbled: keyOf({ onCompositionEnd: null }), + captured: keyOf({ onCompositionEndCapture: null }) + }, + dependencies: [topLevelTypes.topBlur, topLevelTypes.topCompositionEnd, topLevelTypes.topKeyDown, topLevelTypes.topKeyPress, topLevelTypes.topKeyUp, topLevelTypes.topMouseDown] + }, + compositionStart: { + phasedRegistrationNames: { + bubbled: keyOf({ onCompositionStart: null }), + captured: keyOf({ onCompositionStartCapture: null }) + }, + dependencies: [topLevelTypes.topBlur, topLevelTypes.topCompositionStart, topLevelTypes.topKeyDown, topLevelTypes.topKeyPress, topLevelTypes.topKeyUp, topLevelTypes.topMouseDown] + }, + compositionUpdate: { + phasedRegistrationNames: { + bubbled: keyOf({ onCompositionUpdate: null }), + captured: keyOf({ onCompositionUpdateCapture: null }) + }, + dependencies: [topLevelTypes.topBlur, topLevelTypes.topCompositionUpdate, topLevelTypes.topKeyDown, topLevelTypes.topKeyPress, topLevelTypes.topKeyUp, topLevelTypes.topMouseDown] + } +}; + +// Track whether we've ever handled a keypress on the space key. +var hasSpaceKeypress = false; + +/** + * Return whether a native keypress event is assumed to be a command. + * This is required because Firefox fires `keypress` events for key commands + * (cut, copy, select-all, etc.) even though no character is inserted. + */ +function isKeypressCommand(nativeEvent) { + return (nativeEvent.ctrlKey || nativeEvent.altKey || nativeEvent.metaKey) && + // ctrlKey && altKey is equivalent to AltGr, and is not a command. + !(nativeEvent.ctrlKey && nativeEvent.altKey); +} + +/** + * Translate native top level events into event types. + * + * @param {string} topLevelType + * @return {object} + */ +function getCompositionEventType(topLevelType) { + switch (topLevelType) { + case topLevelTypes.topCompositionStart: + return eventTypes.compositionStart; + case topLevelTypes.topCompositionEnd: + return eventTypes.compositionEnd; + case topLevelTypes.topCompositionUpdate: + return eventTypes.compositionUpdate; + } +} + +/** + * Does our fallback best-guess model think this event signifies that + * composition has begun? + * + * @param {string} topLevelType + * @param {object} nativeEvent + * @return {boolean} + */ +function isFallbackCompositionStart(topLevelType, nativeEvent) { + return topLevelType === topLevelTypes.topKeyDown && nativeEvent.keyCode === START_KEYCODE; +} + +/** + * Does our fallback mode think that this event is the end of composition? + * + * @param {string} topLevelType + * @param {object} nativeEvent + * @return {boolean} + */ +function isFallbackCompositionEnd(topLevelType, nativeEvent) { + switch (topLevelType) { + case topLevelTypes.topKeyUp: + // Command keys insert or clear IME input. + return END_KEYCODES.indexOf(nativeEvent.keyCode) !== -1; + case topLevelTypes.topKeyDown: + // Expect IME keyCode on each keydown. If we get any other + // code we must have exited earlier. + return nativeEvent.keyCode !== START_KEYCODE; + case topLevelTypes.topKeyPress: + case topLevelTypes.topMouseDown: + case topLevelTypes.topBlur: + // Events are not possible without cancelling IME. + return true; + default: + return false; + } +} + +/** + * Google Input Tools provides composition data via a CustomEvent, + * with the `data` property populated in the `detail` object. If this + * is available on the event object, use it. If not, this is a plain + * composition event and we have nothing special to extract. + * + * @param {object} nativeEvent + * @return {?string} + */ +function getDataFromCustomEvent(nativeEvent) { + var detail = nativeEvent.detail; + if (typeof detail === 'object' && 'data' in detail) { + return detail.data; + } + return null; +} + +// Track the current IME composition fallback object, if any. +var currentComposition = null; + +/** + * @param {string} topLevelType Record from `EventConstants`. + * @param {DOMEventTarget} topLevelTarget The listening component root node. + * @param {string} topLevelTargetID ID of `topLevelTarget`. + * @param {object} nativeEvent Native browser event. + * @return {?object} A SyntheticCompositionEvent. + */ +function extractCompositionEvent(topLevelType, topLevelTarget, topLevelTargetID, nativeEvent, nativeEventTarget) { + var eventType; + var fallbackData; + + if (canUseCompositionEvent) { + eventType = getCompositionEventType(topLevelType); + } else if (!currentComposition) { + if (isFallbackCompositionStart(topLevelType, nativeEvent)) { + eventType = eventTypes.compositionStart; + } + } else if (isFallbackCompositionEnd(topLevelType, nativeEvent)) { + eventType = eventTypes.compositionEnd; + } + + if (!eventType) { + return null; + } + + if (useFallbackCompositionData) { + // The current composition is stored statically and must not be + // overwritten while composition continues. + if (!currentComposition && eventType === eventTypes.compositionStart) { + currentComposition = FallbackCompositionState.getPooled(topLevelTarget); + } else if (eventType === eventTypes.compositionEnd) { + if (currentComposition) { + fallbackData = currentComposition.getData(); + } + } + } + + var event = SyntheticCompositionEvent.getPooled(eventType, topLevelTargetID, nativeEvent, nativeEventTarget); + + if (fallbackData) { + // Inject data generated from fallback path into the synthetic event. + // This matches the property of native CompositionEventInterface. + event.data = fallbackData; + } else { + var customData = getDataFromCustomEvent(nativeEvent); + if (customData !== null) { + event.data = customData; + } + } + + EventPropagators.accumulateTwoPhaseDispatches(event); + return event; +} + +/** + * @param {string} topLevelType Record from `EventConstants`. + * @param {object} nativeEvent Native browser event. + * @return {?string} The string corresponding to this `beforeInput` event. + */ +function getNativeBeforeInputChars(topLevelType, nativeEvent) { + switch (topLevelType) { + case topLevelTypes.topCompositionEnd: + return getDataFromCustomEvent(nativeEvent); + case topLevelTypes.topKeyPress: + /** + * If native `textInput` events are available, our goal is to make + * use of them. However, there is a special case: the spacebar key. + * In Webkit, preventing default on a spacebar `textInput` event + * cancels character insertion, but it *also* causes the browser + * to fall back to its default spacebar behavior of scrolling the + * page. + * + * Tracking at: + * https://code.google.com/p/chromium/issues/detail?id=355103 + * + * To avoid this issue, use the keypress event as if no `textInput` + * event is available. + */ + var which = nativeEvent.which; + if (which !== SPACEBAR_CODE) { + return null; + } + + hasSpaceKeypress = true; + return SPACEBAR_CHAR; + + case topLevelTypes.topTextInput: + // Record the characters to be added to the DOM. + var chars = nativeEvent.data; + + // If it's a spacebar character, assume that we have already handled + // it at the keypress level and bail immediately. Android Chrome + // doesn't give us keycodes, so we need to blacklist it. + if (chars === SPACEBAR_CHAR && hasSpaceKeypress) { + return null; + } + + return chars; + + default: + // For other native event types, do nothing. + return null; + } +} + +/** + * For browsers that do not provide the `textInput` event, extract the + * appropriate string to use for SyntheticInputEvent. + * + * @param {string} topLevelType Record from `EventConstants`. + * @param {object} nativeEvent Native browser event. + * @return {?string} The fallback string for this `beforeInput` event. + */ +function getFallbackBeforeInputChars(topLevelType, nativeEvent) { + // If we are currently composing (IME) and using a fallback to do so, + // try to extract the composed characters from the fallback object. + if (currentComposition) { + if (topLevelType === topLevelTypes.topCompositionEnd || isFallbackCompositionEnd(topLevelType, nativeEvent)) { + var chars = currentComposition.getData(); + FallbackCompositionState.release(currentComposition); + currentComposition = null; + return chars; + } + return null; + } + + switch (topLevelType) { + case topLevelTypes.topPaste: + // If a paste event occurs after a keypress, throw out the input + // chars. Paste events should not lead to BeforeInput events. + return null; + case topLevelTypes.topKeyPress: + /** + * As of v27, Firefox may fire keypress events even when no character + * will be inserted. A few possibilities: + * + * - `which` is `0`. Arrow keys, Esc key, etc. + * + * - `which` is the pressed key code, but no char is available. + * Ex: 'AltGr + d` in Polish. There is no modified character for + * this key combination and no character is inserted into the + * document, but FF fires the keypress for char code `100` anyway. + * No `input` event will occur. + * + * - `which` is the pressed key code, but a command combination is + * being used. Ex: `Cmd+C`. No character is inserted, and no + * `input` event will occur. + */ + if (nativeEvent.which && !isKeypressCommand(nativeEvent)) { + return String.fromCharCode(nativeEvent.which); + } + return null; + case topLevelTypes.topCompositionEnd: + return useFallbackCompositionData ? null : nativeEvent.data; + default: + return null; + } +} + +/** + * Extract a SyntheticInputEvent for `beforeInput`, based on either native + * `textInput` or fallback behavior. + * + * @param {string} topLevelType Record from `EventConstants`. + * @param {DOMEventTarget} topLevelTarget The listening component root node. + * @param {string} topLevelTargetID ID of `topLevelTarget`. + * @param {object} nativeEvent Native browser event. + * @return {?object} A SyntheticInputEvent. + */ +function extractBeforeInputEvent(topLevelType, topLevelTarget, topLevelTargetID, nativeEvent, nativeEventTarget) { + var chars; + + if (canUseTextInputEvent) { + chars = getNativeBeforeInputChars(topLevelType, nativeEvent); + } else { + chars = getFallbackBeforeInputChars(topLevelType, nativeEvent); + } + + // If no characters are being inserted, no BeforeInput event should + // be fired. + if (!chars) { + return null; + } + + var event = SyntheticInputEvent.getPooled(eventTypes.beforeInput, topLevelTargetID, nativeEvent, nativeEventTarget); + + event.data = chars; + EventPropagators.accumulateTwoPhaseDispatches(event); + return event; +} + +/** + * Create an `onBeforeInput` event to match + * http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#events-inputevents. + * + * This event plugin is based on the native `textInput` event + * available in Chrome, Safari, Opera, and IE. This event fires after + * `onKeyPress` and `onCompositionEnd`, but before `onInput`. + * + * `beforeInput` is spec'd but not implemented in any browsers, and + * the `input` event does not provide any useful information about what has + * actually been added, contrary to the spec. Thus, `textInput` is the best + * available event to identify the characters that have actually been inserted + * into the target node. + * + * This plugin is also responsible for emitting `composition` events, thus + * allowing us to share composition fallback code for both `beforeInput` and + * `composition` event types. + */ +var BeforeInputEventPlugin = { + + eventTypes: eventTypes, + + /** + * @param {string} topLevelType Record from `EventConstants`. + * @param {DOMEventTarget} topLevelTarget The listening component root node. + * @param {string} topLevelTargetID ID of `topLevelTarget`. + * @param {object} nativeEvent Native browser event. + * @return {*} An accumulation of synthetic events. + * @see {EventPluginHub.extractEvents} + */ + extractEvents: function (topLevelType, topLevelTarget, topLevelTargetID, nativeEvent, nativeEventTarget) { + return [extractCompositionEvent(topLevelType, topLevelTarget, topLevelTargetID, nativeEvent, nativeEventTarget), extractBeforeInputEvent(topLevelType, topLevelTarget, topLevelTargetID, nativeEvent, nativeEventTarget)]; + } +}; + +module.exports = BeforeInputEventPlugin; +},{"103":103,"107":107,"147":147,"15":15,"166":166,"19":19,"20":20}],4:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule CSSProperty + */ + +'use strict'; + +/** + * CSS properties which accept numbers but are not in units of "px". + */ +var isUnitlessNumber = { + animationIterationCount: true, + boxFlex: true, + boxFlexGroup: true, + boxOrdinalGroup: true, + columnCount: true, + flex: true, + flexGrow: true, + flexPositive: true, + flexShrink: true, + flexNegative: true, + flexOrder: true, + fontWeight: true, + lineClamp: true, + lineHeight: true, + opacity: true, + order: true, + orphans: true, + tabSize: true, + widows: true, + zIndex: true, + zoom: true, + + // SVG-related properties + fillOpacity: true, + stopOpacity: true, + strokeDashoffset: true, + strokeOpacity: true, + strokeWidth: true +}; + +/** + * @param {string} prefix vendor-specific prefix, eg: Webkit + * @param {string} key style name, eg: transitionDuration + * @return {string} style name prefixed with `prefix`, properly camelCased, eg: + * WebkitTransitionDuration + */ +function prefixKey(prefix, key) { + return prefix + key.charAt(0).toUpperCase() + key.substring(1); +} + +/** + * Support style names that may come passed in prefixed by adding permutations + * of vendor prefixes. + */ +var prefixes = ['Webkit', 'ms', 'Moz', 'O']; + +// Using Object.keys here, or else the vanilla for-in loop makes IE8 go into an +// infinite loop, because it iterates over the newly added props too. +Object.keys(isUnitlessNumber).forEach(function (prop) { + prefixes.forEach(function (prefix) { + isUnitlessNumber[prefixKey(prefix, prop)] = isUnitlessNumber[prop]; + }); +}); + +/** + * Most style properties can be unset by doing .style[prop] = '' but IE8 + * doesn't like doing that with shorthand properties so for the properties that + * IE8 breaks on, which are listed here, we instead unset each of the + * individual properties. See http://bugs.jquery.com/ticket/12385. + * The 4-value 'clock' properties like margin, padding, border-width seem to + * behave without any problems. Curiously, list-style works too without any + * special prodding. + */ +var shorthandPropertyExpansions = { + background: { + backgroundAttachment: true, + backgroundColor: true, + backgroundImage: true, + backgroundPositionX: true, + backgroundPositionY: true, + backgroundRepeat: true + }, + backgroundPosition: { + backgroundPositionX: true, + backgroundPositionY: true + }, + border: { + borderWidth: true, + borderStyle: true, + borderColor: true + }, + borderBottom: { + borderBottomWidth: true, + borderBottomStyle: true, + borderBottomColor: true + }, + borderLeft: { + borderLeftWidth: true, + borderLeftStyle: true, + borderLeftColor: true + }, + borderRight: { + borderRightWidth: true, + borderRightStyle: true, + borderRightColor: true + }, + borderTop: { + borderTopWidth: true, + borderTopStyle: true, + borderTopColor: true + }, + font: { + fontStyle: true, + fontVariant: true, + fontWeight: true, + fontSize: true, + lineHeight: true, + fontFamily: true + }, + outline: { + outlineWidth: true, + outlineStyle: true, + outlineColor: true + } +}; + +var CSSProperty = { + isUnitlessNumber: isUnitlessNumber, + shorthandPropertyExpansions: shorthandPropertyExpansions +}; + +module.exports = CSSProperty; +},{}],5:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule CSSPropertyOperations + * @typechecks static-only + */ + +'use strict'; + +var CSSProperty = _dereq_(4); +var ExecutionEnvironment = _dereq_(147); +var ReactPerf = _dereq_(78); + +var camelizeStyleName = _dereq_(149); +var dangerousStyleValue = _dereq_(119); +var hyphenateStyleName = _dereq_(160); +var memoizeStringOnly = _dereq_(168); +var warning = _dereq_(173); + +var processStyleName = memoizeStringOnly(function (styleName) { + return hyphenateStyleName(styleName); +}); + +var hasShorthandPropertyBug = false; +var styleFloatAccessor = 'cssFloat'; +if (ExecutionEnvironment.canUseDOM) { + var tempStyle = document.createElement('div').style; + try { + // IE8 throws "Invalid argument." if resetting shorthand style properties. + tempStyle.font = ''; + } catch (e) { + hasShorthandPropertyBug = true; + } + // IE8 only supports accessing cssFloat (standard) as styleFloat + if (document.documentElement.style.cssFloat === undefined) { + styleFloatAccessor = 'styleFloat'; + } +} + +if ("development" !== 'production') { + // 'msTransform' is correct, but the other prefixes should be capitalized + var badVendoredStyleNamePattern = /^(?:webkit|moz|o)[A-Z]/; + + // style values shouldn't contain a semicolon + var badStyleValueWithSemicolonPattern = /;\s*$/; + + var warnedStyleNames = {}; + var warnedStyleValues = {}; + + var warnHyphenatedStyleName = function (name) { + if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) { + return; + } + + warnedStyleNames[name] = true; + "development" !== 'production' ? warning(false, 'Unsupported style property %s. Did you mean %s?', name, camelizeStyleName(name)) : undefined; + }; + + var warnBadVendoredStyleName = function (name) { + if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) { + return; + } + + warnedStyleNames[name] = true; + "development" !== 'production' ? warning(false, 'Unsupported vendor-prefixed style property %s. Did you mean %s?', name, name.charAt(0).toUpperCase() + name.slice(1)) : undefined; + }; + + var warnStyleValueWithSemicolon = function (name, value) { + if (warnedStyleValues.hasOwnProperty(value) && warnedStyleValues[value]) { + return; + } + + warnedStyleValues[value] = true; + "development" !== 'production' ? warning(false, 'Style property values shouldn\'t contain a semicolon. ' + 'Try "%s: %s" instead.', name, value.replace(badStyleValueWithSemicolonPattern, '')) : undefined; + }; + + /** + * @param {string} name + * @param {*} value + */ + var warnValidStyle = function (name, value) { + if (name.indexOf('-') > -1) { + warnHyphenatedStyleName(name); + } else if (badVendoredStyleNamePattern.test(name)) { + warnBadVendoredStyleName(name); + } else if (badStyleValueWithSemicolonPattern.test(value)) { + warnStyleValueWithSemicolon(name, value); + } + }; +} + +/** + * Operations for dealing with CSS properties. + */ +var CSSPropertyOperations = { + + /** + * Serializes a mapping of style properties for use as inline styles: + * + * > createMarkupForStyles({width: '200px', height: 0}) + * "width:200px;height:0;" + * + * Undefined values are ignored so that declarative programming is easier. + * The result should be HTML-escaped before insertion into the DOM. + * + * @param {object} styles + * @return {?string} + */ + createMarkupForStyles: function (styles) { + var serialized = ''; + for (var styleName in styles) { + if (!styles.hasOwnProperty(styleName)) { + continue; + } + var styleValue = styles[styleName]; + if ("development" !== 'production') { + warnValidStyle(styleName, styleValue); + } + if (styleValue != null) { + serialized += processStyleName(styleName) + ':'; + serialized += dangerousStyleValue(styleName, styleValue) + ';'; + } + } + return serialized || null; + }, + + /** + * Sets the value for multiple styles on a node. If a value is specified as + * '' (empty string), the corresponding style property will be unset. + * + * @param {DOMElement} node + * @param {object} styles + */ + setValueForStyles: function (node, styles) { + var style = node.style; + for (var styleName in styles) { + if (!styles.hasOwnProperty(styleName)) { + continue; + } + if ("development" !== 'production') { + warnValidStyle(styleName, styles[styleName]); + } + var styleValue = dangerousStyleValue(styleName, styles[styleName]); + if (styleName === 'float') { + styleName = styleFloatAccessor; + } + if (styleValue) { + style[styleName] = styleValue; + } else { + var expansion = hasShorthandPropertyBug && CSSProperty.shorthandPropertyExpansions[styleName]; + if (expansion) { + // Shorthand property that IE8 won't like unsetting, so unset each + // component to placate it + for (var individualStyleName in expansion) { + style[individualStyleName] = ''; + } + } else { + style[styleName] = ''; + } + } + } + } + +}; + +ReactPerf.measureMethods(CSSPropertyOperations, 'CSSPropertyOperations', { + setValueForStyles: 'setValueForStyles' +}); + +module.exports = CSSPropertyOperations; +},{"119":119,"147":147,"149":149,"160":160,"168":168,"173":173,"4":4,"78":78}],6:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule CallbackQueue + */ + +'use strict'; + +var PooledClass = _dereq_(25); + +var assign = _dereq_(24); +var invariant = _dereq_(161); + +/** + * A specialized pseudo-event module to help keep track of components waiting to + * be notified when their DOM representations are available for use. + * + * This implements `PooledClass`, so you should never need to instantiate this. + * Instead, use `CallbackQueue.getPooled()`. + * + * @class ReactMountReady + * @implements PooledClass + * @internal + */ +function CallbackQueue() { + this._callbacks = null; + this._contexts = null; +} + +assign(CallbackQueue.prototype, { + + /** + * Enqueues a callback to be invoked when `notifyAll` is invoked. + * + * @param {function} callback Invoked when `notifyAll` is invoked. + * @param {?object} context Context to call `callback` with. + * @internal + */ + enqueue: function (callback, context) { + this._callbacks = this._callbacks || []; + this._contexts = this._contexts || []; + this._callbacks.push(callback); + this._contexts.push(context); + }, + + /** + * Invokes all enqueued callbacks and clears the queue. This is invoked after + * the DOM representation of a component has been created or updated. + * + * @internal + */ + notifyAll: function () { + var callbacks = this._callbacks; + var contexts = this._contexts; + if (callbacks) { + !(callbacks.length === contexts.length) ? "development" !== 'production' ? invariant(false, 'Mismatched list of contexts in callback queue') : invariant(false) : undefined; + this._callbacks = null; + this._contexts = null; + for (var i = 0; i < callbacks.length; i++) { + callbacks[i].call(contexts[i]); + } + callbacks.length = 0; + contexts.length = 0; + } + }, + + /** + * Resets the internal queue. + * + * @internal + */ + reset: function () { + this._callbacks = null; + this._contexts = null; + }, + + /** + * `PooledClass` looks for this. + */ + destructor: function () { + this.reset(); + } + +}); + +PooledClass.addPoolingTo(CallbackQueue); + +module.exports = CallbackQueue; +},{"161":161,"24":24,"25":25}],7:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule ChangeEventPlugin + */ + +'use strict'; + +var EventConstants = _dereq_(15); +var EventPluginHub = _dereq_(16); +var EventPropagators = _dereq_(19); +var ExecutionEnvironment = _dereq_(147); +var ReactUpdates = _dereq_(96); +var SyntheticEvent = _dereq_(105); + +var getEventTarget = _dereq_(128); +var isEventSupported = _dereq_(133); +var isTextInputElement = _dereq_(134); +var keyOf = _dereq_(166); + +var topLevelTypes = EventConstants.topLevelTypes; + +var eventTypes = { + change: { + phasedRegistrationNames: { + bubbled: keyOf({ onChange: null }), + captured: keyOf({ onChangeCapture: null }) + }, + dependencies: [topLevelTypes.topBlur, topLevelTypes.topChange, topLevelTypes.topClick, topLevelTypes.topFocus, topLevelTypes.topInput, topLevelTypes.topKeyDown, topLevelTypes.topKeyUp, topLevelTypes.topSelectionChange] + } +}; + +/** + * For IE shims + */ +var activeElement = null; +var activeElementID = null; +var activeElementValue = null; +var activeElementValueProp = null; + +/** + * SECTION: handle `change` event + */ +function shouldUseChangeEvent(elem) { + var nodeName = elem.nodeName && elem.nodeName.toLowerCase(); + return nodeName === 'select' || nodeName === 'input' && elem.type === 'file'; +} + +var doesChangeEventBubble = false; +if (ExecutionEnvironment.canUseDOM) { + // See `handleChange` comment below + doesChangeEventBubble = isEventSupported('change') && (!('documentMode' in document) || document.documentMode > 8); +} + +function manualDispatchChangeEvent(nativeEvent) { + var event = SyntheticEvent.getPooled(eventTypes.change, activeElementID, nativeEvent, getEventTarget(nativeEvent)); + EventPropagators.accumulateTwoPhaseDispatches(event); + + // If change and propertychange bubbled, we'd just bind to it like all the + // other events and have it go through ReactBrowserEventEmitter. Since it + // doesn't, we manually listen for the events and so we have to enqueue and + // process the abstract event manually. + // + // Batching is necessary here in order to ensure that all event handlers run + // before the next rerender (including event handlers attached to ancestor + // elements instead of directly on the input). Without this, controlled + // components don't work properly in conjunction with event bubbling because + // the component is rerendered and the value reverted before all the event + // handlers can run. See https://github.com/facebook/react/issues/708. + ReactUpdates.batchedUpdates(runEventInBatch, event); +} + +function runEventInBatch(event) { + EventPluginHub.enqueueEvents(event); + EventPluginHub.processEventQueue(false); +} + +function startWatchingForChangeEventIE8(target, targetID) { + activeElement = target; + activeElementID = targetID; + activeElement.attachEvent('onchange', manualDispatchChangeEvent); +} + +function stopWatchingForChangeEventIE8() { + if (!activeElement) { + return; + } + activeElement.detachEvent('onchange', manualDispatchChangeEvent); + activeElement = null; + activeElementID = null; +} + +function getTargetIDForChangeEvent(topLevelType, topLevelTarget, topLevelTargetID) { + if (topLevelType === topLevelTypes.topChange) { + return topLevelTargetID; + } +} +function handleEventsForChangeEventIE8(topLevelType, topLevelTarget, topLevelTargetID) { + if (topLevelType === topLevelTypes.topFocus) { + // stopWatching() should be a noop here but we call it just in case we + // missed a blur event somehow. + stopWatchingForChangeEventIE8(); + startWatchingForChangeEventIE8(topLevelTarget, topLevelTargetID); + } else if (topLevelType === topLevelTypes.topBlur) { + stopWatchingForChangeEventIE8(); + } +} + +/** + * SECTION: handle `input` event + */ +var isInputEventSupported = false; +if (ExecutionEnvironment.canUseDOM) { + // IE9 claims to support the input event but fails to trigger it when + // deleting text, so we ignore its input events + isInputEventSupported = isEventSupported('input') && (!('documentMode' in document) || document.documentMode > 9); +} + +/** + * (For old IE.) Replacement getter/setter for the `value` property that gets + * set on the active element. + */ +var newValueProp = { + get: function () { + return activeElementValueProp.get.call(this); + }, + set: function (val) { + // Cast to a string so we can do equality checks. + activeElementValue = '' + val; + activeElementValueProp.set.call(this, val); + } +}; + +/** + * (For old IE.) Starts tracking propertychange events on the passed-in element + * and override the value property so that we can distinguish user events from + * value changes in JS. + */ +function startWatchingForValueChange(target, targetID) { + activeElement = target; + activeElementID = targetID; + activeElementValue = target.value; + activeElementValueProp = Object.getOwnPropertyDescriptor(target.constructor.prototype, 'value'); + + // Not guarded in a canDefineProperty check: IE8 supports defineProperty only + // on DOM elements + Object.defineProperty(activeElement, 'value', newValueProp); + activeElement.attachEvent('onpropertychange', handlePropertyChange); +} + +/** + * (For old IE.) Removes the event listeners from the currently-tracked element, + * if any exists. + */ +function stopWatchingForValueChange() { + if (!activeElement) { + return; + } + + // delete restores the original property definition + delete activeElement.value; + activeElement.detachEvent('onpropertychange', handlePropertyChange); + + activeElement = null; + activeElementID = null; + activeElementValue = null; + activeElementValueProp = null; +} + +/** + * (For old IE.) Handles a propertychange event, sending a `change` event if + * the value of the active element has changed. + */ +function handlePropertyChange(nativeEvent) { + if (nativeEvent.propertyName !== 'value') { + return; + } + var value = nativeEvent.srcElement.value; + if (value === activeElementValue) { + return; + } + activeElementValue = value; + + manualDispatchChangeEvent(nativeEvent); +} + +/** + * If a `change` event should be fired, returns the target's ID. + */ +function getTargetIDForInputEvent(topLevelType, topLevelTarget, topLevelTargetID) { + if (topLevelType === topLevelTypes.topInput) { + // In modern browsers (i.e., not IE8 or IE9), the input event is exactly + // what we want so fall through here and trigger an abstract event + return topLevelTargetID; + } +} + +// For IE8 and IE9. +function handleEventsForInputEventIE(topLevelType, topLevelTarget, topLevelTargetID) { + if (topLevelType === topLevelTypes.topFocus) { + // In IE8, we can capture almost all .value changes by adding a + // propertychange handler and looking for events with propertyName + // equal to 'value' + // In IE9, propertychange fires for most input events but is buggy and + // doesn't fire when text is deleted, but conveniently, selectionchange + // appears to fire in all of the remaining cases so we catch those and + // forward the event if the value has changed + // In either case, we don't want to call the event handler if the value + // is changed from JS so we redefine a setter for `.value` that updates + // our activeElementValue variable, allowing us to ignore those changes + // + // stopWatching() should be a noop here but we call it just in case we + // missed a blur event somehow. + stopWatchingForValueChange(); + startWatchingForValueChange(topLevelTarget, topLevelTargetID); + } else if (topLevelType === topLevelTypes.topBlur) { + stopWatchingForValueChange(); + } +} + +// For IE8 and IE9. +function getTargetIDForInputEventIE(topLevelType, topLevelTarget, topLevelTargetID) { + if (topLevelType === topLevelTypes.topSelectionChange || topLevelType === topLevelTypes.topKeyUp || topLevelType === topLevelTypes.topKeyDown) { + // On the selectionchange event, the target is just document which isn't + // helpful for us so just check activeElement instead. + // + // 99% of the time, keydown and keyup aren't necessary. IE8 fails to fire + // propertychange on the first input event after setting `value` from a + // script and fires only keydown, keypress, keyup. Catching keyup usually + // gets it and catching keydown lets us fire an event for the first + // keystroke if user does a key repeat (it'll be a little delayed: right + // before the second keystroke). Other input methods (e.g., paste) seem to + // fire selectionchange normally. + if (activeElement && activeElement.value !== activeElementValue) { + activeElementValue = activeElement.value; + return activeElementID; + } + } +} + +/** + * SECTION: handle `click` event + */ +function shouldUseClickEvent(elem) { + // Use the `click` event to detect changes to checkbox and radio inputs. + // This approach works across all browsers, whereas `change` does not fire + // until `blur` in IE8. + return elem.nodeName && elem.nodeName.toLowerCase() === 'input' && (elem.type === 'checkbox' || elem.type === 'radio'); +} + +function getTargetIDForClickEvent(topLevelType, topLevelTarget, topLevelTargetID) { + if (topLevelType === topLevelTypes.topClick) { + return topLevelTargetID; + } +} + +/** + * This plugin creates an `onChange` event that normalizes change events + * across form elements. This event fires at a time when it's possible to + * change the element's value without seeing a flicker. + * + * Supported elements are: + * - input (see `isTextInputElement`) + * - textarea + * - select + */ +var ChangeEventPlugin = { + + eventTypes: eventTypes, + + /** + * @param {string} topLevelType Record from `EventConstants`. + * @param {DOMEventTarget} topLevelTarget The listening component root node. + * @param {string} topLevelTargetID ID of `topLevelTarget`. + * @param {object} nativeEvent Native browser event. + * @return {*} An accumulation of synthetic events. + * @see {EventPluginHub.extractEvents} + */ + extractEvents: function (topLevelType, topLevelTarget, topLevelTargetID, nativeEvent, nativeEventTarget) { + + var getTargetIDFunc, handleEventFunc; + if (shouldUseChangeEvent(topLevelTarget)) { + if (doesChangeEventBubble) { + getTargetIDFunc = getTargetIDForChangeEvent; + } else { + handleEventFunc = handleEventsForChangeEventIE8; + } + } else if (isTextInputElement(topLevelTarget)) { + if (isInputEventSupported) { + getTargetIDFunc = getTargetIDForInputEvent; + } else { + getTargetIDFunc = getTargetIDForInputEventIE; + handleEventFunc = handleEventsForInputEventIE; + } + } else if (shouldUseClickEvent(topLevelTarget)) { + getTargetIDFunc = getTargetIDForClickEvent; + } + + if (getTargetIDFunc) { + var targetID = getTargetIDFunc(topLevelType, topLevelTarget, topLevelTargetID); + if (targetID) { + var event = SyntheticEvent.getPooled(eventTypes.change, targetID, nativeEvent, nativeEventTarget); + event.type = 'change'; + EventPropagators.accumulateTwoPhaseDispatches(event); + return event; + } + } + + if (handleEventFunc) { + handleEventFunc(topLevelType, topLevelTarget, topLevelTargetID); + } + } + +}; + +module.exports = ChangeEventPlugin; +},{"105":105,"128":128,"133":133,"134":134,"147":147,"15":15,"16":16,"166":166,"19":19,"96":96}],8:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule ClientReactRootIndex + * @typechecks + */ + +'use strict'; + +var nextReactRootIndex = 0; + +var ClientReactRootIndex = { + createReactRootIndex: function () { + return nextReactRootIndex++; + } +}; + +module.exports = ClientReactRootIndex; +},{}],9:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule DOMChildrenOperations + * @typechecks static-only + */ + +'use strict'; + +var Danger = _dereq_(12); +var ReactMultiChildUpdateTypes = _dereq_(74); +var ReactPerf = _dereq_(78); + +var setInnerHTML = _dereq_(138); +var setTextContent = _dereq_(139); +var invariant = _dereq_(161); + +/** + * Inserts `childNode` as a child of `parentNode` at the `index`. + * + * @param {DOMElement} parentNode Parent node in which to insert. + * @param {DOMElement} childNode Child node to insert. + * @param {number} index Index at which to insert the child. + * @internal + */ +function insertChildAt(parentNode, childNode, index) { + // By exploiting arrays returning `undefined` for an undefined index, we can + // rely exclusively on `insertBefore(node, null)` instead of also using + // `appendChild(node)`. However, using `undefined` is not allowed by all + // browsers so we must replace it with `null`. + + // fix render order error in safari + // IE8 will throw error when index out of list size. + var beforeChild = index >= parentNode.childNodes.length ? null : parentNode.childNodes.item(index); + + parentNode.insertBefore(childNode, beforeChild); +} + +/** + * Operations for updating with DOM children. + */ +var DOMChildrenOperations = { + + dangerouslyReplaceNodeWithMarkup: Danger.dangerouslyReplaceNodeWithMarkup, + + updateTextContent: setTextContent, + + /** + * Updates a component's children by processing a series of updates. The + * update configurations are each expected to have a `parentNode` property. + * + * @param {array} updates List of update configurations. + * @param {array} markupList List of markup strings. + * @internal + */ + processUpdates: function (updates, markupList) { + var update; + // Mapping from parent IDs to initial child orderings. + var initialChildren = null; + // List of children that will be moved or removed. + var updatedChildren = null; + + for (var i = 0; i < updates.length; i++) { + update = updates[i]; + if (update.type === ReactMultiChildUpdateTypes.MOVE_EXISTING || update.type === ReactMultiChildUpdateTypes.REMOVE_NODE) { + var updatedIndex = update.fromIndex; + var updatedChild = update.parentNode.childNodes[updatedIndex]; + var parentID = update.parentID; + + !updatedChild ? "development" !== 'production' ? invariant(false, 'processUpdates(): Unable to find child %s of element. This ' + 'probably means the DOM was unexpectedly mutated (e.g., by the ' + 'browser), usually due to forgetting a when using tables, ' + 'nesting tags like
                                                                                ,

                                                                                , or , or using non-SVG elements ' + 'in an parent. Try inspecting the child nodes of the element ' + 'with React ID `%s`.', updatedIndex, parentID) : invariant(false) : undefined; + + initialChildren = initialChildren || {}; + initialChildren[parentID] = initialChildren[parentID] || []; + initialChildren[parentID][updatedIndex] = updatedChild; + + updatedChildren = updatedChildren || []; + updatedChildren.push(updatedChild); + } + } + + var renderedMarkup; + // markupList is either a list of markup or just a list of elements + if (markupList.length && typeof markupList[0] === 'string') { + renderedMarkup = Danger.dangerouslyRenderMarkup(markupList); + } else { + renderedMarkup = markupList; + } + + // Remove updated children first so that `toIndex` is consistent. + if (updatedChildren) { + for (var j = 0; j < updatedChildren.length; j++) { + updatedChildren[j].parentNode.removeChild(updatedChildren[j]); + } + } + + for (var k = 0; k < updates.length; k++) { + update = updates[k]; + switch (update.type) { + case ReactMultiChildUpdateTypes.INSERT_MARKUP: + insertChildAt(update.parentNode, renderedMarkup[update.markupIndex], update.toIndex); + break; + case ReactMultiChildUpdateTypes.MOVE_EXISTING: + insertChildAt(update.parentNode, initialChildren[update.parentID][update.fromIndex], update.toIndex); + break; + case ReactMultiChildUpdateTypes.SET_MARKUP: + setInnerHTML(update.parentNode, update.content); + break; + case ReactMultiChildUpdateTypes.TEXT_CONTENT: + setTextContent(update.parentNode, update.content); + break; + case ReactMultiChildUpdateTypes.REMOVE_NODE: + // Already removed by the for-loop above. + break; + } + } + } + +}; + +ReactPerf.measureMethods(DOMChildrenOperations, 'DOMChildrenOperations', { + updateTextContent: 'updateTextContent' +}); + +module.exports = DOMChildrenOperations; +},{"12":12,"138":138,"139":139,"161":161,"74":74,"78":78}],10:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule DOMProperty + * @typechecks static-only + */ + +'use strict'; + +var invariant = _dereq_(161); + +function checkMask(value, bitmask) { + return (value & bitmask) === bitmask; +} + +var DOMPropertyInjection = { + /** + * Mapping from normalized, camelcased property names to a configuration that + * specifies how the associated DOM property should be accessed or rendered. + */ + MUST_USE_ATTRIBUTE: 0x1, + MUST_USE_PROPERTY: 0x2, + HAS_SIDE_EFFECTS: 0x4, + HAS_BOOLEAN_VALUE: 0x8, + HAS_NUMERIC_VALUE: 0x10, + HAS_POSITIVE_NUMERIC_VALUE: 0x20 | 0x10, + HAS_OVERLOADED_BOOLEAN_VALUE: 0x40, + + /** + * Inject some specialized knowledge about the DOM. This takes a config object + * with the following properties: + * + * isCustomAttribute: function that given an attribute name will return true + * if it can be inserted into the DOM verbatim. Useful for data-* or aria-* + * attributes where it's impossible to enumerate all of the possible + * attribute names, + * + * Properties: object mapping DOM property name to one of the + * DOMPropertyInjection constants or null. If your attribute isn't in here, + * it won't get written to the DOM. + * + * DOMAttributeNames: object mapping React attribute name to the DOM + * attribute name. Attribute names not specified use the **lowercase** + * normalized name. + * + * DOMAttributeNamespaces: object mapping React attribute name to the DOM + * attribute namespace URL. (Attribute names not specified use no namespace.) + * + * DOMPropertyNames: similar to DOMAttributeNames but for DOM properties. + * Property names not specified use the normalized name. + * + * DOMMutationMethods: Properties that require special mutation methods. If + * `value` is undefined, the mutation method should unset the property. + * + * @param {object} domPropertyConfig the config as described above. + */ + injectDOMPropertyConfig: function (domPropertyConfig) { + var Injection = DOMPropertyInjection; + var Properties = domPropertyConfig.Properties || {}; + var DOMAttributeNamespaces = domPropertyConfig.DOMAttributeNamespaces || {}; + var DOMAttributeNames = domPropertyConfig.DOMAttributeNames || {}; + var DOMPropertyNames = domPropertyConfig.DOMPropertyNames || {}; + var DOMMutationMethods = domPropertyConfig.DOMMutationMethods || {}; + + if (domPropertyConfig.isCustomAttribute) { + DOMProperty._isCustomAttributeFunctions.push(domPropertyConfig.isCustomAttribute); + } + + for (var propName in Properties) { + !!DOMProperty.properties.hasOwnProperty(propName) ? "development" !== 'production' ? invariant(false, 'injectDOMPropertyConfig(...): You\'re trying to inject DOM property ' + '\'%s\' which has already been injected. You may be accidentally ' + 'injecting the same DOM property config twice, or you may be ' + 'injecting two configs that have conflicting property names.', propName) : invariant(false) : undefined; + + var lowerCased = propName.toLowerCase(); + var propConfig = Properties[propName]; + + var propertyInfo = { + attributeName: lowerCased, + attributeNamespace: null, + propertyName: propName, + mutationMethod: null, + + mustUseAttribute: checkMask(propConfig, Injection.MUST_USE_ATTRIBUTE), + mustUseProperty: checkMask(propConfig, Injection.MUST_USE_PROPERTY), + hasSideEffects: checkMask(propConfig, Injection.HAS_SIDE_EFFECTS), + hasBooleanValue: checkMask(propConfig, Injection.HAS_BOOLEAN_VALUE), + hasNumericValue: checkMask(propConfig, Injection.HAS_NUMERIC_VALUE), + hasPositiveNumericValue: checkMask(propConfig, Injection.HAS_POSITIVE_NUMERIC_VALUE), + hasOverloadedBooleanValue: checkMask(propConfig, Injection.HAS_OVERLOADED_BOOLEAN_VALUE) + }; + + !(!propertyInfo.mustUseAttribute || !propertyInfo.mustUseProperty) ? "development" !== 'production' ? invariant(false, 'DOMProperty: Cannot require using both attribute and property: %s', propName) : invariant(false) : undefined; + !(propertyInfo.mustUseProperty || !propertyInfo.hasSideEffects) ? "development" !== 'production' ? invariant(false, 'DOMProperty: Properties that have side effects must use property: %s', propName) : invariant(false) : undefined; + !(propertyInfo.hasBooleanValue + propertyInfo.hasNumericValue + propertyInfo.hasOverloadedBooleanValue <= 1) ? "development" !== 'production' ? invariant(false, 'DOMProperty: Value can be one of boolean, overloaded boolean, or ' + 'numeric value, but not a combination: %s', propName) : invariant(false) : undefined; + + if ("development" !== 'production') { + DOMProperty.getPossibleStandardName[lowerCased] = propName; + } + + if (DOMAttributeNames.hasOwnProperty(propName)) { + var attributeName = DOMAttributeNames[propName]; + propertyInfo.attributeName = attributeName; + if ("development" !== 'production') { + DOMProperty.getPossibleStandardName[attributeName] = propName; + } + } + + if (DOMAttributeNamespaces.hasOwnProperty(propName)) { + propertyInfo.attributeNamespace = DOMAttributeNamespaces[propName]; + } + + if (DOMPropertyNames.hasOwnProperty(propName)) { + propertyInfo.propertyName = DOMPropertyNames[propName]; + } + + if (DOMMutationMethods.hasOwnProperty(propName)) { + propertyInfo.mutationMethod = DOMMutationMethods[propName]; + } + + DOMProperty.properties[propName] = propertyInfo; + } + } +}; +var defaultValueCache = {}; + +/** + * DOMProperty exports lookup objects that can be used like functions: + * + * > DOMProperty.isValid['id'] + * true + * > DOMProperty.isValid['foobar'] + * undefined + * + * Although this may be confusing, it performs better in general. + * + * @see http://jsperf.com/key-exists + * @see http://jsperf.com/key-missing + */ +var DOMProperty = { + + ID_ATTRIBUTE_NAME: 'data-reactid', + + /** + * Map from property "standard name" to an object with info about how to set + * the property in the DOM. Each object contains: + * + * attributeName: + * Used when rendering markup or with `*Attribute()`. + * attributeNamespace + * propertyName: + * Used on DOM node instances. (This includes properties that mutate due to + * external factors.) + * mutationMethod: + * If non-null, used instead of the property or `setAttribute()` after + * initial render. + * mustUseAttribute: + * Whether the property must be accessed and mutated using `*Attribute()`. + * (This includes anything that fails ` in `.) + * mustUseProperty: + * Whether the property must be accessed and mutated as an object property. + * hasSideEffects: + * Whether or not setting a value causes side effects such as triggering + * resources to be loaded or text selection changes. If true, we read from + * the DOM before updating to ensure that the value is only set if it has + * changed. + * hasBooleanValue: + * Whether the property should be removed when set to a falsey value. + * hasNumericValue: + * Whether the property must be numeric or parse as a numeric and should be + * removed when set to a falsey value. + * hasPositiveNumericValue: + * Whether the property must be positive numeric or parse as a positive + * numeric and should be removed when set to a falsey value. + * hasOverloadedBooleanValue: + * Whether the property can be used as a flag as well as with a value. + * Removed when strictly equal to false; present without a value when + * strictly equal to true; present with a value otherwise. + */ + properties: {}, + + /** + * Mapping from lowercase property names to the properly cased version, used + * to warn in the case of missing properties. Available only in __DEV__. + * @type {Object} + */ + getPossibleStandardName: "development" !== 'production' ? {} : null, + + /** + * All of the isCustomAttribute() functions that have been injected. + */ + _isCustomAttributeFunctions: [], + + /** + * Checks whether a property name is a custom attribute. + * @method + */ + isCustomAttribute: function (attributeName) { + for (var i = 0; i < DOMProperty._isCustomAttributeFunctions.length; i++) { + var isCustomAttributeFn = DOMProperty._isCustomAttributeFunctions[i]; + if (isCustomAttributeFn(attributeName)) { + return true; + } + } + return false; + }, + + /** + * Returns the default property value for a DOM property (i.e., not an + * attribute). Most default values are '' or false, but not all. Worse yet, + * some (in particular, `type`) vary depending on the type of element. + * + * TODO: Is it better to grab all the possible properties when creating an + * element to avoid having to create the same element twice? + */ + getDefaultValueForProperty: function (nodeName, prop) { + var nodeDefaults = defaultValueCache[nodeName]; + var testElement; + if (!nodeDefaults) { + defaultValueCache[nodeName] = nodeDefaults = {}; + } + if (!(prop in nodeDefaults)) { + testElement = document.createElement(nodeName); + nodeDefaults[prop] = testElement[prop]; + } + return nodeDefaults[prop]; + }, + + injection: DOMPropertyInjection +}; + +module.exports = DOMProperty; +},{"161":161}],11:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule DOMPropertyOperations + * @typechecks static-only + */ + +'use strict'; + +var DOMProperty = _dereq_(10); +var ReactPerf = _dereq_(78); + +var quoteAttributeValueForBrowser = _dereq_(136); +var warning = _dereq_(173); + +// Simplified subset +var VALID_ATTRIBUTE_NAME_REGEX = /^[a-zA-Z_][\w\.\-]*$/; +var illegalAttributeNameCache = {}; +var validatedAttributeNameCache = {}; + +function isAttributeNameSafe(attributeName) { + if (validatedAttributeNameCache.hasOwnProperty(attributeName)) { + return true; + } + if (illegalAttributeNameCache.hasOwnProperty(attributeName)) { + return false; + } + if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName)) { + validatedAttributeNameCache[attributeName] = true; + return true; + } + illegalAttributeNameCache[attributeName] = true; + "development" !== 'production' ? warning(false, 'Invalid attribute name: `%s`', attributeName) : undefined; + return false; +} + +function shouldIgnoreValue(propertyInfo, value) { + return value == null || propertyInfo.hasBooleanValue && !value || propertyInfo.hasNumericValue && isNaN(value) || propertyInfo.hasPositiveNumericValue && value < 1 || propertyInfo.hasOverloadedBooleanValue && value === false; +} + +if ("development" !== 'production') { + var reactProps = { + children: true, + dangerouslySetInnerHTML: true, + key: true, + ref: true + }; + var warnedProperties = {}; + + var warnUnknownProperty = function (name) { + if (reactProps.hasOwnProperty(name) && reactProps[name] || warnedProperties.hasOwnProperty(name) && warnedProperties[name]) { + return; + } + + warnedProperties[name] = true; + var lowerCasedName = name.toLowerCase(); + + // data-* attributes should be lowercase; suggest the lowercase version + var standardName = DOMProperty.isCustomAttribute(lowerCasedName) ? lowerCasedName : DOMProperty.getPossibleStandardName.hasOwnProperty(lowerCasedName) ? DOMProperty.getPossibleStandardName[lowerCasedName] : null; + + // For now, only warn when we have a suggested correction. This prevents + // logging too much when using transferPropsTo. + "development" !== 'production' ? warning(standardName == null, 'Unknown DOM property %s. Did you mean %s?', name, standardName) : undefined; + }; +} + +/** + * Operations for dealing with DOM properties. + */ +var DOMPropertyOperations = { + + /** + * Creates markup for the ID property. + * + * @param {string} id Unescaped ID. + * @return {string} Markup string. + */ + createMarkupForID: function (id) { + return DOMProperty.ID_ATTRIBUTE_NAME + '=' + quoteAttributeValueForBrowser(id); + }, + + setAttributeForID: function (node, id) { + node.setAttribute(DOMProperty.ID_ATTRIBUTE_NAME, id); + }, + + /** + * Creates markup for a property. + * + * @param {string} name + * @param {*} value + * @return {?string} Markup string, or null if the property was invalid. + */ + createMarkupForProperty: function (name, value) { + var propertyInfo = DOMProperty.properties.hasOwnProperty(name) ? DOMProperty.properties[name] : null; + if (propertyInfo) { + if (shouldIgnoreValue(propertyInfo, value)) { + return ''; + } + var attributeName = propertyInfo.attributeName; + if (propertyInfo.hasBooleanValue || propertyInfo.hasOverloadedBooleanValue && value === true) { + return attributeName + '=""'; + } + return attributeName + '=' + quoteAttributeValueForBrowser(value); + } else if (DOMProperty.isCustomAttribute(name)) { + if (value == null) { + return ''; + } + return name + '=' + quoteAttributeValueForBrowser(value); + } else if ("development" !== 'production') { + warnUnknownProperty(name); + } + return null; + }, + + /** + * Creates markup for a custom property. + * + * @param {string} name + * @param {*} value + * @return {string} Markup string, or empty string if the property was invalid. + */ + createMarkupForCustomAttribute: function (name, value) { + if (!isAttributeNameSafe(name) || value == null) { + return ''; + } + return name + '=' + quoteAttributeValueForBrowser(value); + }, + + /** + * Sets the value for a property on a node. + * + * @param {DOMElement} node + * @param {string} name + * @param {*} value + */ + setValueForProperty: function (node, name, value) { + var propertyInfo = DOMProperty.properties.hasOwnProperty(name) ? DOMProperty.properties[name] : null; + if (propertyInfo) { + var mutationMethod = propertyInfo.mutationMethod; + if (mutationMethod) { + mutationMethod(node, value); + } else if (shouldIgnoreValue(propertyInfo, value)) { + this.deleteValueForProperty(node, name); + } else if (propertyInfo.mustUseAttribute) { + var attributeName = propertyInfo.attributeName; + var namespace = propertyInfo.attributeNamespace; + // `setAttribute` with objects becomes only `[object]` in IE8/9, + // ('' + value) makes it output the correct toString()-value. + if (namespace) { + node.setAttributeNS(namespace, attributeName, '' + value); + } else if (propertyInfo.hasBooleanValue || propertyInfo.hasOverloadedBooleanValue && value === true) { + node.setAttribute(attributeName, ''); + } else { + node.setAttribute(attributeName, '' + value); + } + } else { + var propName = propertyInfo.propertyName; + // Must explicitly cast values for HAS_SIDE_EFFECTS-properties to the + // property type before comparing; only `value` does and is string. + if (!propertyInfo.hasSideEffects || '' + node[propName] !== '' + value) { + // Contrary to `setAttribute`, object properties are properly + // `toString`ed by IE8/9. + node[propName] = value; + } + } + } else if (DOMProperty.isCustomAttribute(name)) { + DOMPropertyOperations.setValueForAttribute(node, name, value); + } else if ("development" !== 'production') { + warnUnknownProperty(name); + } + }, + + setValueForAttribute: function (node, name, value) { + if (!isAttributeNameSafe(name)) { + return; + } + if (value == null) { + node.removeAttribute(name); + } else { + node.setAttribute(name, '' + value); + } + }, + + /** + * Deletes the value for a property on a node. + * + * @param {DOMElement} node + * @param {string} name + */ + deleteValueForProperty: function (node, name) { + var propertyInfo = DOMProperty.properties.hasOwnProperty(name) ? DOMProperty.properties[name] : null; + if (propertyInfo) { + var mutationMethod = propertyInfo.mutationMethod; + if (mutationMethod) { + mutationMethod(node, undefined); + } else if (propertyInfo.mustUseAttribute) { + node.removeAttribute(propertyInfo.attributeName); + } else { + var propName = propertyInfo.propertyName; + var defaultValue = DOMProperty.getDefaultValueForProperty(node.nodeName, propName); + if (!propertyInfo.hasSideEffects || '' + node[propName] !== defaultValue) { + node[propName] = defaultValue; + } + } + } else if (DOMProperty.isCustomAttribute(name)) { + node.removeAttribute(name); + } else if ("development" !== 'production') { + warnUnknownProperty(name); + } + } + +}; + +ReactPerf.measureMethods(DOMPropertyOperations, 'DOMPropertyOperations', { + setValueForProperty: 'setValueForProperty', + setValueForAttribute: 'setValueForAttribute', + deleteValueForProperty: 'deleteValueForProperty' +}); + +module.exports = DOMPropertyOperations; +},{"10":10,"136":136,"173":173,"78":78}],12:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule Danger + * @typechecks static-only + */ + +'use strict'; + +var ExecutionEnvironment = _dereq_(147); + +var createNodesFromMarkup = _dereq_(152); +var emptyFunction = _dereq_(153); +var getMarkupWrap = _dereq_(157); +var invariant = _dereq_(161); + +var OPEN_TAG_NAME_EXP = /^(<[^ \/>]+)/; +var RESULT_INDEX_ATTR = 'data-danger-index'; + +/** + * Extracts the `nodeName` from a string of markup. + * + * NOTE: Extracting the `nodeName` does not require a regular expression match + * because we make assumptions about React-generated markup (i.e. there are no + * spaces surrounding the opening tag and there is at least one attribute). + * + * @param {string} markup String of markup. + * @return {string} Node name of the supplied markup. + * @see http://jsperf.com/extract-nodename + */ +function getNodeName(markup) { + return markup.substring(1, markup.indexOf(' ')); +} + +var Danger = { + + /** + * Renders markup into an array of nodes. The markup is expected to render + * into a list of root nodes. Also, the length of `resultList` and + * `markupList` should be the same. + * + * @param {array} markupList List of markup strings to render. + * @return {array} List of rendered nodes. + * @internal + */ + dangerouslyRenderMarkup: function (markupList) { + !ExecutionEnvironment.canUseDOM ? "development" !== 'production' ? invariant(false, 'dangerouslyRenderMarkup(...): Cannot render markup in a worker ' + 'thread. Make sure `window` and `document` are available globally ' + 'before requiring React when unit testing or use ' + 'ReactDOMServer.renderToString for server rendering.') : invariant(false) : undefined; + var nodeName; + var markupByNodeName = {}; + // Group markup by `nodeName` if a wrap is necessary, else by '*'. + for (var i = 0; i < markupList.length; i++) { + !markupList[i] ? "development" !== 'production' ? invariant(false, 'dangerouslyRenderMarkup(...): Missing markup.') : invariant(false) : undefined; + nodeName = getNodeName(markupList[i]); + nodeName = getMarkupWrap(nodeName) ? nodeName : '*'; + markupByNodeName[nodeName] = markupByNodeName[nodeName] || []; + markupByNodeName[nodeName][i] = markupList[i]; + } + var resultList = []; + var resultListAssignmentCount = 0; + for (nodeName in markupByNodeName) { + if (!markupByNodeName.hasOwnProperty(nodeName)) { + continue; + } + var markupListByNodeName = markupByNodeName[nodeName]; + + // This for-in loop skips the holes of the sparse array. The order of + // iteration should follow the order of assignment, which happens to match + // numerical index order, but we don't rely on that. + var resultIndex; + for (resultIndex in markupListByNodeName) { + if (markupListByNodeName.hasOwnProperty(resultIndex)) { + var markup = markupListByNodeName[resultIndex]; + + // Push the requested markup with an additional RESULT_INDEX_ATTR + // attribute. If the markup does not start with a < character, it + // will be discarded below (with an appropriate console.error). + markupListByNodeName[resultIndex] = markup.replace(OPEN_TAG_NAME_EXP, + // This index will be parsed back out below. + '$1 ' + RESULT_INDEX_ATTR + '="' + resultIndex + '" '); + } + } + + // Render each group of markup with similar wrapping `nodeName`. + var renderNodes = createNodesFromMarkup(markupListByNodeName.join(''), emptyFunction // Do nothing special with

                                                                                ; + * } + * }); + * + * The class specification supports a specific protocol of methods that have + * special meaning (e.g. `render`). See `ReactClassInterface` for + * more the comprehensive protocol. Any other properties and methods in the + * class specification will be available on the prototype. + * + * @interface ReactClassInterface + * @internal + */ +var ReactClassInterface = { + + /** + * An array of Mixin objects to include when defining your component. + * + * @type {array} + * @optional + */ + mixins: SpecPolicy.DEFINE_MANY, + + /** + * An object containing properties and methods that should be defined on + * the component's constructor instead of its prototype (static methods). + * + * @type {object} + * @optional + */ + statics: SpecPolicy.DEFINE_MANY, + + /** + * Definition of prop types for this component. + * + * @type {object} + * @optional + */ + propTypes: SpecPolicy.DEFINE_MANY, + + /** + * Definition of context types for this component. + * + * @type {object} + * @optional + */ + contextTypes: SpecPolicy.DEFINE_MANY, + + /** + * Definition of context types this component sets for its children. + * + * @type {object} + * @optional + */ + childContextTypes: SpecPolicy.DEFINE_MANY, + + // ==== Definition methods ==== + + /** + * Invoked when the component is mounted. Values in the mapping will be set on + * `this.props` if that prop is not specified (i.e. using an `in` check). + * + * This method is invoked before `getInitialState` and therefore cannot rely + * on `this.state` or use `this.setState`. + * + * @return {object} + * @optional + */ + getDefaultProps: SpecPolicy.DEFINE_MANY_MERGED, + + /** + * Invoked once before the component is mounted. The return value will be used + * as the initial value of `this.state`. + * + * getInitialState: function() { + * return { + * isOn: false, + * fooBaz: new BazFoo() + * } + * } + * + * @return {object} + * @optional + */ + getInitialState: SpecPolicy.DEFINE_MANY_MERGED, + + /** + * @return {object} + * @optional + */ + getChildContext: SpecPolicy.DEFINE_MANY_MERGED, + + /** + * Uses props from `this.props` and state from `this.state` to render the + * structure of the component. + * + * No guarantees are made about when or how often this method is invoked, so + * it must not have side effects. + * + * render: function() { + * var name = this.props.name; + * return
                                                                                Hello, {name}!
                                                                                ; + * } + * + * @return {ReactComponent} + * @nosideeffects + * @required + */ + render: SpecPolicy.DEFINE_ONCE, + + // ==== Delegate methods ==== + + /** + * Invoked when the component is initially created and about to be mounted. + * This may have side effects, but any external subscriptions or data created + * by this method must be cleaned up in `componentWillUnmount`. + * + * @optional + */ + componentWillMount: SpecPolicy.DEFINE_MANY, + + /** + * Invoked when the component has been mounted and has a DOM representation. + * However, there is no guarantee that the DOM node is in the document. + * + * Use this as an opportunity to operate on the DOM when the component has + * been mounted (initialized and rendered) for the first time. + * + * @param {DOMElement} rootNode DOM element representing the component. + * @optional + */ + componentDidMount: SpecPolicy.DEFINE_MANY, + + /** + * Invoked before the component receives new props. + * + * Use this as an opportunity to react to a prop transition by updating the + * state using `this.setState`. Current props are accessed via `this.props`. + * + * componentWillReceiveProps: function(nextProps, nextContext) { + * this.setState({ + * likesIncreasing: nextProps.likeCount > this.props.likeCount + * }); + * } + * + * NOTE: There is no equivalent `componentWillReceiveState`. An incoming prop + * transition may cause a state change, but the opposite is not true. If you + * need it, you are probably looking for `componentWillUpdate`. + * + * @param {object} nextProps + * @optional + */ + componentWillReceiveProps: SpecPolicy.DEFINE_MANY, + + /** + * Invoked while deciding if the component should be updated as a result of + * receiving new props, state and/or context. + * + * Use this as an opportunity to `return false` when you're certain that the + * transition to the new props/state/context will not require a component + * update. + * + * shouldComponentUpdate: function(nextProps, nextState, nextContext) { + * return !equal(nextProps, this.props) || + * !equal(nextState, this.state) || + * !equal(nextContext, this.context); + * } + * + * @param {object} nextProps + * @param {?object} nextState + * @param {?object} nextContext + * @return {boolean} True if the component should update. + * @optional + */ + shouldComponentUpdate: SpecPolicy.DEFINE_ONCE, + + /** + * Invoked when the component is about to update due to a transition from + * `this.props`, `this.state` and `this.context` to `nextProps`, `nextState` + * and `nextContext`. + * + * Use this as an opportunity to perform preparation before an update occurs. + * + * NOTE: You **cannot** use `this.setState()` in this method. + * + * @param {object} nextProps + * @param {?object} nextState + * @param {?object} nextContext + * @param {ReactReconcileTransaction} transaction + * @optional + */ + componentWillUpdate: SpecPolicy.DEFINE_MANY, + + /** + * Invoked when the component's DOM representation has been updated. + * + * Use this as an opportunity to operate on the DOM when the component has + * been updated. + * + * @param {object} prevProps + * @param {?object} prevState + * @param {?object} prevContext + * @param {DOMElement} rootNode DOM element representing the component. + * @optional + */ + componentDidUpdate: SpecPolicy.DEFINE_MANY, + + /** + * Invoked when the component is about to be removed from its parent and have + * its DOM representation destroyed. + * + * Use this as an opportunity to deallocate any external resources. + * + * NOTE: There is no `componentDidUnmount` since your component will have been + * destroyed by that point. + * + * @optional + */ + componentWillUnmount: SpecPolicy.DEFINE_MANY, + + // ==== Advanced methods ==== + + /** + * Updates the component's currently mounted DOM representation. + * + * By default, this implements React's rendering and reconciliation algorithm. + * Sophisticated clients may wish to override this. + * + * @param {ReactReconcileTransaction} transaction + * @internal + * @overridable + */ + updateComponent: SpecPolicy.OVERRIDE_BASE + +}; + +/** + * Mapping from class specification keys to special processing functions. + * + * Although these are declared like instance properties in the specification + * when defining classes using `React.createClass`, they are actually static + * and are accessible on the constructor instead of the prototype. Despite + * being static, they must be defined outside of the "statics" key under + * which all other static methods are defined. + */ +var RESERVED_SPEC_KEYS = { + displayName: function (Constructor, displayName) { + Constructor.displayName = displayName; + }, + mixins: function (Constructor, mixins) { + if (mixins) { + for (var i = 0; i < mixins.length; i++) { + mixSpecIntoComponent(Constructor, mixins[i]); + } + } + }, + childContextTypes: function (Constructor, childContextTypes) { + if ("development" !== 'production') { + validateTypeDef(Constructor, childContextTypes, ReactPropTypeLocations.childContext); + } + Constructor.childContextTypes = assign({}, Constructor.childContextTypes, childContextTypes); + }, + contextTypes: function (Constructor, contextTypes) { + if ("development" !== 'production') { + validateTypeDef(Constructor, contextTypes, ReactPropTypeLocations.context); + } + Constructor.contextTypes = assign({}, Constructor.contextTypes, contextTypes); + }, + /** + * Special case getDefaultProps which should move into statics but requires + * automatic merging. + */ + getDefaultProps: function (Constructor, getDefaultProps) { + if (Constructor.getDefaultProps) { + Constructor.getDefaultProps = createMergedResultFunction(Constructor.getDefaultProps, getDefaultProps); + } else { + Constructor.getDefaultProps = getDefaultProps; + } + }, + propTypes: function (Constructor, propTypes) { + if ("development" !== 'production') { + validateTypeDef(Constructor, propTypes, ReactPropTypeLocations.prop); + } + Constructor.propTypes = assign({}, Constructor.propTypes, propTypes); + }, + statics: function (Constructor, statics) { + mixStaticSpecIntoComponent(Constructor, statics); + }, + autobind: function () {} }; + +// noop +function validateTypeDef(Constructor, typeDef, location) { + for (var propName in typeDef) { + if (typeDef.hasOwnProperty(propName)) { + // use a warning instead of an invariant so components + // don't show up in prod but not in __DEV__ + "development" !== 'production' ? warning(typeof typeDef[propName] === 'function', '%s: %s type `%s` is invalid; it must be a function, usually from ' + 'React.PropTypes.', Constructor.displayName || 'ReactClass', ReactPropTypeLocationNames[location], propName) : undefined; + } + } +} + +function validateMethodOverride(proto, name) { + var specPolicy = ReactClassInterface.hasOwnProperty(name) ? ReactClassInterface[name] : null; + + // Disallow overriding of base class methods unless explicitly allowed. + if (ReactClassMixin.hasOwnProperty(name)) { + !(specPolicy === SpecPolicy.OVERRIDE_BASE) ? "development" !== 'production' ? invariant(false, 'ReactClassInterface: You are attempting to override ' + '`%s` from your class specification. Ensure that your method names ' + 'do not overlap with React methods.', name) : invariant(false) : undefined; + } + + // Disallow defining methods more than once unless explicitly allowed. + if (proto.hasOwnProperty(name)) { + !(specPolicy === SpecPolicy.DEFINE_MANY || specPolicy === SpecPolicy.DEFINE_MANY_MERGED) ? "development" !== 'production' ? invariant(false, 'ReactClassInterface: You are attempting to define ' + '`%s` on your component more than once. This conflict may be due ' + 'to a mixin.', name) : invariant(false) : undefined; + } +} + +/** + * Mixin helper which handles policy validation and reserved + * specification keys when building React classses. + */ +function mixSpecIntoComponent(Constructor, spec) { + if (!spec) { + return; + } + + !(typeof spec !== 'function') ? "development" !== 'production' ? invariant(false, 'ReactClass: You\'re attempting to ' + 'use a component class as a mixin. Instead, just use a regular object.') : invariant(false) : undefined; + !!ReactElement.isValidElement(spec) ? "development" !== 'production' ? invariant(false, 'ReactClass: You\'re attempting to ' + 'use a component as a mixin. Instead, just use a regular object.') : invariant(false) : undefined; + + var proto = Constructor.prototype; + + // By handling mixins before any other properties, we ensure the same + // chaining order is applied to methods with DEFINE_MANY policy, whether + // mixins are listed before or after these methods in the spec. + if (spec.hasOwnProperty(MIXINS_KEY)) { + RESERVED_SPEC_KEYS.mixins(Constructor, spec.mixins); + } + + for (var name in spec) { + if (!spec.hasOwnProperty(name)) { + continue; + } + + if (name === MIXINS_KEY) { + // We have already handled mixins in a special case above. + continue; + } + + var property = spec[name]; + validateMethodOverride(proto, name); + + if (RESERVED_SPEC_KEYS.hasOwnProperty(name)) { + RESERVED_SPEC_KEYS[name](Constructor, property); + } else { + // Setup methods on prototype: + // The following member methods should not be automatically bound: + // 1. Expected ReactClass methods (in the "interface"). + // 2. Overridden methods (that were mixed in). + var isReactClassMethod = ReactClassInterface.hasOwnProperty(name); + var isAlreadyDefined = proto.hasOwnProperty(name); + var isFunction = typeof property === 'function'; + var shouldAutoBind = isFunction && !isReactClassMethod && !isAlreadyDefined && spec.autobind !== false; + + if (shouldAutoBind) { + if (!proto.__reactAutoBindMap) { + proto.__reactAutoBindMap = {}; + } + proto.__reactAutoBindMap[name] = property; + proto[name] = property; + } else { + if (isAlreadyDefined) { + var specPolicy = ReactClassInterface[name]; + + // These cases should already be caught by validateMethodOverride. + !(isReactClassMethod && (specPolicy === SpecPolicy.DEFINE_MANY_MERGED || specPolicy === SpecPolicy.DEFINE_MANY)) ? "development" !== 'production' ? invariant(false, 'ReactClass: Unexpected spec policy %s for key %s ' + 'when mixing in component specs.', specPolicy, name) : invariant(false) : undefined; + + // For methods which are defined more than once, call the existing + // methods before calling the new property, merging if appropriate. + if (specPolicy === SpecPolicy.DEFINE_MANY_MERGED) { + proto[name] = createMergedResultFunction(proto[name], property); + } else if (specPolicy === SpecPolicy.DEFINE_MANY) { + proto[name] = createChainedFunction(proto[name], property); + } + } else { + proto[name] = property; + if ("development" !== 'production') { + // Add verbose displayName to the function, which helps when looking + // at profiling tools. + if (typeof property === 'function' && spec.displayName) { + proto[name].displayName = spec.displayName + '_' + name; + } + } + } + } + } + } +} + +function mixStaticSpecIntoComponent(Constructor, statics) { + if (!statics) { + return; + } + for (var name in statics) { + var property = statics[name]; + if (!statics.hasOwnProperty(name)) { + continue; + } + + var isReserved = (name in RESERVED_SPEC_KEYS); + !!isReserved ? "development" !== 'production' ? invariant(false, 'ReactClass: You are attempting to define a reserved ' + 'property, `%s`, that shouldn\'t be on the "statics" key. Define it ' + 'as an instance property instead; it will still be accessible on the ' + 'constructor.', name) : invariant(false) : undefined; + + var isInherited = (name in Constructor); + !!isInherited ? "development" !== 'production' ? invariant(false, 'ReactClass: You are attempting to define ' + '`%s` on your component more than once. This conflict may be ' + 'due to a mixin.', name) : invariant(false) : undefined; + Constructor[name] = property; + } +} + +/** + * Merge two objects, but throw if both contain the same key. + * + * @param {object} one The first object, which is mutated. + * @param {object} two The second object + * @return {object} one after it has been mutated to contain everything in two. + */ +function mergeIntoWithNoDuplicateKeys(one, two) { + !(one && two && typeof one === 'object' && typeof two === 'object') ? "development" !== 'production' ? invariant(false, 'mergeIntoWithNoDuplicateKeys(): Cannot merge non-objects.') : invariant(false) : undefined; + + for (var key in two) { + if (two.hasOwnProperty(key)) { + !(one[key] === undefined) ? "development" !== 'production' ? invariant(false, 'mergeIntoWithNoDuplicateKeys(): ' + 'Tried to merge two objects with the same key: `%s`. This conflict ' + 'may be due to a mixin; in particular, this may be caused by two ' + 'getInitialState() or getDefaultProps() methods returning objects ' + 'with clashing keys.', key) : invariant(false) : undefined; + one[key] = two[key]; + } + } + return one; +} + +/** + * Creates a function that invokes two functions and merges their return values. + * + * @param {function} one Function to invoke first. + * @param {function} two Function to invoke second. + * @return {function} Function that invokes the two argument functions. + * @private + */ +function createMergedResultFunction(one, two) { + return function mergedResult() { + var a = one.apply(this, arguments); + var b = two.apply(this, arguments); + if (a == null) { + return b; + } else if (b == null) { + return a; + } + var c = {}; + mergeIntoWithNoDuplicateKeys(c, a); + mergeIntoWithNoDuplicateKeys(c, b); + return c; + }; +} + +/** + * Creates a function that invokes two functions and ignores their return vales. + * + * @param {function} one Function to invoke first. + * @param {function} two Function to invoke second. + * @return {function} Function that invokes the two argument functions. + * @private + */ +function createChainedFunction(one, two) { + return function chainedFunction() { + one.apply(this, arguments); + two.apply(this, arguments); + }; +} + +/** + * Binds a method to the component. + * + * @param {object} component Component whose method is going to be bound. + * @param {function} method Method to be bound. + * @return {function} The bound method. + */ +function bindAutoBindMethod(component, method) { + var boundMethod = method.bind(component); + if ("development" !== 'production') { + boundMethod.__reactBoundContext = component; + boundMethod.__reactBoundMethod = method; + boundMethod.__reactBoundArguments = null; + var componentName = component.constructor.displayName; + var _bind = boundMethod.bind; + /* eslint-disable block-scoped-var, no-undef */ + boundMethod.bind = function (newThis) { + for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + args[_key - 1] = arguments[_key]; + } + + // User is trying to bind() an autobound method; we effectively will + // ignore the value of "this" that the user is trying to use, so + // let's warn. + if (newThis !== component && newThis !== null) { + "development" !== 'production' ? warning(false, 'bind(): React component methods may only be bound to the ' + 'component instance. See %s', componentName) : undefined; + } else if (!args.length) { + "development" !== 'production' ? warning(false, 'bind(): You are binding a component method to the component. ' + 'React does this for you automatically in a high-performance ' + 'way, so you can safely remove this call. See %s', componentName) : undefined; + return boundMethod; + } + var reboundMethod = _bind.apply(boundMethod, arguments); + reboundMethod.__reactBoundContext = component; + reboundMethod.__reactBoundMethod = method; + reboundMethod.__reactBoundArguments = args; + return reboundMethod; + /* eslint-enable */ + }; + } + return boundMethod; +} + +/** + * Binds all auto-bound methods in a component. + * + * @param {object} component Component whose method is going to be bound. + */ +function bindAutoBindMethods(component) { + for (var autoBindKey in component.__reactAutoBindMap) { + if (component.__reactAutoBindMap.hasOwnProperty(autoBindKey)) { + var method = component.__reactAutoBindMap[autoBindKey]; + component[autoBindKey] = bindAutoBindMethod(component, method); + } + } +} + +/** + * Add more to the ReactClass base class. These are all legacy features and + * therefore not already part of the modern ReactComponent. + */ +var ReactClassMixin = { + + /** + * TODO: This will be deprecated because state should always keep a consistent + * type signature and the only use case for this, is to avoid that. + */ + replaceState: function (newState, callback) { + this.updater.enqueueReplaceState(this, newState); + if (callback) { + this.updater.enqueueCallback(this, callback); + } + }, + + /** + * Checks whether or not this composite component is mounted. + * @return {boolean} True if mounted, false otherwise. + * @protected + * @final + */ + isMounted: function () { + return this.updater.isMounted(this); + }, + + /** + * Sets a subset of the props. + * + * @param {object} partialProps Subset of the next props. + * @param {?function} callback Called after props are updated. + * @final + * @public + * @deprecated + */ + setProps: function (partialProps, callback) { + if ("development" !== 'production') { + warnSetProps(); + } + this.updater.enqueueSetProps(this, partialProps); + if (callback) { + this.updater.enqueueCallback(this, callback); + } + }, + + /** + * Replace all the props. + * + * @param {object} newProps Subset of the next props. + * @param {?function} callback Called after props are updated. + * @final + * @public + * @deprecated + */ + replaceProps: function (newProps, callback) { + if ("development" !== 'production') { + warnSetProps(); + } + this.updater.enqueueReplaceProps(this, newProps); + if (callback) { + this.updater.enqueueCallback(this, callback); + } + } +}; + +var ReactClassComponent = function () {}; +assign(ReactClassComponent.prototype, ReactComponent.prototype, ReactClassMixin); + +/** + * Module for creating composite components. + * + * @class ReactClass + */ +var ReactClass = { + + /** + * Creates a composite component class given a class specification. + * + * @param {object} spec Class specification (which must define `render`). + * @return {function} Component constructor function. + * @public + */ + createClass: function (spec) { + var Constructor = function (props, context, updater) { + // This constructor is overridden by mocks. The argument is used + // by mocks to assert on what gets mounted. + + if ("development" !== 'production') { + "development" !== 'production' ? warning(this instanceof Constructor, 'Something is calling a React component directly. Use a factory or ' + 'JSX instead. See: https://fb.me/react-legacyfactory') : undefined; + } + + // Wire up auto-binding + if (this.__reactAutoBindMap) { + bindAutoBindMethods(this); + } + + this.props = props; + this.context = context; + this.refs = emptyObject; + this.updater = updater || ReactNoopUpdateQueue; + + this.state = null; + + // ReactClasses doesn't have constructors. Instead, they use the + // getInitialState and componentWillMount methods for initialization. + + var initialState = this.getInitialState ? this.getInitialState() : null; + if ("development" !== 'production') { + // We allow auto-mocks to proceed as if they're returning null. + if (typeof initialState === 'undefined' && this.getInitialState._isMockFunction) { + // This is probably bad practice. Consider warning here and + // deprecating this convenience. + initialState = null; + } + } + !(typeof initialState === 'object' && !Array.isArray(initialState)) ? "development" !== 'production' ? invariant(false, '%s.getInitialState(): must return an object or null', Constructor.displayName || 'ReactCompositeComponent') : invariant(false) : undefined; + + this.state = initialState; + }; + Constructor.prototype = new ReactClassComponent(); + Constructor.prototype.constructor = Constructor; + + injectedMixins.forEach(mixSpecIntoComponent.bind(null, Constructor)); + + mixSpecIntoComponent(Constructor, spec); + + // Initialize the defaultProps property after all mixins have been merged. + if (Constructor.getDefaultProps) { + Constructor.defaultProps = Constructor.getDefaultProps(); + } + + if ("development" !== 'production') { + // This is a tag to indicate that the use of these method names is ok, + // since it's used with createClass. If it's not, then it's likely a + // mistake so we'll warn you to use the static property, property + // initializer or constructor respectively. + if (Constructor.getDefaultProps) { + Constructor.getDefaultProps.isReactClassApproved = {}; + } + if (Constructor.prototype.getInitialState) { + Constructor.prototype.getInitialState.isReactClassApproved = {}; + } + } + + !Constructor.prototype.render ? "development" !== 'production' ? invariant(false, 'createClass(...): Class specification must implement a `render` method.') : invariant(false) : undefined; + + if ("development" !== 'production') { + "development" !== 'production' ? warning(!Constructor.prototype.componentShouldUpdate, '%s has a method called ' + 'componentShouldUpdate(). Did you mean shouldComponentUpdate()? ' + 'The name is phrased as a question because the function is ' + 'expected to return a value.', spec.displayName || 'A component') : undefined; + "development" !== 'production' ? warning(!Constructor.prototype.componentWillRecieveProps, '%s has a method called ' + 'componentWillRecieveProps(). Did you mean componentWillReceiveProps()?', spec.displayName || 'A component') : undefined; + } + + // Reduce time spent doing lookups by setting these on the prototype. + for (var methodName in ReactClassInterface) { + if (!Constructor.prototype[methodName]) { + Constructor.prototype[methodName] = null; + } + } + + return Constructor; + }, + + injection: { + injectMixin: function (mixin) { + injectedMixins.push(mixin); + } + } + +}; + +module.exports = ReactClass; +},{"154":154,"161":161,"165":165,"166":166,"173":173,"24":24,"34":34,"57":57,"76":76,"80":80,"81":81}],34:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule ReactComponent + */ + +'use strict'; + +var ReactNoopUpdateQueue = _dereq_(76); + +var canDefineProperty = _dereq_(117); +var emptyObject = _dereq_(154); +var invariant = _dereq_(161); +var warning = _dereq_(173); + +/** + * Base class helpers for the updating state of a component. + */ +function ReactComponent(props, context, updater) { + this.props = props; + this.context = context; + this.refs = emptyObject; + // We initialize the default updater but the real one gets injected by the + // renderer. + this.updater = updater || ReactNoopUpdateQueue; +} + +ReactComponent.prototype.isReactComponent = {}; + +/** + * Sets a subset of the state. Always use this to mutate + * state. You should treat `this.state` as immutable. + * + * There is no guarantee that `this.state` will be immediately updated, so + * accessing `this.state` after calling this method may return the old value. + * + * There is no guarantee that calls to `setState` will run synchronously, + * as they may eventually be batched together. You can provide an optional + * callback that will be executed when the call to setState is actually + * completed. + * + * When a function is provided to setState, it will be called at some point in + * the future (not synchronously). It will be called with the up to date + * component arguments (state, props, context). These values can be different + * from this.* because your function may be called after receiveProps but before + * shouldComponentUpdate, and this new state, props, and context will not yet be + * assigned to this. + * + * @param {object|function} partialState Next partial state or function to + * produce next partial state to be merged with current state. + * @param {?function} callback Called after state is updated. + * @final + * @protected + */ +ReactComponent.prototype.setState = function (partialState, callback) { + !(typeof partialState === 'object' || typeof partialState === 'function' || partialState == null) ? "development" !== 'production' ? invariant(false, 'setState(...): takes an object of state variables to update or a ' + 'function which returns an object of state variables.') : invariant(false) : undefined; + if ("development" !== 'production') { + "development" !== 'production' ? warning(partialState != null, 'setState(...): You passed an undefined or null state object; ' + 'instead, use forceUpdate().') : undefined; + } + this.updater.enqueueSetState(this, partialState); + if (callback) { + this.updater.enqueueCallback(this, callback); + } +}; + +/** + * Forces an update. This should only be invoked when it is known with + * certainty that we are **not** in a DOM transaction. + * + * You may want to call this when you know that some deeper aspect of the + * component's state has changed but `setState` was not called. + * + * This will not invoke `shouldComponentUpdate`, but it will invoke + * `componentWillUpdate` and `componentDidUpdate`. + * + * @param {?function} callback Called after update is complete. + * @final + * @protected + */ +ReactComponent.prototype.forceUpdate = function (callback) { + this.updater.enqueueForceUpdate(this); + if (callback) { + this.updater.enqueueCallback(this, callback); + } +}; + +/** + * Deprecated APIs. These APIs used to exist on classic React classes but since + * we would like to deprecate them, we're not going to move them over to this + * modern base class. Instead, we define a getter that warns if it's accessed. + */ +if ("development" !== 'production') { + var deprecatedAPIs = { + getDOMNode: ['getDOMNode', 'Use ReactDOM.findDOMNode(component) instead.'], + isMounted: ['isMounted', 'Instead, make sure to clean up subscriptions and pending requests in ' + 'componentWillUnmount to prevent memory leaks.'], + replaceProps: ['replaceProps', 'Instead, call render again at the top level.'], + replaceState: ['replaceState', 'Refactor your code to use setState instead (see ' + 'https://github.com/facebook/react/issues/3236).'], + setProps: ['setProps', 'Instead, call render again at the top level.'] + }; + var defineDeprecationWarning = function (methodName, info) { + if (canDefineProperty) { + Object.defineProperty(ReactComponent.prototype, methodName, { + get: function () { + "development" !== 'production' ? warning(false, '%s(...) is deprecated in plain JavaScript React classes. %s', info[0], info[1]) : undefined; + return undefined; + } + }); + } + }; + for (var fnName in deprecatedAPIs) { + if (deprecatedAPIs.hasOwnProperty(fnName)) { + defineDeprecationWarning(fnName, deprecatedAPIs[fnName]); + } + } +} + +module.exports = ReactComponent; +},{"117":117,"154":154,"161":161,"173":173,"76":76}],35:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule ReactComponentBrowserEnvironment + */ + +'use strict'; + +var ReactDOMIDOperations = _dereq_(45); +var ReactMount = _dereq_(72); + +/** + * Abstracts away all functionality of the reconciler that requires knowledge of + * the browser context. TODO: These callers should be refactored to avoid the + * need for this injection. + */ +var ReactComponentBrowserEnvironment = { + + processChildrenUpdates: ReactDOMIDOperations.dangerouslyProcessChildrenUpdates, + + replaceNodeWithMarkupByID: ReactDOMIDOperations.dangerouslyReplaceNodeWithMarkupByID, + + /** + * If a particular environment requires that some resources be cleaned up, + * specify this in the injected Mixin. In the DOM, we would likely want to + * purge any cached node ID lookups. + * + * @private + */ + unmountIDFromEnvironment: function (rootNodeID) { + ReactMount.purgeID(rootNodeID); + } + +}; + +module.exports = ReactComponentBrowserEnvironment; +},{"45":45,"72":72}],36:[function(_dereq_,module,exports){ +/** + * Copyright 2014-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule ReactComponentEnvironment + */ + +'use strict'; + +var invariant = _dereq_(161); + +var injected = false; + +var ReactComponentEnvironment = { + + /** + * Optionally injectable environment dependent cleanup hook. (server vs. + * browser etc). Example: A browser system caches DOM nodes based on component + * ID and must remove that cache entry when this instance is unmounted. + */ + unmountIDFromEnvironment: null, + + /** + * Optionally injectable hook for swapping out mount images in the middle of + * the tree. + */ + replaceNodeWithMarkupByID: null, + + /** + * Optionally injectable hook for processing a queue of child updates. Will + * later move into MultiChildComponents. + */ + processChildrenUpdates: null, + + injection: { + injectEnvironment: function (environment) { + !!injected ? "development" !== 'production' ? invariant(false, 'ReactCompositeComponent: injectEnvironment() can only be called once.') : invariant(false) : undefined; + ReactComponentEnvironment.unmountIDFromEnvironment = environment.unmountIDFromEnvironment; + ReactComponentEnvironment.replaceNodeWithMarkupByID = environment.replaceNodeWithMarkupByID; + ReactComponentEnvironment.processChildrenUpdates = environment.processChildrenUpdates; + injected = true; + } + } + +}; + +module.exports = ReactComponentEnvironment; +},{"161":161}],37:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule ReactComponentWithPureRenderMixin + */ + +'use strict'; + +var shallowCompare = _dereq_(140); + +/** + * If your React component's render function is "pure", e.g. it will render the + * same result given the same props and state, provide this Mixin for a + * considerable performance boost. + * + * Most React components have pure render functions. + * + * Example: + * + * var ReactComponentWithPureRenderMixin = + * require('ReactComponentWithPureRenderMixin'); + * React.createClass({ + * mixins: [ReactComponentWithPureRenderMixin], + * + * render: function() { + * return
                                                                                foo
                                                                                ; + * } + * }); + * + * Note: This only checks shallow equality for props and state. If these contain + * complex data structures this mixin may have false-negatives for deeper + * differences. Only mixin to components which have simple props and state, or + * use `forceUpdate()` when you know deep data structures have changed. + */ +var ReactComponentWithPureRenderMixin = { + shouldComponentUpdate: function (nextProps, nextState) { + return shallowCompare(this, nextProps, nextState); + } +}; + +module.exports = ReactComponentWithPureRenderMixin; +},{"140":140}],38:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule ReactCompositeComponent + */ + +'use strict'; + +var ReactComponentEnvironment = _dereq_(36); +var ReactCurrentOwner = _dereq_(39); +var ReactElement = _dereq_(57); +var ReactInstanceMap = _dereq_(68); +var ReactPerf = _dereq_(78); +var ReactPropTypeLocations = _dereq_(81); +var ReactPropTypeLocationNames = _dereq_(80); +var ReactReconciler = _dereq_(84); +var ReactUpdateQueue = _dereq_(95); + +var assign = _dereq_(24); +var emptyObject = _dereq_(154); +var invariant = _dereq_(161); +var shouldUpdateReactComponent = _dereq_(141); +var warning = _dereq_(173); + +function getDeclarationErrorAddendum(component) { + var owner = component._currentElement._owner || null; + if (owner) { + var name = owner.getName(); + if (name) { + return ' Check the render method of `' + name + '`.'; + } + } + return ''; +} + +function StatelessComponent(Component) {} +StatelessComponent.prototype.render = function () { + var Component = ReactInstanceMap.get(this)._currentElement.type; + return Component(this.props, this.context, this.updater); +}; + +/** + * ------------------ The Life-Cycle of a Composite Component ------------------ + * + * - constructor: Initialization of state. The instance is now retained. + * - componentWillMount + * - render + * - [children's constructors] + * - [children's componentWillMount and render] + * - [children's componentDidMount] + * - componentDidMount + * + * Update Phases: + * - componentWillReceiveProps (only called if parent updated) + * - shouldComponentUpdate + * - componentWillUpdate + * - render + * - [children's constructors or receive props phases] + * - componentDidUpdate + * + * - componentWillUnmount + * - [children's componentWillUnmount] + * - [children destroyed] + * - (destroyed): The instance is now blank, released by React and ready for GC. + * + * ----------------------------------------------------------------------------- + */ + +/** + * An incrementing ID assigned to each component when it is mounted. This is + * used to enforce the order in which `ReactUpdates` updates dirty components. + * + * @private + */ +var nextMountID = 1; + +/** + * @lends {ReactCompositeComponent.prototype} + */ +var ReactCompositeComponentMixin = { + + /** + * Base constructor for all composite component. + * + * @param {ReactElement} element + * @final + * @internal + */ + construct: function (element) { + this._currentElement = element; + this._rootNodeID = null; + this._instance = null; + + // See ReactUpdateQueue + this._pendingElement = null; + this._pendingStateQueue = null; + this._pendingReplaceState = false; + this._pendingForceUpdate = false; + + this._renderedComponent = null; + + this._context = null; + this._mountOrder = 0; + this._topLevelWrapper = null; + + // See ReactUpdates and ReactUpdateQueue. + this._pendingCallbacks = null; + }, + + /** + * Initializes the component, renders markup, and registers event listeners. + * + * @param {string} rootID DOM ID of the root node. + * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction + * @return {?string} Rendered markup to be inserted into the DOM. + * @final + * @internal + */ + mountComponent: function (rootID, transaction, context) { + this._context = context; + this._mountOrder = nextMountID++; + this._rootNodeID = rootID; + + var publicProps = this._processProps(this._currentElement.props); + var publicContext = this._processContext(context); + + var Component = this._currentElement.type; + + // Initialize the public class + var inst; + var renderedElement; + + // This is a way to detect if Component is a stateless arrow function + // component, which is not newable. It might not be 100% reliable but is + // something we can do until we start detecting that Component extends + // React.Component. We already assume that typeof Component === 'function'. + var canInstantiate = ('prototype' in Component); + + if (canInstantiate) { + if ("development" !== 'production') { + ReactCurrentOwner.current = this; + try { + inst = new Component(publicProps, publicContext, ReactUpdateQueue); + } finally { + ReactCurrentOwner.current = null; + } + } else { + inst = new Component(publicProps, publicContext, ReactUpdateQueue); + } + } + + if (!canInstantiate || inst === null || inst === false || ReactElement.isValidElement(inst)) { + renderedElement = inst; + inst = new StatelessComponent(Component); + } + + if ("development" !== 'production') { + // This will throw later in _renderValidatedComponent, but add an early + // warning now to help debugging + if (inst.render == null) { + "development" !== 'production' ? warning(false, '%s(...): No `render` method found on the returned component ' + 'instance: you may have forgotten to define `render`, returned ' + 'null/false from a stateless component, or tried to render an ' + 'element whose type is a function that isn\'t a React component.', Component.displayName || Component.name || 'Component') : undefined; + } else { + // We support ES6 inheriting from React.Component, the module pattern, + // and stateless components, but not ES6 classes that don't extend + "development" !== 'production' ? warning(Component.prototype && Component.prototype.isReactComponent || !canInstantiate || !(inst instanceof Component), '%s(...): React component classes must extend React.Component.', Component.displayName || Component.name || 'Component') : undefined; + } + } + + // These should be set up in the constructor, but as a convenience for + // simpler class abstractions, we set them up after the fact. + inst.props = publicProps; + inst.context = publicContext; + inst.refs = emptyObject; + inst.updater = ReactUpdateQueue; + + this._instance = inst; + + // Store a reference from the instance back to the internal representation + ReactInstanceMap.set(inst, this); + + if ("development" !== 'production') { + // Since plain JS classes are defined without any special initialization + // logic, we can not catch common errors early. Therefore, we have to + // catch them here, at initialization time, instead. + "development" !== 'production' ? warning(!inst.getInitialState || inst.getInitialState.isReactClassApproved, 'getInitialState was defined on %s, a plain JavaScript class. ' + 'This is only supported for classes created using React.createClass. ' + 'Did you mean to define a state property instead?', this.getName() || 'a component') : undefined; + "development" !== 'production' ? warning(!inst.getDefaultProps || inst.getDefaultProps.isReactClassApproved, 'getDefaultProps was defined on %s, a plain JavaScript class. ' + 'This is only supported for classes created using React.createClass. ' + 'Use a static property to define defaultProps instead.', this.getName() || 'a component') : undefined; + "development" !== 'production' ? warning(!inst.propTypes, 'propTypes was defined as an instance property on %s. Use a static ' + 'property to define propTypes instead.', this.getName() || 'a component') : undefined; + "development" !== 'production' ? warning(!inst.contextTypes, 'contextTypes was defined as an instance property on %s. Use a ' + 'static property to define contextTypes instead.', this.getName() || 'a component') : undefined; + "development" !== 'production' ? warning(typeof inst.componentShouldUpdate !== 'function', '%s has a method called ' + 'componentShouldUpdate(). Did you mean shouldComponentUpdate()? ' + 'The name is phrased as a question because the function is ' + 'expected to return a value.', this.getName() || 'A component') : undefined; + "development" !== 'production' ? warning(typeof inst.componentDidUnmount !== 'function', '%s has a method called ' + 'componentDidUnmount(). But there is no such lifecycle method. ' + 'Did you mean componentWillUnmount()?', this.getName() || 'A component') : undefined; + "development" !== 'production' ? warning(typeof inst.componentWillRecieveProps !== 'function', '%s has a method called ' + 'componentWillRecieveProps(). Did you mean componentWillReceiveProps()?', this.getName() || 'A component') : undefined; + } + + var initialState = inst.state; + if (initialState === undefined) { + inst.state = initialState = null; + } + !(typeof initialState === 'object' && !Array.isArray(initialState)) ? "development" !== 'production' ? invariant(false, '%s.state: must be set to an object or null', this.getName() || 'ReactCompositeComponent') : invariant(false) : undefined; + + this._pendingStateQueue = null; + this._pendingReplaceState = false; + this._pendingForceUpdate = false; + + if (inst.componentWillMount) { + inst.componentWillMount(); + // When mounting, calls to `setState` by `componentWillMount` will set + // `this._pendingStateQueue` without triggering a re-render. + if (this._pendingStateQueue) { + inst.state = this._processPendingState(inst.props, inst.context); + } + } + + // If not a stateless component, we now render + if (renderedElement === undefined) { + renderedElement = this._renderValidatedComponent(); + } + + this._renderedComponent = this._instantiateReactComponent(renderedElement); + + var markup = ReactReconciler.mountComponent(this._renderedComponent, rootID, transaction, this._processChildContext(context)); + if (inst.componentDidMount) { + transaction.getReactMountReady().enqueue(inst.componentDidMount, inst); + } + + return markup; + }, + + /** + * Releases any resources allocated by `mountComponent`. + * + * @final + * @internal + */ + unmountComponent: function () { + var inst = this._instance; + + if (inst.componentWillUnmount) { + inst.componentWillUnmount(); + } + + ReactReconciler.unmountComponent(this._renderedComponent); + this._renderedComponent = null; + this._instance = null; + + // Reset pending fields + // Even if this component is scheduled for another update in ReactUpdates, + // it would still be ignored because these fields are reset. + this._pendingStateQueue = null; + this._pendingReplaceState = false; + this._pendingForceUpdate = false; + this._pendingCallbacks = null; + this._pendingElement = null; + + // These fields do not really need to be reset since this object is no + // longer accessible. + this._context = null; + this._rootNodeID = null; + this._topLevelWrapper = null; + + // Delete the reference from the instance to this internal representation + // which allow the internals to be properly cleaned up even if the user + // leaks a reference to the public instance. + ReactInstanceMap.remove(inst); + + // Some existing components rely on inst.props even after they've been + // destroyed (in event handlers). + // TODO: inst.props = null; + // TODO: inst.state = null; + // TODO: inst.context = null; + }, + + /** + * Filters the context object to only contain keys specified in + * `contextTypes` + * + * @param {object} context + * @return {?object} + * @private + */ + _maskContext: function (context) { + var maskedContext = null; + var Component = this._currentElement.type; + var contextTypes = Component.contextTypes; + if (!contextTypes) { + return emptyObject; + } + maskedContext = {}; + for (var contextName in contextTypes) { + maskedContext[contextName] = context[contextName]; + } + return maskedContext; + }, + + /** + * Filters the context object to only contain keys specified in + * `contextTypes`, and asserts that they are valid. + * + * @param {object} context + * @return {?object} + * @private + */ + _processContext: function (context) { + var maskedContext = this._maskContext(context); + if ("development" !== 'production') { + var Component = this._currentElement.type; + if (Component.contextTypes) { + this._checkPropTypes(Component.contextTypes, maskedContext, ReactPropTypeLocations.context); + } + } + return maskedContext; + }, + + /** + * @param {object} currentContext + * @return {object} + * @private + */ + _processChildContext: function (currentContext) { + var Component = this._currentElement.type; + var inst = this._instance; + var childContext = inst.getChildContext && inst.getChildContext(); + if (childContext) { + !(typeof Component.childContextTypes === 'object') ? "development" !== 'production' ? invariant(false, '%s.getChildContext(): childContextTypes must be defined in order to ' + 'use getChildContext().', this.getName() || 'ReactCompositeComponent') : invariant(false) : undefined; + if ("development" !== 'production') { + this._checkPropTypes(Component.childContextTypes, childContext, ReactPropTypeLocations.childContext); + } + for (var name in childContext) { + !(name in Component.childContextTypes) ? "development" !== 'production' ? invariant(false, '%s.getChildContext(): key "%s" is not defined in childContextTypes.', this.getName() || 'ReactCompositeComponent', name) : invariant(false) : undefined; + } + return assign({}, currentContext, childContext); + } + return currentContext; + }, + + /** + * Processes props by setting default values for unspecified props and + * asserting that the props are valid. Does not mutate its argument; returns + * a new props object with defaults merged in. + * + * @param {object} newProps + * @return {object} + * @private + */ + _processProps: function (newProps) { + if ("development" !== 'production') { + var Component = this._currentElement.type; + if (Component.propTypes) { + this._checkPropTypes(Component.propTypes, newProps, ReactPropTypeLocations.prop); + } + } + return newProps; + }, + + /** + * Assert that the props are valid + * + * @param {object} propTypes Map of prop name to a ReactPropType + * @param {object} props + * @param {string} location e.g. "prop", "context", "child context" + * @private + */ + _checkPropTypes: function (propTypes, props, location) { + // TODO: Stop validating prop types here and only use the element + // validation. + var componentName = this.getName(); + for (var propName in propTypes) { + if (propTypes.hasOwnProperty(propName)) { + var error; + try { + // This is intentionally an invariant that gets caught. It's the same + // behavior as without this statement except with a better message. + !(typeof propTypes[propName] === 'function') ? "development" !== 'production' ? invariant(false, '%s: %s type `%s` is invalid; it must be a function, usually ' + 'from React.PropTypes.', componentName || 'React class', ReactPropTypeLocationNames[location], propName) : invariant(false) : undefined; + error = propTypes[propName](props, propName, componentName, location); + } catch (ex) { + error = ex; + } + if (error instanceof Error) { + // We may want to extend this logic for similar errors in + // top-level render calls, so I'm abstracting it away into + // a function to minimize refactoring in the future + var addendum = getDeclarationErrorAddendum(this); + + if (location === ReactPropTypeLocations.prop) { + // Preface gives us something to blacklist in warning module + "development" !== 'production' ? warning(false, 'Failed Composite propType: %s%s', error.message, addendum) : undefined; + } else { + "development" !== 'production' ? warning(false, 'Failed Context Types: %s%s', error.message, addendum) : undefined; + } + } + } + } + }, + + receiveComponent: function (nextElement, transaction, nextContext) { + var prevElement = this._currentElement; + var prevContext = this._context; + + this._pendingElement = null; + + this.updateComponent(transaction, prevElement, nextElement, prevContext, nextContext); + }, + + /** + * If any of `_pendingElement`, `_pendingStateQueue`, or `_pendingForceUpdate` + * is set, update the component. + * + * @param {ReactReconcileTransaction} transaction + * @internal + */ + performUpdateIfNecessary: function (transaction) { + if (this._pendingElement != null) { + ReactReconciler.receiveComponent(this, this._pendingElement || this._currentElement, transaction, this._context); + } + + if (this._pendingStateQueue !== null || this._pendingForceUpdate) { + this.updateComponent(transaction, this._currentElement, this._currentElement, this._context, this._context); + } + }, + + /** + * Perform an update to a mounted component. The componentWillReceiveProps and + * shouldComponentUpdate methods are called, then (assuming the update isn't + * skipped) the remaining update lifecycle methods are called and the DOM + * representation is updated. + * + * By default, this implements React's rendering and reconciliation algorithm. + * Sophisticated clients may wish to override this. + * + * @param {ReactReconcileTransaction} transaction + * @param {ReactElement} prevParentElement + * @param {ReactElement} nextParentElement + * @internal + * @overridable + */ + updateComponent: function (transaction, prevParentElement, nextParentElement, prevUnmaskedContext, nextUnmaskedContext) { + var inst = this._instance; + + var nextContext = this._context === nextUnmaskedContext ? inst.context : this._processContext(nextUnmaskedContext); + var nextProps; + + // Distinguish between a props update versus a simple state update + if (prevParentElement === nextParentElement) { + // Skip checking prop types again -- we don't read inst.props to avoid + // warning for DOM component props in this upgrade + nextProps = nextParentElement.props; + } else { + nextProps = this._processProps(nextParentElement.props); + // An update here will schedule an update but immediately set + // _pendingStateQueue which will ensure that any state updates gets + // immediately reconciled instead of waiting for the next batch. + + if (inst.componentWillReceiveProps) { + inst.componentWillReceiveProps(nextProps, nextContext); + } + } + + var nextState = this._processPendingState(nextProps, nextContext); + + var shouldUpdate = this._pendingForceUpdate || !inst.shouldComponentUpdate || inst.shouldComponentUpdate(nextProps, nextState, nextContext); + + if ("development" !== 'production') { + "development" !== 'production' ? warning(typeof shouldUpdate !== 'undefined', '%s.shouldComponentUpdate(): Returned undefined instead of a ' + 'boolean value. Make sure to return true or false.', this.getName() || 'ReactCompositeComponent') : undefined; + } + + if (shouldUpdate) { + this._pendingForceUpdate = false; + // Will set `this.props`, `this.state` and `this.context`. + this._performComponentUpdate(nextParentElement, nextProps, nextState, nextContext, transaction, nextUnmaskedContext); + } else { + // If it's determined that a component should not update, we still want + // to set props and state but we shortcut the rest of the update. + this._currentElement = nextParentElement; + this._context = nextUnmaskedContext; + inst.props = nextProps; + inst.state = nextState; + inst.context = nextContext; + } + }, + + _processPendingState: function (props, context) { + var inst = this._instance; + var queue = this._pendingStateQueue; + var replace = this._pendingReplaceState; + this._pendingReplaceState = false; + this._pendingStateQueue = null; + + if (!queue) { + return inst.state; + } + + if (replace && queue.length === 1) { + return queue[0]; + } + + var nextState = assign({}, replace ? queue[0] : inst.state); + for (var i = replace ? 1 : 0; i < queue.length; i++) { + var partial = queue[i]; + assign(nextState, typeof partial === 'function' ? partial.call(inst, nextState, props, context) : partial); + } + + return nextState; + }, + + /** + * Merges new props and state, notifies delegate methods of update and + * performs update. + * + * @param {ReactElement} nextElement Next element + * @param {object} nextProps Next public object to set as properties. + * @param {?object} nextState Next object to set as state. + * @param {?object} nextContext Next public object to set as context. + * @param {ReactReconcileTransaction} transaction + * @param {?object} unmaskedContext + * @private + */ + _performComponentUpdate: function (nextElement, nextProps, nextState, nextContext, transaction, unmaskedContext) { + var inst = this._instance; + + var hasComponentDidUpdate = Boolean(inst.componentDidUpdate); + var prevProps; + var prevState; + var prevContext; + if (hasComponentDidUpdate) { + prevProps = inst.props; + prevState = inst.state; + prevContext = inst.context; + } + + if (inst.componentWillUpdate) { + inst.componentWillUpdate(nextProps, nextState, nextContext); + } + + this._currentElement = nextElement; + this._context = unmaskedContext; + inst.props = nextProps; + inst.state = nextState; + inst.context = nextContext; + + this._updateRenderedComponent(transaction, unmaskedContext); + + if (hasComponentDidUpdate) { + transaction.getReactMountReady().enqueue(inst.componentDidUpdate.bind(inst, prevProps, prevState, prevContext), inst); + } + }, + + /** + * Call the component's `render` method and update the DOM accordingly. + * + * @param {ReactReconcileTransaction} transaction + * @internal + */ + _updateRenderedComponent: function (transaction, context) { + var prevComponentInstance = this._renderedComponent; + var prevRenderedElement = prevComponentInstance._currentElement; + var nextRenderedElement = this._renderValidatedComponent(); + if (shouldUpdateReactComponent(prevRenderedElement, nextRenderedElement)) { + ReactReconciler.receiveComponent(prevComponentInstance, nextRenderedElement, transaction, this._processChildContext(context)); + } else { + // These two IDs are actually the same! But nothing should rely on that. + var thisID = this._rootNodeID; + var prevComponentID = prevComponentInstance._rootNodeID; + ReactReconciler.unmountComponent(prevComponentInstance); + + this._renderedComponent = this._instantiateReactComponent(nextRenderedElement); + var nextMarkup = ReactReconciler.mountComponent(this._renderedComponent, thisID, transaction, this._processChildContext(context)); + this._replaceNodeWithMarkupByID(prevComponentID, nextMarkup); + } + }, + + /** + * @protected + */ + _replaceNodeWithMarkupByID: function (prevComponentID, nextMarkup) { + ReactComponentEnvironment.replaceNodeWithMarkupByID(prevComponentID, nextMarkup); + }, + + /** + * @protected + */ + _renderValidatedComponentWithoutOwnerOrContext: function () { + var inst = this._instance; + var renderedComponent = inst.render(); + if ("development" !== 'production') { + // We allow auto-mocks to proceed as if they're returning null. + if (typeof renderedComponent === 'undefined' && inst.render._isMockFunction) { + // This is probably bad practice. Consider warning here and + // deprecating this convenience. + renderedComponent = null; + } + } + + return renderedComponent; + }, + + /** + * @private + */ + _renderValidatedComponent: function () { + var renderedComponent; + ReactCurrentOwner.current = this; + try { + renderedComponent = this._renderValidatedComponentWithoutOwnerOrContext(); + } finally { + ReactCurrentOwner.current = null; + } + !( + // TODO: An `isValidNode` function would probably be more appropriate + renderedComponent === null || renderedComponent === false || ReactElement.isValidElement(renderedComponent)) ? "development" !== 'production' ? invariant(false, '%s.render(): A valid ReactComponent must be returned. You may have ' + 'returned undefined, an array or some other invalid object.', this.getName() || 'ReactCompositeComponent') : invariant(false) : undefined; + return renderedComponent; + }, + + /** + * Lazily allocates the refs object and stores `component` as `ref`. + * + * @param {string} ref Reference name. + * @param {component} component Component to store as `ref`. + * @final + * @private + */ + attachRef: function (ref, component) { + var inst = this.getPublicInstance(); + !(inst != null) ? "development" !== 'production' ? invariant(false, 'Stateless function components cannot have refs.') : invariant(false) : undefined; + var publicComponentInstance = component.getPublicInstance(); + if ("development" !== 'production') { + var componentName = component && component.getName ? component.getName() : 'a component'; + "development" !== 'production' ? warning(publicComponentInstance != null, 'Stateless function components cannot be given refs ' + '(See ref "%s" in %s created by %s). ' + 'Attempts to access this ref will fail.', ref, componentName, this.getName()) : undefined; + } + var refs = inst.refs === emptyObject ? inst.refs = {} : inst.refs; + refs[ref] = publicComponentInstance; + }, + + /** + * Detaches a reference name. + * + * @param {string} ref Name to dereference. + * @final + * @private + */ + detachRef: function (ref) { + var refs = this.getPublicInstance().refs; + delete refs[ref]; + }, + + /** + * Get a text description of the component that can be used to identify it + * in error messages. + * @return {string} The name or null. + * @internal + */ + getName: function () { + var type = this._currentElement.type; + var constructor = this._instance && this._instance.constructor; + return type.displayName || constructor && constructor.displayName || type.name || constructor && constructor.name || null; + }, + + /** + * Get the publicly accessible representation of this component - i.e. what + * is exposed by refs and returned by render. Can be null for stateless + * components. + * + * @return {ReactComponent} the public component instance. + * @internal + */ + getPublicInstance: function () { + var inst = this._instance; + if (inst instanceof StatelessComponent) { + return null; + } + return inst; + }, + + // Stub + _instantiateReactComponent: null + +}; + +ReactPerf.measureMethods(ReactCompositeComponentMixin, 'ReactCompositeComponent', { + mountComponent: 'mountComponent', + updateComponent: 'updateComponent', + _renderValidatedComponent: '_renderValidatedComponent' +}); + +var ReactCompositeComponent = { + + Mixin: ReactCompositeComponentMixin + +}; + +module.exports = ReactCompositeComponent; +},{"141":141,"154":154,"161":161,"173":173,"24":24,"36":36,"39":39,"57":57,"68":68,"78":78,"80":80,"81":81,"84":84,"95":95}],39:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule ReactCurrentOwner + */ + +'use strict'; + +/** + * Keeps track of the current owner. + * + * The current owner is the component who should own any components that are + * currently being constructed. + */ +var ReactCurrentOwner = { + + /** + * @internal + * @type {ReactComponent} + */ + current: null + +}; + +module.exports = ReactCurrentOwner; +},{}],40:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule ReactDOM + */ + +/* globals __REACT_DEVTOOLS_GLOBAL_HOOK__*/ + +'use strict'; + +var ReactCurrentOwner = _dereq_(39); +var ReactDOMTextComponent = _dereq_(51); +var ReactDefaultInjection = _dereq_(54); +var ReactInstanceHandles = _dereq_(67); +var ReactMount = _dereq_(72); +var ReactPerf = _dereq_(78); +var ReactReconciler = _dereq_(84); +var ReactUpdates = _dereq_(96); +var ReactVersion = _dereq_(97); + +var findDOMNode = _dereq_(122); +var renderSubtreeIntoContainer = _dereq_(137); +var warning = _dereq_(173); + +ReactDefaultInjection.inject(); + +var render = ReactPerf.measure('React', 'render', ReactMount.render); + +var React = { + findDOMNode: findDOMNode, + render: render, + unmountComponentAtNode: ReactMount.unmountComponentAtNode, + version: ReactVersion, + + /* eslint-disable camelcase */ + unstable_batchedUpdates: ReactUpdates.batchedUpdates, + unstable_renderSubtreeIntoContainer: renderSubtreeIntoContainer +}; + +// Inject the runtime into a devtools global hook regardless of browser. +// Allows for debugging when the hook is injected on the page. +/* eslint-enable camelcase */ +if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.inject === 'function') { + __REACT_DEVTOOLS_GLOBAL_HOOK__.inject({ + CurrentOwner: ReactCurrentOwner, + InstanceHandles: ReactInstanceHandles, + Mount: ReactMount, + Reconciler: ReactReconciler, + TextComponent: ReactDOMTextComponent + }); +} + +if ("development" !== 'production') { + var ExecutionEnvironment = _dereq_(147); + if (ExecutionEnvironment.canUseDOM && window.top === window.self) { + + // First check if devtools is not installed + if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined') { + // If we're in Chrome or Firefox, provide a download link if not installed. + if (navigator.userAgent.indexOf('Chrome') > -1 && navigator.userAgent.indexOf('Edge') === -1 || navigator.userAgent.indexOf('Firefox') > -1) { + console.debug('Download the React DevTools for a better development experience: ' + 'https://fb.me/react-devtools'); + } + } + + // If we're in IE8, check to see if we are in compatibility mode and provide + // information on preventing compatibility mode + var ieCompatibilityMode = document.documentMode && document.documentMode < 8; + + "development" !== 'production' ? warning(!ieCompatibilityMode, 'Internet Explorer is running in compatibility mode; please add the ' + 'following tag to your HTML to prevent this from happening: ' + '') : undefined; + + var expectedFeatures = [ + // shims + Array.isArray, Array.prototype.every, Array.prototype.forEach, Array.prototype.indexOf, Array.prototype.map, Date.now, Function.prototype.bind, Object.keys, String.prototype.split, String.prototype.trim, + + // shams + Object.create, Object.freeze]; + + for (var i = 0; i < expectedFeatures.length; i++) { + if (!expectedFeatures[i]) { + console.error('One or more ES5 shim/shams expected by React are not available: ' + 'https://fb.me/react-warning-polyfills'); + break; + } + } + } +} + +module.exports = React; +},{"122":122,"137":137,"147":147,"173":173,"39":39,"51":51,"54":54,"67":67,"72":72,"78":78,"84":84,"96":96,"97":97}],41:[function(_dereq_,module,exports){ +/** + * Copyright 2013-2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + * + * @providesModule ReactDOMButton + */ + +'use strict'; + +var mouseListenerNames = { + onClick: true, + onDoubleClick: true, + onMouseDown: true, + onMouseMove: true, + onMouseUp: true, + + onClickCapture: true, + onDoubleClickCapture: true, + onMouseDownCapture: true, + onMouseMoveCapture: true, + onMouseUpCapture: true +}; + +/** + * Implements a